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
3 // found in the LICENSE file.
5 #ifndef CONTENT_TEST_NET_URL_REQUEST_FAILED_JOB_H_
6 #define CONTENT_TEST_NET_URL_REQUEST_FAILED_JOB_H_
10 #include "base/compiler_specific.h"
11 #include "base/memory/weak_ptr.h"
12 #include "net/url_request/url_request_job.h"
17 // This class simulates a URLRequestJob failing with a given error code while
19 class URLRequestFailedJob
: public net::URLRequestJob
{
21 URLRequestFailedJob(net::URLRequest
* request
,
22 net::NetworkDelegate
* network_delegate
,
25 virtual void Start() OVERRIDE
;
27 // Adds the testing URLs to the net::URLRequestFilter.
28 static void AddUrlHandler();
29 static void AddUrlHandlerForHostname(const std::string
& hostname
);
31 // Given a net error code, constructs a mock URL that will return that error
32 // asynchronously when started. |net_error| must be a valid net error code
33 // other than net::OK and net::ERR_IO_PENDING.
34 static GURL
GetMockHttpUrl(int net_error
);
35 static GURL
GetMockHttpsUrl(int net_error
);
37 // URLRequestFailedJob must be added as a handler for |hostname| for
38 // the returned URL to return |net_error|.
39 static GURL
GetMockHttpUrlForHostname(int net_error
,
40 const std::string
& hostname
);
41 static GURL
GetMockHttpsUrlForHostname(int net_error
,
42 const std::string
& hostname
);
45 virtual ~URLRequestFailedJob();
48 static net::URLRequestJob
* Factory(net::URLRequest
* request
,
49 net::NetworkDelegate
* network_delegate
,
50 const std::string
& scheme
);
52 // Simulate a failure.
57 base::WeakPtrFactory
<URLRequestFailedJob
> weak_factory_
;
59 DISALLOW_COPY_AND_ASSIGN(URLRequestFailedJob
);
62 } // namespace content
64 #endif // CONTENT_TEST_NET_URL_REQUEST_FAILED_JOB_H_