Chromium Code Reviews| 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 "content/test/net/url_request_mock_http_job.h" | 5 #include "net/test/url_request/url_request_mock_http_job.h" |
| 6 | 6 |
| 7 #include "base/file_util.h" | 7 #include "base/file_util.h" |
| 8 #include "base/message_loop/message_loop.h" | 8 #include "base/message_loop/message_loop.h" |
| 9 #include "base/strings/string_util.h" | 9 #include "base/strings/string_util.h" |
| 10 #include "base/strings/utf_string_conversions.h" | 10 #include "base/strings/utf_string_conversions.h" |
| 11 #include "base/task_runner_util.h" | |
| 11 #include "base/threading/sequenced_worker_pool.h" | 12 #include "base/threading/sequenced_worker_pool.h" |
| 12 #include "base/threading/thread_restrictions.h" | 13 #include "base/threading/thread_restrictions.h" |
| 13 #include "content/public/browser/browser_thread.h" | |
| 14 #include "content/public/common/url_constants.h" | |
| 15 #include "net/base/filename_util.h" | 14 #include "net/base/filename_util.h" |
| 16 #include "net/http/http_response_headers.h" | 15 #include "net/http/http_response_headers.h" |
| 17 #include "net/url_request/url_request_filter.h" | 16 #include "net/url_request/url_request_filter.h" |
| 18 #include "net/url_request/url_request_interceptor.h" | 17 #include "net/url_request/url_request_interceptor.h" |
| 19 | 18 |
| 20 const char kMockHostname[] = "mock.http"; | 19 const char kMockHostname[] = "mock.http"; |
| 21 const base::FilePath::CharType kMockHeaderFileSuffix[] = | 20 const base::FilePath::CharType kMockHeaderFileSuffix[] = |
| 22 FILE_PATH_LITERAL(".mock-http-headers"); | 21 FILE_PATH_LITERAL(".mock-http-headers"); |
| 23 | 22 |
| 24 namespace content { | 23 namespace net { |
| 25 | 24 |
| 26 namespace { | 25 namespace { |
| 27 | 26 |
| 28 class MockJobInterceptor : public net::URLRequestInterceptor { | 27 class MockJobInterceptor : public net::URLRequestInterceptor { |
| 29 public: | 28 public: |
| 30 // When |map_all_requests_to_base_path| is true, all request should return the | 29 // When |map_all_requests_to_base_path| is true, all request should return the |
| 31 // contents of the file at |base_path|. When |map_all_requests_to_base_path| | 30 // contents of the file at |base_path|. When |map_all_requests_to_base_path| |
| 32 // is false, |base_path| is the file path leading to the root of the directory | 31 // is false, |base_path| is the file path leading to the root of the directory |
| 33 // to use as the root of the HTTP server. | 32 // to use as the root of the HTTP server. |
| 34 MockJobInterceptor(const base::FilePath& base_path, | 33 MockJobInterceptor( |
| 35 bool map_all_requests_to_base_path) | 34 const base::FilePath& base_path, |
| 35 bool map_all_requests_to_base_path, | |
| 36 const scoped_refptr<base::SequencedWorkerPool>& worker_pool) | |
| 36 : base_path_(base_path), | 37 : base_path_(base_path), |
| 37 map_all_requests_to_base_path_(map_all_requests_to_base_path) {} | 38 map_all_requests_to_base_path_(map_all_requests_to_base_path), |
| 39 worker_pool_(worker_pool) {} | |
| 38 virtual ~MockJobInterceptor() {} | 40 virtual ~MockJobInterceptor() {} |
| 39 | 41 |
| 40 // net::URLRequestJobFactory::ProtocolHandler implementation | 42 // net::URLRequestJobFactory::ProtocolHandler implementation |
| 41 virtual net::URLRequestJob* MaybeInterceptRequest( | 43 virtual net::URLRequestJob* MaybeInterceptRequest( |
| 42 net::URLRequest* request, | 44 net::URLRequest* request, |
| 43 net::NetworkDelegate* network_delegate) const OVERRIDE { | 45 net::NetworkDelegate* network_delegate) const OVERRIDE { |
| 44 return new URLRequestMockHTTPJob(request, network_delegate, | 46 return new URLRequestMockHTTPJob(request, network_delegate, |
| 45 map_all_requests_to_base_path_ ? base_path_ : GetOnDiskPath(request)); | 47 map_all_requests_to_base_path_ ? base_path_ : GetOnDiskPath(request), |
| 48 worker_pool_); | |
| 46 } | 49 } |
| 47 | 50 |
| 48 private: | 51 private: |
| 49 base::FilePath GetOnDiskPath(net::URLRequest* request) const { | 52 base::FilePath GetOnDiskPath(net::URLRequest* request) const { |
| 50 // Conceptually we just want to "return base_path_ + request->url().path()". | 53 // Conceptually we just want to "return base_path_ + request->url().path()". |
| 51 // But path in the request URL is in URL space (i.e. %-encoded spaces). | 54 // But path in the request URL is in URL space (i.e. %-encoded spaces). |
| 52 // So first we convert base FilePath to a URL, then append the URL | 55 // So first we convert base FilePath to a URL, then append the URL |
| 53 // path to that, and convert the final URL back to a FilePath. | 56 // path to that, and convert the final URL back to a FilePath. |
| 54 GURL file_url(net::FilePathToFileURL(base_path_)); | 57 GURL file_url(net::FilePathToFileURL(base_path_)); |
| 55 std::string url = file_url.spec() + request->url().path(); | 58 std::string url = file_url.spec() + request->url().path(); |
| 56 base::FilePath file_path; | 59 base::FilePath file_path; |
| 57 net::FileURLToFilePath(GURL(url), &file_path); | 60 net::FileURLToFilePath(GURL(url), &file_path); |
| 58 return file_path; | 61 return file_path; |
| 59 } | 62 } |
| 60 | 63 |
| 61 const base::FilePath base_path_; | 64 const base::FilePath base_path_; |
| 62 const bool map_all_requests_to_base_path_; | 65 const bool map_all_requests_to_base_path_; |
| 66 const scoped_refptr<base::SequencedWorkerPool> worker_pool_; | |
| 63 | 67 |
| 64 DISALLOW_COPY_AND_ASSIGN(MockJobInterceptor); | 68 DISALLOW_COPY_AND_ASSIGN(MockJobInterceptor); |
| 65 }; | 69 }; |
| 66 | 70 |
| 67 } // namespace | 71 } // namespace |
| 68 | 72 |
| 69 // static | 73 // static |
| 70 void URLRequestMockHTTPJob::AddUrlHandler(const base::FilePath& base_path) { | 74 void URLRequestMockHTTPJob::AddUrlHandler( |
| 75 const base::FilePath& base_path, | |
| 76 const scoped_refptr<base::SequencedWorkerPool>& worker_pool) { | |
| 71 // Add kMockHostname to net::URLRequestFilter. | 77 // Add kMockHostname to net::URLRequestFilter. |
| 72 net::URLRequestFilter* filter = net::URLRequestFilter::GetInstance(); | 78 net::URLRequestFilter* filter = net::URLRequestFilter::GetInstance(); |
| 73 filter->AddHostnameInterceptor( | 79 filter->AddHostnameInterceptor( |
| 74 "http", kMockHostname, CreateInterceptor(base_path)); | 80 "http", kMockHostname, CreateInterceptor(base_path, worker_pool)); |
| 75 } | 81 } |
| 76 | 82 |
| 77 // static | 83 // static |
| 78 void URLRequestMockHTTPJob::AddHostnameToFileHandler( | 84 void URLRequestMockHTTPJob::AddHostnameToFileHandler( |
| 79 const std::string& hostname, | 85 const std::string& hostname, |
| 80 const base::FilePath& file) { | 86 const base::FilePath& file, |
| 87 const scoped_refptr<base::SequencedWorkerPool>& worker_pool) { | |
| 81 net::URLRequestFilter* filter = net::URLRequestFilter::GetInstance(); | 88 net::URLRequestFilter* filter = net::URLRequestFilter::GetInstance(); |
| 82 filter->AddHostnameInterceptor( | 89 filter->AddHostnameInterceptor( |
| 83 "http", hostname, CreateInterceptorForSingleFile(file)); | 90 "http", hostname, |
| 91 CreateInterceptorForSingleFile(file, worker_pool)); | |
| 84 } | 92 } |
| 85 | 93 |
| 86 // static | 94 // static |
| 87 GURL URLRequestMockHTTPJob::GetMockUrl(const base::FilePath& path) { | 95 GURL URLRequestMockHTTPJob::GetMockUrl(const base::FilePath& path) { |
| 88 std::string url = "http://"; | 96 std::string url = "http://"; |
| 89 url.append(kMockHostname); | 97 url.append(kMockHostname); |
| 90 url.append("/"); | 98 url.append("/"); |
| 91 std::string path_str = path.MaybeAsASCII(); | 99 std::string path_str = path.MaybeAsASCII(); |
| 92 DCHECK(!path_str.empty()); // We only expect ASCII paths in tests. | 100 DCHECK(!path_str.empty()); // We only expect ASCII paths in tests. |
| 93 url.append(path_str); | 101 url.append(path_str); |
| 94 return GURL(url); | 102 return GURL(url); |
| 95 } | 103 } |
| 96 | 104 |
| 97 // static | 105 // static |
| 98 GURL URLRequestMockHTTPJob::GetMockViewSourceUrl(const base::FilePath& path) { | |
| 99 std::string url = kViewSourceScheme; | |
| 100 url.append(":"); | |
| 101 url.append(GetMockUrl(path).spec()); | |
| 102 return GURL(url); | |
| 103 } | |
| 104 | |
| 105 // static | |
| 106 scoped_ptr<net::URLRequestInterceptor> | 106 scoped_ptr<net::URLRequestInterceptor> |
| 107 URLRequestMockHTTPJob::CreateInterceptor(const base::FilePath& base_path) { | 107 URLRequestMockHTTPJob::CreateInterceptor( |
| 108 const base::FilePath& base_path, | |
| 109 const scoped_refptr<base::SequencedWorkerPool>& worker_pool) { | |
| 108 return scoped_ptr<net::URLRequestInterceptor>( | 110 return scoped_ptr<net::URLRequestInterceptor>( |
| 109 new MockJobInterceptor(base_path, false)); | 111 new MockJobInterceptor(base_path, false, worker_pool)); |
| 110 } | 112 } |
| 111 | 113 |
| 112 // static | 114 // static |
| 113 scoped_ptr<net::URLRequestInterceptor> | 115 scoped_ptr<net::URLRequestInterceptor> |
| 114 URLRequestMockHTTPJob::CreateInterceptorForSingleFile( | 116 URLRequestMockHTTPJob::CreateInterceptorForSingleFile( |
| 115 const base::FilePath& file) { | 117 const base::FilePath& file, |
| 118 const scoped_refptr<base::SequencedWorkerPool>& worker_pool) { | |
| 116 return scoped_ptr<net::URLRequestInterceptor>( | 119 return scoped_ptr<net::URLRequestInterceptor>( |
| 117 new MockJobInterceptor(file, true)); | 120 new MockJobInterceptor(file, true, worker_pool)); |
| 118 } | 121 } |
| 119 | 122 |
| 120 URLRequestMockHTTPJob::URLRequestMockHTTPJob( | 123 URLRequestMockHTTPJob::URLRequestMockHTTPJob( |
| 121 net::URLRequest* request, net::NetworkDelegate* network_delegate, | 124 net::URLRequest* request, net::NetworkDelegate* network_delegate, |
| 122 const base::FilePath& file_path) | 125 const base::FilePath& file_path, |
| 126 const scoped_refptr<base::SequencedWorkerPool>& worker_pool) | |
| 123 : net::URLRequestFileJob( | 127 : net::URLRequestFileJob( |
| 124 request, network_delegate, file_path, | 128 request, network_delegate, file_path, |
| 125 content::BrowserThread::GetBlockingPool()-> | 129 worker_pool->GetTaskRunnerWithShutdownBehavior( |
| 126 GetTaskRunnerWithShutdownBehavior( | 130 base::SequencedWorkerPool::SKIP_ON_SHUTDOWN)), |
| 127 base::SequencedWorkerPool::SKIP_ON_SHUTDOWN)) {} | 131 task_runner_( |
| 132 worker_pool->GetTaskRunnerWithShutdownBehavior( | |
| 133 base::SequencedWorkerPool::SKIP_ON_SHUTDOWN)), | |
|
mmenke
2014/09/05 20:06:15
Rather than creating two TaskRunners, I think we s
xunjieli
2014/09/05 20:59:44
Done.The callers of the URLRequestMockHTTPJob will
mmenke
2014/09/05 21:10:29
Yes, they will - I hadn't considered that. Still
| |
| 134 weak_ptr_factory_(this) { | |
| 135 } | |
| 128 | 136 |
| 129 URLRequestMockHTTPJob::~URLRequestMockHTTPJob() { } | 137 URLRequestMockHTTPJob::~URLRequestMockHTTPJob() { } |
| 130 | 138 |
| 131 // Public virtual version. | 139 // Public virtual version. |
| 132 void URLRequestMockHTTPJob::GetResponseInfo(net::HttpResponseInfo* info) { | 140 void URLRequestMockHTTPJob::GetResponseInfo(net::HttpResponseInfo* info) { |
| 133 // Forward to private const version. | 141 // Forward to private const version. |
| 134 GetResponseInfoConst(info); | 142 GetResponseInfoConst(info); |
| 135 } | 143 } |
| 136 | 144 |
| 137 bool URLRequestMockHTTPJob::IsRedirectResponse(GURL* location, | 145 bool URLRequestMockHTTPJob::IsRedirectResponse(GURL* location, |
| 138 int* http_status_code) { | 146 int* http_status_code) { |
| 139 // Override the net::URLRequestFileJob implementation to invoke the default | 147 // Override the net::URLRequestFileJob implementation to invoke the default |
| 140 // one based on HttpResponseInfo. | 148 // one based on HttpResponseInfo. |
| 141 return net::URLRequestJob::IsRedirectResponse(location, http_status_code); | 149 return net::URLRequestJob::IsRedirectResponse(location, http_status_code); |
| 142 } | 150 } |
| 143 | 151 |
| 152 // Public virtual version. | |
| 153 void URLRequestMockHTTPJob::Start() { | |
| 154 base::PostTaskAndReplyWithResult( | |
| 155 task_runner_.get(), | |
| 156 FROM_HERE, | |
| 157 base::Bind(&URLRequestMockHTTPJob::DoFileIO, | |
| 158 base::Unretained(this)), | |
| 159 base::Bind(&URLRequestMockHTTPJob::GetRawHeaders, | |
| 160 weak_ptr_factory_.GetWeakPtr())); | |
| 161 } | |
| 162 | |
| 163 std::string URLRequestMockHTTPJob::DoFileIO() { | |
| 164 base::FilePath header_file = | |
| 165 base::FilePath(file_path_.value() + kMockHeaderFileSuffix); | |
|
mmenke
2014/09/05 20:06:15
It's unsafe to dereference members of URLRequestMo
xunjieli
2014/09/05 20:59:44
Done.I will this in mind. Thanks for explaining!
| |
| 166 | |
| 167 if (!base::PathExists(header_file)) { | |
| 168 // If there is no mock-http-headers file, fake a 200 OK. | |
| 169 return "HTTP/1.0 200 OK\n"; | |
| 170 } | |
| 171 | |
| 172 std::string raw_headers; | |
| 173 base::ReadFileToString(header_file, &raw_headers); | |
| 174 return raw_headers; | |
| 175 } | |
| 176 | |
| 177 void URLRequestMockHTTPJob::GetRawHeaders(std::string raw_headers) { | |
| 178 // Handle CRLF line-endings. | |
| 179 ReplaceSubstringsAfterOffset(&raw_headers_, 0, "\r\n", "\n"); | |
| 180 // ParseRawHeaders expects \0 to end each header line. | |
| 181 ReplaceSubstringsAfterOffset(&raw_headers_, 0, "\n", std::string("\0", 1)); | |
| 182 raw_headers_ = raw_headers; | |
| 183 URLRequestFileJob::Start(); | |
| 184 } | |
| 185 | |
| 144 // Private const version. | 186 // Private const version. |
| 145 void URLRequestMockHTTPJob::GetResponseInfoConst( | 187 void URLRequestMockHTTPJob::GetResponseInfoConst( |
| 146 net::HttpResponseInfo* info) const { | 188 net::HttpResponseInfo* info) const { |
| 147 // We have to load our headers from disk, but we only use this class | 189 info->headers = new net::HttpResponseHeaders(raw_headers_); |
| 148 // from tests, so allow these IO operations to happen on any thread. | |
| 149 base::ThreadRestrictions::ScopedAllowIO allow_io; | |
| 150 | |
| 151 base::FilePath header_file = | |
| 152 base::FilePath(file_path_.value() + kMockHeaderFileSuffix); | |
| 153 std::string raw_headers; | |
| 154 if (!base::PathExists(header_file)) { | |
| 155 // If there is no mock-http-headers file, fake a 200 OK. | |
| 156 raw_headers = "HTTP/1.0 200 OK\n"; | |
| 157 } else { | |
| 158 if (!base::ReadFileToString(header_file, &raw_headers)) | |
| 159 return; | |
| 160 } | |
| 161 | |
| 162 // Handle CRLF line-endings. | |
| 163 ReplaceSubstringsAfterOffset(&raw_headers, 0, "\r\n", "\n"); | |
| 164 // ParseRawHeaders expects \0 to end each header line. | |
| 165 ReplaceSubstringsAfterOffset(&raw_headers, 0, "\n", std::string("\0", 1)); | |
| 166 info->headers = new net::HttpResponseHeaders(raw_headers); | |
| 167 } | 190 } |
| 168 | 191 |
| 169 bool URLRequestMockHTTPJob::GetMimeType(std::string* mime_type) const { | 192 bool URLRequestMockHTTPJob::GetMimeType(std::string* mime_type) const { |
| 170 net::HttpResponseInfo info; | 193 net::HttpResponseInfo info; |
| 171 GetResponseInfoConst(&info); | 194 GetResponseInfoConst(&info); |
| 172 return info.headers.get() && info.headers->GetMimeType(mime_type); | 195 return info.headers.get() && info.headers->GetMimeType(mime_type); |
| 173 } | 196 } |
| 174 | 197 |
| 175 int URLRequestMockHTTPJob::GetResponseCode() const { | 198 int URLRequestMockHTTPJob::GetResponseCode() const { |
| 176 net::HttpResponseInfo info; | 199 net::HttpResponseInfo info; |
| 177 GetResponseInfoConst(&info); | 200 GetResponseInfoConst(&info); |
| 178 // If we have headers, get the response code from them. | 201 // If we have headers, get the response code from them. |
| 179 if (info.headers.get()) | 202 if (info.headers.get()) |
| 180 return info.headers->response_code(); | 203 return info.headers->response_code(); |
| 181 return net::URLRequestJob::GetResponseCode(); | 204 return net::URLRequestJob::GetResponseCode(); |
| 182 } | 205 } |
| 183 | 206 |
| 184 bool URLRequestMockHTTPJob::GetCharset(std::string* charset) { | 207 bool URLRequestMockHTTPJob::GetCharset(std::string* charset) { |
| 185 net::HttpResponseInfo info; | 208 net::HttpResponseInfo info; |
| 186 GetResponseInfo(&info); | 209 GetResponseInfo(&info); |
| 187 return info.headers.get() && info.headers->GetCharset(charset); | 210 return info.headers.get() && info.headers->GetCharset(charset); |
| 188 } | 211 } |
| 189 | 212 |
| 190 } // namespace content | 213 } // namespace net |
| OLD | NEW |