Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(193)

Side by Side Diff: content/browser/download/drag_download_file_browsertest.cc

Issue 541743002: Move url_request_mock_http_job to net/test/url_request/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: removed unwanted new lines Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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/scoped_temp_dir.h" 6 #include "base/files/scoped_temp_dir.h"
7 #include "base/memory/ref_counted.h"
7 #include "content/browser/download/download_file_factory.h" 8 #include "content/browser/download/download_file_factory.h"
8 #include "content/browser/download/download_file_impl.h" 9 #include "content/browser/download/download_file_impl.h"
9 #include "content/browser/download/download_item_impl.h" 10 #include "content/browser/download/download_item_impl.h"
10 #include "content/browser/download/download_manager_impl.h" 11 #include "content/browser/download/download_manager_impl.h"
11 #include "content/browser/download/drag_download_file.h" 12 #include "content/browser/download/drag_download_file.h"
12 #include "content/browser/download/drag_download_util.h" 13 #include "content/browser/download/drag_download_util.h"
13 #include "content/browser/web_contents/web_contents_impl.h" 14 #include "content/browser/web_contents/web_contents_impl.h"
14 #include "content/public/browser/content_browser_client.h" 15 #include "content/public/browser/content_browser_client.h"
15 #include "content/public/browser/power_save_blocker.h" 16 #include "content/public/browser/power_save_blocker.h"
16 #include "content/public/common/content_client.h" 17 #include "content/public/common/content_client.h"
17 #include "content/public/test/content_browser_test.h" 18 #include "content/public/test/content_browser_test.h"
18 #include "content/public/test/content_browser_test_utils.h" 19 #include "content/public/test/content_browser_test_utils.h"
19 #include "content/public/test/download_test_observer.h" 20 #include "content/public/test/download_test_observer.h"
20 #include "content/public/test/test_utils.h" 21 #include "content/public/test/test_utils.h"
21 #include "content/shell/browser/shell.h" 22 #include "content/shell/browser/shell.h"
22 #include "content/shell/browser/shell_browser_context.h" 23 #include "content/shell/browser/shell_browser_context.h"
23 #include "content/shell/browser/shell_download_manager_delegate.h" 24 #include "content/shell/browser/shell_download_manager_delegate.h"
24 #include "content/test/net/url_request_mock_http_job.h"
25 #include "content/test/net/url_request_slow_download_job.h" 25 #include "content/test/net/url_request_slow_download_job.h"
26 #include "net/test/url_request/url_request_mock_http_job.h"
26 #include "testing/gmock/include/gmock/gmock.h" 27 #include "testing/gmock/include/gmock/gmock.h"
27 #include "testing/gtest/include/gtest/gtest.h" 28 #include "testing/gtest/include/gtest/gtest.h"
28 #include "url/gurl.h" 29 #include "url/gurl.h"
29 30
30 using testing::_; 31 using testing::_;
31 using testing::InvokeWithoutArgs; 32 using testing::InvokeWithoutArgs;
32 33
33 namespace content { 34 namespace content {
34 35
35 class MockDownloadFileObserver : public ui::DownloadFileObserver { 36 class MockDownloadFileObserver : public ui::DownloadFileObserver {
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 static_cast<ShellDownloadManagerDelegate*>( 68 static_cast<ShellDownloadManagerDelegate*>(
68 shell()->web_contents()->GetBrowserContext() 69 shell()->web_contents()->GetBrowserContext()
69 ->GetDownloadManagerDelegate()); 70 ->GetDownloadManagerDelegate());
70 delegate->SetDownloadBehaviorForTesting(downloads_directory()); 71 delegate->SetDownloadBehaviorForTesting(downloads_directory());
71 } 72 }
72 73
73 void SetUpServer() { 74 void SetUpServer() {
74 base::FilePath mock_base(GetTestFilePath("download", "")); 75 base::FilePath mock_base(GetTestFilePath("download", ""));
75 BrowserThread::PostTask( 76 BrowserThread::PostTask(
76 BrowserThread::IO, FROM_HERE, 77 BrowserThread::IO, FROM_HERE,
77 base::Bind(&URLRequestMockHTTPJob::AddUrlHandler, mock_base)); 78 base::Bind(&net::URLRequestMockHTTPJob::AddUrlHandler, mock_base,
79 make_scoped_refptr(
80 content::BrowserThread::GetBlockingPool())));
78 } 81 }
79 82
80 const base::FilePath& downloads_directory() const { 83 const base::FilePath& downloads_directory() const {
81 return downloads_directory_.path(); 84 return downloads_directory_.path();
82 } 85 }
83 86
84 private: 87 private:
85 base::ScopedTempDir downloads_directory_; 88 base::ScopedTempDir downloads_directory_;
86 89
87 DISALLOW_COPY_AND_ASSIGN(DragDownloadFileTest); 90 DISALLOW_COPY_AND_ASSIGN(DragDownloadFileTest);
88 }; 91 };
89 92
90 IN_PROC_BROWSER_TEST_F(DragDownloadFileTest, DragDownloadFileTest_NetError) { 93 IN_PROC_BROWSER_TEST_F(DragDownloadFileTest, DragDownloadFileTest_NetError) {
91 base::FilePath name(downloads_directory().AppendASCII( 94 base::FilePath name(downloads_directory().AppendASCII(
92 "DragDownloadFileTest_NetError.txt")); 95 "DragDownloadFileTest_NetError.txt"));
93 GURL url(URLRequestMockHTTPJob::GetMockUrl(base::FilePath(FILE_PATH_LITERAL( 96 GURL url(net::URLRequestMockHTTPJob::GetMockUrl(
94 "download-test.lib")))); 97 base::FilePath(FILE_PATH_LITERAL("download-test.lib"))));
95 Referrer referrer; 98 Referrer referrer;
96 std::string referrer_encoding; 99 std::string referrer_encoding;
97 scoped_refptr<DragDownloadFile> file( 100 scoped_refptr<DragDownloadFile> file(
98 new DragDownloadFile(name, base::File(), url, referrer, 101 new DragDownloadFile(name, base::File(), url, referrer,
99 referrer_encoding, shell()->web_contents())); 102 referrer_encoding, shell()->web_contents()));
100 scoped_refptr<MockDownloadFileObserver> observer( 103 scoped_refptr<MockDownloadFileObserver> observer(
101 new MockDownloadFileObserver()); 104 new MockDownloadFileObserver());
102 EXPECT_CALL(*observer.get(), OnDownloadAborted()) 105 EXPECT_CALL(*observer.get(), OnDownloadAborted())
103 .WillOnce(InvokeWithoutArgs(this, &DragDownloadFileTest::Succeed)); 106 .WillOnce(InvokeWithoutArgs(this, &DragDownloadFileTest::Succeed));
104 ON_CALL(*observer.get(), OnDownloadCompleted(_)) 107 ON_CALL(*observer.get(), OnDownloadCompleted(_))
105 .WillByDefault(InvokeWithoutArgs(this, &DragDownloadFileTest::FailFast)); 108 .WillByDefault(InvokeWithoutArgs(this, &DragDownloadFileTest::FailFast));
106 file->Start(observer.get()); 109 file->Start(observer.get());
107 RunMessageLoop(); 110 RunMessageLoop();
108 } 111 }
109 112
110 IN_PROC_BROWSER_TEST_F(DragDownloadFileTest, DragDownloadFileTest_Complete) { 113 IN_PROC_BROWSER_TEST_F(DragDownloadFileTest, DragDownloadFileTest_Complete) {
111 base::FilePath name(downloads_directory().AppendASCII( 114 base::FilePath name(downloads_directory().AppendASCII(
112 "DragDownloadFileTest_Complete.txt")); 115 "DragDownloadFileTest_Complete.txt"));
113 GURL url(URLRequestMockHTTPJob::GetMockUrl(base::FilePath(FILE_PATH_LITERAL( 116 GURL url(net::URLRequestMockHTTPJob::GetMockUrl(
114 "download-test.lib")))); 117 base::FilePath(FILE_PATH_LITERAL("download-test.lib"))));
115 Referrer referrer; 118 Referrer referrer;
116 std::string referrer_encoding; 119 std::string referrer_encoding;
117 SetUpServer(); 120 SetUpServer();
118 scoped_refptr<DragDownloadFile> file(new DragDownloadFile( 121 scoped_refptr<DragDownloadFile> file(new DragDownloadFile(
119 name, base::File(), url, referrer, 122 name, base::File(), url, referrer,
120 referrer_encoding, shell()->web_contents())); 123 referrer_encoding, shell()->web_contents()));
121 scoped_refptr<MockDownloadFileObserver> observer( 124 scoped_refptr<MockDownloadFileObserver> observer(
122 new MockDownloadFileObserver()); 125 new MockDownloadFileObserver());
123 EXPECT_CALL(*observer.get(), OnDownloadCompleted(_)) 126 EXPECT_CALL(*observer.get(), OnDownloadCompleted(_))
124 .WillOnce(InvokeWithoutArgs(this, &DragDownloadFileTest::Succeed)); 127 .WillOnce(InvokeWithoutArgs(this, &DragDownloadFileTest::Succeed));
125 ON_CALL(*observer.get(), OnDownloadAborted()) 128 ON_CALL(*observer.get(), OnDownloadAborted())
126 .WillByDefault(InvokeWithoutArgs(this, &DragDownloadFileTest::FailFast)); 129 .WillByDefault(InvokeWithoutArgs(this, &DragDownloadFileTest::FailFast));
127 file->Start(observer.get()); 130 file->Start(observer.get());
128 RunMessageLoop(); 131 RunMessageLoop();
129 } 132 }
130 133
131 // TODO(benjhayden): Test Stop(). 134 // TODO(benjhayden): Test Stop().
132 135
133 } // namespace content 136 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698