| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "base/files/file_path.h" | 5 #include "base/files/file_path.h" |
| 6 #include "base/files/file_util.h" | 6 #include "base/files/file_util.h" |
| 7 #include "base/files/scoped_temp_dir.h" | 7 #include "base/files/scoped_temp_dir.h" |
| 8 #include "base/message_loop/message_loop.h" | 8 #include "base/message_loop/message_loop.h" |
| 9 #include "base/prefs/pref_service.h" | 9 #include "base/prefs/pref_service.h" |
| 10 #include "base/run_loop.h" | 10 #include "base/run_loop.h" |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 const base::FilePath&, | 120 const base::FilePath&, |
| 121 const DownloadTargetDeterminerDelegate::FileSelectedCallback&)); | 121 const DownloadTargetDeterminerDelegate::FileSelectedCallback&)); |
| 122 }; | 122 }; |
| 123 | 123 |
| 124 class ChromeDownloadManagerDelegateTest | 124 class ChromeDownloadManagerDelegateTest |
| 125 : public ChromeRenderViewHostTestHarness { | 125 : public ChromeRenderViewHostTestHarness { |
| 126 public: | 126 public: |
| 127 ChromeDownloadManagerDelegateTest(); | 127 ChromeDownloadManagerDelegateTest(); |
| 128 | 128 |
| 129 // ::testing::Test | 129 // ::testing::Test |
| 130 virtual void SetUp() override; | 130 void SetUp() override; |
| 131 virtual void TearDown() override; | 131 void TearDown() override; |
| 132 | 132 |
| 133 // Verifies and clears test expectations for |delegate_| and | 133 // Verifies and clears test expectations for |delegate_| and |
| 134 // |download_manager_|. | 134 // |download_manager_|. |
| 135 void VerifyAndClearExpectations(); | 135 void VerifyAndClearExpectations(); |
| 136 | 136 |
| 137 // Creates MockDownloadItem and sets up default expectations. | 137 // Creates MockDownloadItem and sets up default expectations. |
| 138 content::MockDownloadItem* CreateActiveDownloadItem(int32 id); | 138 content::MockDownloadItem* CreateActiveDownloadItem(int32 id); |
| 139 | 139 |
| 140 // Given the relative path |path|, returns the full path under the temporary | 140 // Given the relative path |path|, returns the full path under the temporary |
| 141 // downloads directory. | 141 // downloads directory. |
| (...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 392 CreateActiveDownloadItem(1)); | 392 CreateActiveDownloadItem(1)); |
| 393 EXPECT_CALL(*download_item, GetTargetFilePath()) | 393 EXPECT_CALL(*download_item, GetTargetFilePath()) |
| 394 .WillRepeatedly(ReturnRef(existing_path)); | 394 .WillRepeatedly(ReturnRef(existing_path)); |
| 395 EXPECT_TRUE(CheckForFileExistence(download_item.get())); | 395 EXPECT_TRUE(CheckForFileExistence(download_item.get())); |
| 396 | 396 |
| 397 download_item.reset(CreateActiveDownloadItem(1)); | 397 download_item.reset(CreateActiveDownloadItem(1)); |
| 398 EXPECT_CALL(*download_item, GetTargetFilePath()) | 398 EXPECT_CALL(*download_item, GetTargetFilePath()) |
| 399 .WillRepeatedly(ReturnRef(non_existent_path)); | 399 .WillRepeatedly(ReturnRef(non_existent_path)); |
| 400 EXPECT_FALSE(CheckForFileExistence(download_item.get())); | 400 EXPECT_FALSE(CheckForFileExistence(download_item.get())); |
| 401 } | 401 } |
| OLD | NEW |