blob: 4e644404a918ea28c46bcdb7e24d700019b0726f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CONTENT_TEST_NET_URL_REQUEST_FAILED_JOB_H_
#define CONTENT_TEST_NET_URL_REQUEST_FAILED_JOB_H_
#include <string>
#include "base/compiler_specific.h"
#include "base/memory/weak_ptr.h"
#include "net/url_request/url_request_job.h"
#include "url/gurl.h"
namespace content {
// This class simulates a URLRequestJob failing with a given error code while
// trying to connect.
class URLRequestFailedJob : public net::URLRequestJob {
public:
URLRequestFailedJob(net::URLRequest* request,
net::NetworkDelegate* network_delegate,
int net_error);
virtual void Start() OVERRIDE;
// Adds the testing URLs to the net::URLRequestFilter.
static void AddUrlHandler();
// Given a net error code, constructs a mock URL that will return that error
// asynchronously when started. |net_error| must be a valid net error code
// other than net::OK and net::ERR_IO_PENDING.
static GURL GetMockHttpUrl(int net_error);
static GURL GetMockHttpsUrl(int net_error);
private:
static net::URLRequestJob* Factory(net::URLRequest* request,
net::NetworkDelegate* network_delegate,
const std::string& scheme);
virtual ~URLRequestFailedJob();
// Simulate a failure.
void StartAsync();
const int net_error_;
base::WeakPtrFactory<URLRequestFailedJob> weak_factory_;
DISALLOW_COPY_AND_ASSIGN(URLRequestFailedJob);
};
} // namespace content
#endif // CONTENT_TEST_NET_URL_REQUEST_FAILED_JOB_H_
|