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 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190
|
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "net/test/url_request/url_request_failed_job.h"
#include <array>
#include "base/check_op.h"
#include "base/functional/bind.h"
#include "base/location.h"
#include "base/strings/string_number_conversions.h"
#include "base/task/single_thread_task_runner.h"
#include "net/base/net_errors.h"
#include "net/base/url_util.h"
#include "net/http/http_response_headers.h"
#include "net/url_request/url_request.h"
#include "net/url_request/url_request_filter.h"
#include "net/url_request/url_request_interceptor.h"
namespace net {
namespace {
const char kMockHostname[] = "mock.failed.request";
// String names of failure phases matching FailurePhase enum.
auto kFailurePhase = std::to_array<const char*>({
"start", // START
"readsync", // READ_SYNC
"readasync", // READ_ASYNC
});
static_assert(std::size(kFailurePhase) ==
URLRequestFailedJob::FailurePhase::MAX_FAILURE_PHASE,
"kFailurePhase must match FailurePhase enum");
class MockJobInterceptor : public URLRequestInterceptor {
public:
MockJobInterceptor() = default;
MockJobInterceptor(const MockJobInterceptor&) = delete;
MockJobInterceptor& operator=(const MockJobInterceptor&) = delete;
~MockJobInterceptor() override = default;
// URLRequestJobFactory::ProtocolHandler implementation:
std::unique_ptr<URLRequestJob> MaybeInterceptRequest(
URLRequest* request) const override {
int net_error = OK;
URLRequestFailedJob::FailurePhase phase =
URLRequestFailedJob::FailurePhase::MAX_FAILURE_PHASE;
for (size_t i = 0; i < std::size(kFailurePhase); i++) {
std::string phase_error_string;
if (GetValueForKeyInQuery(request->url(), kFailurePhase[i],
&phase_error_string)) {
if (base::StringToInt(phase_error_string, &net_error)) {
phase = static_cast<URLRequestFailedJob::FailurePhase>(i);
break;
}
}
}
return std::make_unique<URLRequestFailedJob>(request, phase, net_error);
}
};
GURL GetMockUrl(const std::string& scheme,
const std::string& hostname,
URLRequestFailedJob::FailurePhase phase,
int net_error) {
CHECK_GE(phase, URLRequestFailedJob::FailurePhase::START);
CHECK_LE(phase, URLRequestFailedJob::FailurePhase::READ_ASYNC);
CHECK_LT(net_error, OK);
return GURL(scheme + "://" + hostname + "/error?" + kFailurePhase[phase] +
"=" + base::NumberToString(net_error));
}
} // namespace
URLRequestFailedJob::URLRequestFailedJob(URLRequest* request,
FailurePhase phase,
int net_error)
: URLRequestJob(request), phase_(phase), net_error_(net_error) {
CHECK_GE(phase, URLRequestFailedJob::FailurePhase::START);
CHECK_LE(phase, URLRequestFailedJob::FailurePhase::READ_ASYNC);
CHECK_LT(net_error, OK);
}
URLRequestFailedJob::URLRequestFailedJob(URLRequest* request, int net_error)
: URLRequestFailedJob(request, START, net_error) {}
URLRequestFailedJob::~URLRequestFailedJob() = default;
void URLRequestFailedJob::Start() {
base::SingleThreadTaskRunner::GetCurrentDefault()->PostTask(
FROM_HERE, base::BindOnce(&URLRequestFailedJob::StartAsync,
weak_factory_.GetWeakPtr()));
}
int URLRequestFailedJob::ReadRawData(IOBuffer* buf, int buf_size) {
CHECK(phase_ == READ_SYNC || phase_ == READ_ASYNC);
if (net_error_ == ERR_IO_PENDING || phase_ == READ_SYNC)
return net_error_;
base::SingleThreadTaskRunner::GetCurrentDefault()->PostTask(
FROM_HERE, base::BindOnce(&URLRequestFailedJob::ReadRawDataComplete,
weak_factory_.GetWeakPtr(), net_error_));
return ERR_IO_PENDING;
}
void URLRequestFailedJob::GetResponseInfo(HttpResponseInfo* info) {
*info = response_info_;
}
void URLRequestFailedJob::PopulateNetErrorDetails(
NetErrorDetails* details) const {
if (net_error_ == ERR_QUIC_PROTOCOL_ERROR) {
details->quic_connection_error = quic::QUIC_INTERNAL_ERROR;
} else if (net_error_ == ERR_NETWORK_CHANGED) {
details->quic_connection_error =
quic::QUIC_CONNECTION_MIGRATION_NO_NEW_NETWORK;
}
}
int64_t URLRequestFailedJob::GetTotalReceivedBytes() const {
return total_received_bytes_;
}
// static
void URLRequestFailedJob::AddUrlHandler() {
return AddUrlHandlerForHostname(kMockHostname);
}
// static
void URLRequestFailedJob::AddUrlHandlerForHostname(
const std::string& hostname) {
URLRequestFilter* filter = URLRequestFilter::GetInstance();
// Add |hostname| to URLRequestFilter for HTTP and HTTPS.
filter->AddHostnameInterceptor("http", hostname,
std::make_unique<MockJobInterceptor>());
filter->AddHostnameInterceptor("https", hostname,
std::make_unique<MockJobInterceptor>());
}
// static
GURL URLRequestFailedJob::GetMockHttpUrl(int net_error) {
return GetMockHttpUrlForHostname(net_error, kMockHostname);
}
// static
GURL URLRequestFailedJob::GetMockHttpsUrl(int net_error) {
return GetMockHttpsUrlForHostname(net_error, kMockHostname);
}
// static
GURL URLRequestFailedJob::GetMockHttpUrlWithFailurePhase(FailurePhase phase,
int net_error) {
return GetMockUrl("http", kMockHostname, phase, net_error);
}
// static
GURL URLRequestFailedJob::GetMockHttpUrlForHostname(
int net_error,
const std::string& hostname) {
return GetMockUrl("http", hostname, START, net_error);
}
// static
GURL URLRequestFailedJob::GetMockHttpsUrlForHostname(
int net_error,
const std::string& hostname) {
return GetMockUrl("https", hostname, START, net_error);
}
void URLRequestFailedJob::StartAsync() {
if (phase_ == START) {
if (net_error_ != ERR_IO_PENDING) {
NotifyStartError(net_error_);
return;
}
return;
}
const std::string headers = "HTTP/1.1 200 OK";
response_info_.headers =
base::MakeRefCounted<net::HttpResponseHeaders>(headers);
total_received_bytes_ = headers.size();
NotifyHeadersComplete();
}
} // namespace net
|