| 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/file_util.h" | 5 #include "base/file_util.h" |
| 6 #include "base/files/file_path.h" | 6 #include "base/files/file_path.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 368 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 379 VerifyAndClearExpectations(); | 379 VerifyAndClearExpectations(); |
| 380 } | 380 } |
| 381 } | 381 } |
| 382 | 382 |
| 383 TEST_F(ChromeDownloadManagerDelegateTest, CheckForFileExistence) { | 383 TEST_F(ChromeDownloadManagerDelegateTest, CheckForFileExistence) { |
| 384 const char kData[] = "helloworld"; | 384 const char kData[] = "helloworld"; |
| 385 const size_t kDataLength = sizeof(kData) - 1; | 385 const size_t kDataLength = sizeof(kData) - 1; |
| 386 base::FilePath existing_path = default_download_path().AppendASCII("foo"); | 386 base::FilePath existing_path = default_download_path().AppendASCII("foo"); |
| 387 base::FilePath non_existent_path = | 387 base::FilePath non_existent_path = |
| 388 default_download_path().AppendASCII("bar"); | 388 default_download_path().AppendASCII("bar"); |
| 389 file_util::WriteFile(existing_path, kData, kDataLength); | 389 base::WriteFile(existing_path, kData, kDataLength); |
| 390 | 390 |
| 391 scoped_ptr<content::MockDownloadItem> download_item( | 391 scoped_ptr<content::MockDownloadItem> download_item( |
| 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 |