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 #ifndef CONTENT_TEST_NET_URL_REQUEST_FAILED_JOB_H_ | 5 #ifndef CONTENT_TEST_NET_URL_REQUEST_FAILED_JOB_H_ |
| 6 #define CONTENT_TEST_NET_URL_REQUEST_FAILED_JOB_H_ | 6 #define CONTENT_TEST_NET_URL_REQUEST_FAILED_JOB_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 11 #include "base/memory/weak_ptr.h" | 11 #include "base/memory/weak_ptr.h" |
| 12 #include "net/url_request/url_request_job.h" | 12 #include "net/url_request/url_request_job.h" |
| 13 #include "url/gurl.h" | 13 #include "url/gurl.h" |
| 14 | 14 |
| 15 namespace content { | 15 namespace content { |
| 16 | 16 |
| 17 // This class simulates a URLRequestJob failing with a given error code while | 17 // This class simulates a URLRequestJob failing with a given error code while |
| 18 // trying to connect. | 18 // trying to connect. |
| 19 class URLRequestFailedJob : public net::URLRequestJob { | 19 class URLRequestFailedJob : public net::URLRequestJob { |
| 20 public: | 20 public: |
| 21 URLRequestFailedJob(net::URLRequest* request, | 21 URLRequestFailedJob(net::URLRequest* request, |
| 22 net::NetworkDelegate* network_delegate, | 22 net::NetworkDelegate* network_delegate, |
| 23 int net_error); | 23 int net_error); |
| 24 | 24 |
| 25 virtual void Start() OVERRIDE; | 25 virtual void Start() OVERRIDE; |
| 26 | 26 |
| 27 // Adds the testing URLs to the net::URLRequestFilter. | 27 // Adds the testing URLs to the net::URLRequestFilter. |
| 28 static void AddUrlHandler(); | 28 static void AddUrlHandler(); |
| 29 static void AddUrlHandler(const std::string& hostname); | |
|
mmenke
2013/09/27 14:44:05
Function overloading, while done a fair bit in Chr
yuusuke
2013/09/28 10:42:50
Done.
| |
| 29 | 30 |
| 30 // Given a net error code, constructs a mock URL that will return that error | 31 // Given a net error code, constructs a mock URL that will return that error |
| 31 // asynchronously when started. |net_error| must be a valid net error code | 32 // asynchronously when started. |net_error| must be a valid net error code |
| 32 // other than net::OK and net::ERR_IO_PENDING. | 33 // other than net::OK and net::ERR_IO_PENDING. |
| 33 static GURL GetMockHttpUrl(int net_error); | 34 static GURL GetMockHttpUrl(int net_error); |
| 34 static GURL GetMockHttpsUrl(int net_error); | 35 static GURL GetMockHttpsUrl(int net_error); |
| 36 static GURL GetMockHttpUrl(int net_error, const std::string& hostname); | |
|
mmenke
2013/09/27 14:44:05
Suggest a comment above this line along the lines
yuusuke
2013/09/28 10:42:50
Done.
| |
| 37 static GURL GetMockHttpsUrl(int net_error, const std::string& hostname); | |
|
mmenke
2013/09/27 14:44:05
Again, suggest adding a "ForHostname" to the end o
yuusuke
2013/09/28 10:42:50
Done.
| |
| 35 | 38 |
| 36 private: | 39 private: |
| 37 static net::URLRequestJob* Factory(net::URLRequest* request, | 40 static net::URLRequestJob* Factory(net::URLRequest* request, |
| 38 net::NetworkDelegate* network_delegate, | 41 net::NetworkDelegate* network_delegate, |
| 39 const std::string& scheme); | 42 const std::string& scheme); |
| 40 | 43 |
| 41 virtual ~URLRequestFailedJob(); | 44 virtual ~URLRequestFailedJob(); |
| 42 | 45 |
| 43 // Simulate a failure. | 46 // Simulate a failure. |
| 44 void StartAsync(); | 47 void StartAsync(); |
| 45 | 48 |
| 46 const int net_error_; | 49 const int net_error_; |
| 47 | 50 |
| 48 base::WeakPtrFactory<URLRequestFailedJob> weak_factory_; | 51 base::WeakPtrFactory<URLRequestFailedJob> weak_factory_; |
| 49 | 52 |
| 50 DISALLOW_COPY_AND_ASSIGN(URLRequestFailedJob); | 53 DISALLOW_COPY_AND_ASSIGN(URLRequestFailedJob); |
| 51 }; | 54 }; |
| 52 | 55 |
| 53 } // namespace content | 56 } // namespace content |
| 54 | 57 |
| 55 #endif // CONTENT_TEST_NET_URL_REQUEST_FAILED_JOB_H_ | 58 #endif // CONTENT_TEST_NET_URL_REQUEST_FAILED_JOB_H_ |
| OLD | NEW |