| 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 // This file contains download browser tests that are known to be runnable | 5 // This file contains download browser tests that are known to be runnable |
| 6 // in a pure content context. Over time tests should be migrated here. | 6 // in a pure content context. Over time tests should be migrated here. |
| 7 | 7 |
| 8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
| 9 #include "base/file_util.h" | 9 #include "base/file_util.h" |
| 10 #include "base/files/file_path.h" | 10 #include "base/files/file_path.h" |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 #include "content/public/test/test_file_error_injector.h" | 22 #include "content/public/test/test_file_error_injector.h" |
| 23 #include "content/public/test/test_utils.h" | 23 #include "content/public/test/test_utils.h" |
| 24 #include "content/shell/shell.h" | 24 #include "content/shell/shell.h" |
| 25 #include "content/shell/shell_browser_context.h" | 25 #include "content/shell/shell_browser_context.h" |
| 26 #include "content/shell/shell_download_manager_delegate.h" | 26 #include "content/shell/shell_download_manager_delegate.h" |
| 27 #include "content/test/content_browser_test.h" | 27 #include "content/test/content_browser_test.h" |
| 28 #include "content/test/content_browser_test_utils.h" | 28 #include "content/test/content_browser_test_utils.h" |
| 29 #include "content/test/net/url_request_mock_http_job.h" | 29 #include "content/test/net/url_request_mock_http_job.h" |
| 30 #include "content/test/net/url_request_slow_download_job.h" | 30 #include "content/test/net/url_request_slow_download_job.h" |
| 31 #include "googleurl/src/gurl.h" | 31 #include "googleurl/src/gurl.h" |
| 32 #include "net/test/spawned_test_server.h" | 32 #include "net/test/spawned_test_server/spawned_test_server.h" |
| 33 #include "testing/gmock/include/gmock/gmock.h" | 33 #include "testing/gmock/include/gmock/gmock.h" |
| 34 #include "testing/gtest/include/gtest/gtest.h" | 34 #include "testing/gtest/include/gtest/gtest.h" |
| 35 | 35 |
| 36 using ::testing::_; | 36 using ::testing::_; |
| 37 using ::testing::AllOf; | 37 using ::testing::AllOf; |
| 38 using ::testing::Field; | 38 using ::testing::Field; |
| 39 using ::testing::InSequence; | 39 using ::testing::InSequence; |
| 40 using ::testing::Property; | 40 using ::testing::Property; |
| 41 using ::testing::Return; | 41 using ::testing::Return; |
| 42 using ::testing::StrictMock; | 42 using ::testing::StrictMock; |
| (...skipping 1334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1377 | 1377 |
| 1378 // Resume and watch completion. | 1378 // Resume and watch completion. |
| 1379 DownloadUpdatedObserver completion_observer( | 1379 DownloadUpdatedObserver completion_observer( |
| 1380 download, base::Bind(DownloadCompleteFilter)); | 1380 download, base::Bind(DownloadCompleteFilter)); |
| 1381 download->ResumeInterruptedDownload(); | 1381 download->ResumeInterruptedDownload(); |
| 1382 completion_observer.WaitForEvent(); | 1382 completion_observer.WaitForEvent(); |
| 1383 EXPECT_EQ(download->GetState(), DownloadItem::COMPLETE); | 1383 EXPECT_EQ(download->GetState(), DownloadItem::COMPLETE); |
| 1384 } | 1384 } |
| 1385 | 1385 |
| 1386 } // namespace content | 1386 } // namespace content |
| OLD | NEW |