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 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508
|
// 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.
#ifndef NET_URL_REQUEST_URL_REQUEST_TEST_UTIL_H_
#define NET_URL_REQUEST_URL_REQUEST_TEST_UTIL_H_
#include <stdint.h>
#include <stdlib.h>
#include <map>
#include <memory>
#include <optional>
#include <string>
#include <utility>
#include <vector>
#include "base/compiler_specific.h"
#include "base/memory/raw_ptr.h"
#include "base/memory/scoped_refptr.h"
#include "base/path_service.h"
#include "base/strings/utf_string_conversions.h"
#include "base/task/single_thread_task_runner.h"
#include "net/base/io_buffer.h"
#include "net/base/load_timing_info.h"
#include "net/base/net_errors.h"
#include "net/base/network_delegate_impl.h"
#include "net/base/request_priority.h"
#include "net/base/transport_info.h"
#include "net/cert/cert_verifier.h"
#include "net/cookies/cookie_inclusion_status.h"
#include "net/cookies/cookie_monster.h"
#include "net/cookies/cookie_setting_override.h"
#include "net/cookies/cookie_util.h"
#include "net/disk_cache/disk_cache.h"
#include "net/first_party_sets/first_party_set_metadata.h"
#include "net/http/http_auth_handler_factory.h"
#include "net/http/http_cache.h"
#include "net/http/http_network_layer.h"
#include "net/http/http_network_session.h"
#include "net/http/http_request_headers.h"
#include "net/ssl/ssl_config_service_defaults.h"
#include "net/test/embedded_test_server/default_handlers.h"
#include "net/test/embedded_test_server/embedded_test_server.h"
#include "net/test/embedded_test_server/embedded_test_server_connection_listener.h"
#include "net/url_request/redirect_info.h"
#include "net/url_request/url_request.h"
#include "net/url_request/url_request_context.h"
#include "net/url_request/url_request_context_getter.h"
#include "net/url_request/url_request_interceptor.h"
#include "url/url_util.h"
namespace net {
class URLRequestContextBuilder;
//-----------------------------------------------------------------------------
// Creates a URLRequestContextBuilder with some members configured for the
// testing purpose.
std::unique_ptr<URLRequestContextBuilder> CreateTestURLRequestContextBuilder();
//-----------------------------------------------------------------------------
// Used to return a dummy context, which lives on the message loop
// given in the constructor.
class TestURLRequestContextGetter : public URLRequestContextGetter {
public:
// |network_task_runner| must not be NULL.
explicit TestURLRequestContextGetter(
const scoped_refptr<base::SingleThreadTaskRunner>& network_task_runner);
// Use to pass a pre-initialized |context|.
TestURLRequestContextGetter(
const scoped_refptr<base::SingleThreadTaskRunner>& network_task_runner,
std::unique_ptr<URLRequestContext> context);
// URLRequestContextGetter implementation.
URLRequestContext* GetURLRequestContext() override;
scoped_refptr<base::SingleThreadTaskRunner> GetNetworkTaskRunner()
const override;
// see NotifyContextShuttingDown() in the base class.
void NotifyContextShuttingDown();
protected:
~TestURLRequestContextGetter() override;
private:
const scoped_refptr<base::SingleThreadTaskRunner> network_task_runner_;
std::unique_ptr<URLRequestContext> context_;
bool is_shut_down_ = false;
};
//-----------------------------------------------------------------------------
class TestDelegate : public URLRequest::Delegate {
public:
TestDelegate();
~TestDelegate() override;
// Helpers to create a RunLoop, set |on_<event>| from it, then Run() it.
void RunUntilComplete();
void RunUntilRedirect();
// Enables quitting the message loop in response to auth requests, as opposed
// to returning credentials or cancelling the request.
void RunUntilAuthRequired();
// Sets the closure to be run on completion, for tests which need more fine-
// grained control than RunUntilComplete().
void set_on_complete(base::OnceClosure on_complete) {
on_complete_ = std::move(on_complete);
}
// Sets the result returned by subsequent calls to OnConnected().
void set_on_connected_result(int result) { on_connected_result_ = result; }
void set_cancel_in_received_redirect(bool val) { cancel_in_rr_ = val; }
void set_cancel_in_response_started(bool val) { cancel_in_rs_ = val; }
void set_cancel_in_received_data(bool val) { cancel_in_rd_ = val; }
void set_cancel_in_received_data_pending(bool val) {
cancel_in_rd_pending_ = val;
}
void set_allow_certificate_errors(bool val) {
allow_certificate_errors_ = val;
}
void set_credentials(const AuthCredentials& credentials) {
credentials_ = credentials;
}
// If true, the delegate will asynchronously run the callback passed in from
// URLRequest with `on_connected_result_`
void set_on_connected_run_callback(bool run_callback) {
on_connected_run_callback_ = run_callback;
}
// Returns the list of arguments with which OnConnected() was called.
// The arguments are listed in the same order as the calls were received.
const std::vector<TransportInfo>& transports() const { return transports_; }
// query state
const std::string& data_received() const { return data_received_; }
int bytes_received() const { return static_cast<int>(data_received_.size()); }
int response_started_count() const { return response_started_count_; }
int received_bytes_count() const { return received_bytes_count_; }
int received_redirect_count() const { return received_redirect_count_; }
bool received_data_before_response() const {
return received_data_before_response_;
}
RedirectInfo redirect_info() { return redirect_info_; }
bool request_failed() const { return request_failed_; }
bool have_certificate_errors() const { return have_certificate_errors_; }
bool certificate_errors_are_fatal() const {
return certificate_errors_are_fatal_;
}
int certificate_net_error() const { return certificate_net_error_; }
bool auth_required_called() const { return auth_required_; }
bool response_completed() const { return response_completed_; }
int request_status() const { return request_status_; }
std::optional<int> response_code() const { return response_code_; }
// URLRequest::Delegate:
int OnConnected(URLRequest* request,
const TransportInfo& info,
CompletionOnceCallback callback) override;
void OnReceivedRedirect(URLRequest* request,
const RedirectInfo& redirect_info,
bool* defer_redirect) override;
void OnAuthRequired(URLRequest* request,
const AuthChallengeInfo& auth_info) override;
// NOTE: |fatal| causes |certificate_errors_are_fatal_| to be set to true.
// (Unit tests use this as a post-condition.) But for policy, this method
// consults |allow_certificate_errors_|.
void OnSSLCertificateError(URLRequest* request,
int net_error,
const SSLInfo& ssl_info,
bool fatal) override;
void OnResponseStarted(URLRequest* request, int net_error) override;
void OnReadCompleted(URLRequest* request, int bytes_read) override;
private:
static const int kBufferSize = 4096;
virtual void OnResponseCompleted(URLRequest* request);
// options for controlling behavior
int on_connected_result_ = OK;
bool cancel_in_rr_ = false;
bool cancel_in_rs_ = false;
bool cancel_in_rd_ = false;
bool cancel_in_rd_pending_ = false;
bool allow_certificate_errors_ = false;
AuthCredentials credentials_;
// Used to register RunLoop quit closures, to implement the Until*() closures.
base::OnceClosure on_complete_;
base::OnceClosure on_redirect_;
base::OnceClosure on_auth_required_;
// tracks status of callbacks
std::vector<TransportInfo> transports_;
int response_started_count_ = 0;
int received_bytes_count_ = 0;
int received_redirect_count_ = 0;
bool received_data_before_response_ = false;
bool request_failed_ = false;
bool have_certificate_errors_ = false;
bool certificate_errors_are_fatal_ = false;
int certificate_net_error_ = 0;
bool auth_required_ = false;
std::string data_received_;
bool response_completed_ = false;
// tracks status of request
int request_status_ = ERR_IO_PENDING;
// tracks status of response
std::optional<int> response_code_;
// our read buffer
scoped_refptr<IOBuffer> buf_;
RedirectInfo redirect_info_;
bool on_connected_run_callback_ = false;
};
//-----------------------------------------------------------------------------
class TestNetworkDelegate : public NetworkDelegateImpl {
public:
enum Options {
NO_GET_COOKIES = 1 << 0,
NO_SET_COOKIE = 1 << 1,
};
TestNetworkDelegate();
~TestNetworkDelegate() override;
// Writes the LoadTimingInfo during the most recent call to OnBeforeRedirect.
bool GetLoadTimingInfoBeforeRedirect(
LoadTimingInfo* load_timing_info_before_redirect) const;
// Will redirect once to the given URL when the next set of headers are
// received.
void set_redirect_on_headers_received_url(
GURL redirect_on_headers_received_url) {
redirect_on_headers_received_url_ = redirect_on_headers_received_url;
}
// Adds a X-Network-Delegate header to the first OnHeadersReceived call, but
// not subsequent ones.
void set_add_header_to_first_response(bool add_header_to_first_response) {
add_header_to_first_response_ = add_header_to_first_response;
}
void set_preserve_fragment_on_redirect_url(
const std::optional<GURL>& preserve_fragment_on_redirect_url) {
preserve_fragment_on_redirect_url_ = preserve_fragment_on_redirect_url;
}
void set_cookie_options(int o) {cookie_options_bit_mask_ = o; }
int last_error() const { return last_error_; }
int error_count() const { return error_count_; }
int created_requests() const { return created_requests_; }
int destroyed_requests() const { return destroyed_requests_; }
int completed_requests() const { return completed_requests_; }
int canceled_requests() const { return canceled_requests_; }
int blocked_annotate_cookies_count() const {
return blocked_annotate_cookies_count_;
}
int blocked_set_cookie_count() const { return blocked_set_cookie_count_; }
int set_cookie_count() const { return set_cookie_count_; }
void set_cancel_request_with_policy_violating_referrer(bool val) {
cancel_request_with_policy_violating_referrer_ = val;
}
int before_start_transaction_count() const {
return before_start_transaction_count_;
}
int headers_received_count() const { return headers_received_count_; }
void set_before_start_transaction_fails() {
before_start_transaction_fails_ = true;
}
const std::vector<CookieSettingOverrides>& cookie_setting_overrides_records()
const {
return cookie_setting_overrides_records_;
}
void set_storage_access_status(
std::optional<cookie_util::StorageAccessStatus> status) {
storage_access_status_ = status;
}
protected:
// NetworkDelegate:
int OnBeforeURLRequest(URLRequest* request,
CompletionOnceCallback callback,
GURL* new_url) override;
int OnBeforeStartTransaction(
URLRequest* request,
const HttpRequestHeaders& headers,
OnBeforeStartTransactionCallback callback) override;
int OnHeadersReceived(
URLRequest* request,
CompletionOnceCallback callback,
const HttpResponseHeaders* original_response_headers,
scoped_refptr<HttpResponseHeaders>* override_response_headers,
const IPEndPoint& endpoint,
std::optional<GURL>* preserve_fragment_on_redirect_url) override;
void OnBeforeRedirect(URLRequest* request, const GURL& new_location) override;
void OnBeforeRetry(URLRequest* request) override;
void OnResponseStarted(URLRequest* request, int net_error) override;
void OnCompleted(URLRequest* request, bool started, int net_error) override;
void OnURLRequestDestroyed(URLRequest* request) override;
bool OnAnnotateAndMoveUserBlockedCookies(
const URLRequest& request,
const net::FirstPartySetMetadata& first_party_set_metadata,
net::CookieAccessResultList& maybe_included_cookies,
net::CookieAccessResultList& excluded_cookies) override;
NetworkDelegate::PrivacySetting OnForcePrivacyMode(
const URLRequest& request) const override;
bool OnCanSetCookie(
const URLRequest& request,
const net::CanonicalCookie& cookie,
CookieOptions* options,
const net::FirstPartySetMetadata& first_party_set_metadata,
CookieInclusionStatus* inclusion_status) override;
bool OnCancelURLRequestWithPolicyViolatingReferrerHeader(
const URLRequest& request,
const GURL& target_url,
const GURL& referrer_url) const override;
std::optional<cookie_util::StorageAccessStatus> OnGetStorageAccessStatus(
const URLRequest& request,
base::optional_ref<const RedirectInfo> redirect_info) const override;
void InitRequestStatesIfNew(int request_id);
// Gets a request ID if it already has one, assigns a new one and returns that
// if not.
int GetRequestId(URLRequest* request);
void RecordCookieSettingOverrides(CookieSettingOverrides overrides) const {
cookie_setting_overrides_records_.push_back(overrides);
}
GURL redirect_on_headers_received_url_;
// URL to mark as retaining its fragment if redirected to at the
// OnHeadersReceived() stage.
std::optional<GURL> preserve_fragment_on_redirect_url_;
int last_error_ = 0;
int error_count_ = 0;
int created_requests_ = 0;
int destroyed_requests_ = 0;
int completed_requests_ = 0;
int canceled_requests_ = 0;
int cookie_options_bit_mask_ = 0;
int blocked_annotate_cookies_count_ = 0;
int blocked_set_cookie_count_ = 0;
int set_cookie_count_ = 0;
int before_start_transaction_count_ = 0;
int headers_received_count_ = 0;
// NetworkDelegate callbacks happen in a particular order (e.g.
// OnBeforeURLRequest is always called before OnBeforeStartTransaction).
// This bit-set indicates for each request id (key) what events may be sent
// next.
std::map<int, int> next_states_;
// A log that records for each request id (key) the order in which On...
// functions were called.
std::map<int, std::string> event_order_;
LoadTimingInfo load_timing_info_before_redirect_;
bool has_load_timing_info_before_redirect_ = false;
bool cancel_request_with_policy_violating_referrer_ =
false; // false by default
bool before_start_transaction_fails_ = false;
bool add_header_to_first_response_ = false;
int next_request_id_ = 0;
mutable std::vector<CookieSettingOverrides> cookie_setting_overrides_records_;
std::optional<cookie_util::StorageAccessStatus> storage_access_status_ =
std::nullopt;
};
// ----------------------------------------------------------------------------
class FilteringTestNetworkDelegate : public TestNetworkDelegate {
public:
FilteringTestNetworkDelegate();
~FilteringTestNetworkDelegate() override;
bool OnCanSetCookie(
const URLRequest& request,
const net::CanonicalCookie& cookie,
CookieOptions* options,
const net::FirstPartySetMetadata& first_party_set_metadata,
CookieInclusionStatus* inclusion_status) override;
void SetCookieFilter(std::string filter) {
cookie_name_filter_ = std::move(filter);
}
int set_cookie_called_count() { return set_cookie_called_count_; }
int blocked_set_cookie_count() { return blocked_set_cookie_count_; }
void ResetSetCookieCalledCount() { set_cookie_called_count_ = 0; }
void ResetBlockedSetCookieCount() { blocked_set_cookie_count_ = 0; }
bool OnAnnotateAndMoveUserBlockedCookies(
const URLRequest& request,
const net::FirstPartySetMetadata& first_party_set_metadata,
net::CookieAccessResultList& maybe_included_cookies,
net::CookieAccessResultList& excluded_cookies) override;
NetworkDelegate::PrivacySetting OnForcePrivacyMode(
const URLRequest& request) const override;
void set_block_annotate_cookies() { block_annotate_cookies_ = true; }
void unset_block_annotate_cookies() { block_annotate_cookies_ = false; }
int annotate_cookies_called_count() const {
return annotate_cookies_called_count_;
}
int blocked_annotate_cookies_count() const {
return blocked_annotate_cookies_count_;
}
void ResetAnnotateCookiesCalledCount() { annotate_cookies_called_count_ = 0; }
void ResetBlockedAnnotateCookiesCount() {
blocked_annotate_cookies_count_ = 0;
}
void set_block_get_cookies_by_name(bool block) {
block_get_cookies_by_name_ = block;
}
void set_force_privacy_mode(bool enabled) { force_privacy_mode_ = enabled; }
void set_partitioned_state_allowed(bool allowed) {
partitioned_state_allowed_ = allowed;
}
private:
std::string cookie_name_filter_ = "";
int set_cookie_called_count_ = 0;
int blocked_set_cookie_count_ = 0;
bool block_annotate_cookies_ = false;
int annotate_cookies_called_count_ = 0;
int blocked_annotate_cookies_count_ = 0;
bool block_get_cookies_by_name_ = false;
bool force_privacy_mode_ = false;
bool partitioned_state_allowed_ = false;
};
// ----------------------------------------------------------------------------
// Less verbose way of running a simple testserver.
class HttpTestServer : public EmbeddedTestServer {
public:
explicit HttpTestServer(const base::FilePath& document_root) {
AddDefaultHandlers(document_root);
}
HttpTestServer() { RegisterDefaultHandlers(this); }
};
//-----------------------------------------------------------------------------
class TestScopedURLInterceptor {
public:
// Sets up a URLRequestInterceptor that intercepts a single request for |url|,
// returning the provided job.
//
// On destruction, cleans makes sure the job was removed, and cleans up the
// interceptor. Other interceptors for the same URL may not be created until
// the interceptor is deleted.
TestScopedURLInterceptor(const GURL& url,
std::unique_ptr<URLRequestJob> intercept_job);
~TestScopedURLInterceptor();
private:
class TestRequestInterceptor;
GURL url_;
// This is owned by the URLFilter.
raw_ptr<TestRequestInterceptor> interceptor_ = nullptr;
};
} // namespace net
#endif // NET_URL_REQUEST_URL_REQUEST_TEST_UTIL_H_
|