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 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573
|
// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CONTENT_BROWSER_INTEREST_GROUP_MOCK_AUCTION_PROCESS_MANAGER_H_
#define CONTENT_BROWSER_INTEREST_GROUP_MOCK_AUCTION_PROCESS_MANAGER_H_
#include <stdint.h>
#include <list>
#include <map>
#include <memory>
#include <optional>
#include <string>
#include <vector>
#include "base/containers/flat_map.h"
#include "base/memory/ref_counted.h"
#include "base/memory/scoped_refptr.h"
#include "base/run_loop.h"
#include "base/time/time.h"
#include "content/browser/interest_group/auction_process_manager.h"
#include "content/public/browser/site_instance.h"
#include "content/services/auction_worklet/public/mojom/auction_worklet_service.mojom-forward.h"
#include "content/services/auction_worklet/public/mojom/auction_worklet_service.mojom.h"
#include "content/services/auction_worklet/public/mojom/bidder_worklet.mojom.h"
#include "content/services/auction_worklet/public/mojom/real_time_reporting.mojom.h"
#include "content/services/auction_worklet/public/mojom/seller_worklet.mojom.h"
#include "content/services/auction_worklet/public/mojom/trusted_signals_cache.mojom-forward.h"
#include "mojo/public/cpp/bindings/associated_receiver_set.h"
#include "mojo/public/cpp/bindings/associated_remote.h"
#include "mojo/public/cpp/bindings/pending_associated_receiver.h"
#include "mojo/public/cpp/bindings/pending_associated_remote.h"
#include "mojo/public/cpp/bindings/pending_receiver.h"
#include "mojo/public/cpp/bindings/receiver_set.h"
#include "third_party/blink/public/common/interest_group/ad_auction_currencies.h"
#include "third_party/blink/public/common/interest_group/ad_display_size.h"
#include "third_party/blink/public/common/interest_group/auction_config.h"
#include "third_party/blink/public/mojom/devtools/devtools_agent.mojom.h"
#include "url/gurl.h"
#include "url/origin.h"
namespace content {
// This file contains an AuctionProcessManager that creates mock worklets
// that tests can control.
// BidderWorklet that holds onto passed in callbacks, to let the test invoke
// them.
class MockBidderWorklet : public auction_worklet::mojom::BidderWorklet,
auction_worklet::mojom::GenerateBidFinalizer {
public:
MockBidderWorklet(
mojo::PendingReceiver<auction_worklet::mojom::BidderWorklet>
pending_receiver,
const std::map<std::string, base::TimeDelta>& expected_per_buyer_timeouts,
bool skip_generate_bid);
MockBidderWorklet(const MockBidderWorklet&) = delete;
const MockBidderWorklet& operator=(const MockBidderWorklet&) = delete;
~MockBidderWorklet() override;
// auction_worklet::mojom::BidderWorklet implementation:
void BeginGenerateBid(
auction_worklet::mojom::BidderWorkletNonSharedParamsPtr
bidder_worklet_non_shared_params,
auction_worklet::mojom::TrustedSignalsCacheKeyPtr
trusted_signals_cache_key,
auction_worklet::mojom::KAnonymityBidMode kanon_mode,
const url::Origin& interest_group_join_origin,
const std::optional<GURL>& direct_from_seller_per_buyer_signals,
const std::optional<GURL>& direct_from_seller_auction_signals,
const url::Origin& browser_signal_seller_origin,
const std::optional<url::Origin>& browser_signal_top_level_seller_origin,
const base::TimeDelta browser_signal_recency,
bool browser_signal_for_debugging_only_sampling,
blink::mojom::BiddingBrowserSignalsPtr bidding_browser_signals,
base::Time auction_start_time,
const std::optional<blink::AdSize>& requested_ad_size,
uint16_t multi_bid_limit,
uint64_t group_by_origin_id,
uint64_t trace_id,
mojo::PendingAssociatedRemote<auction_worklet::mojom::GenerateBidClient>
generate_bid_client,
mojo::PendingAssociatedReceiver<
auction_worklet::mojom::GenerateBidFinalizer> bid_finalizer) override;
void SendPendingSignalsRequests() override;
void ReportWin(
bool is_for_additional_bid,
const std::optional<std::string>& interest_group_name_reporting_id,
const std::optional<std::string>& buyer_reporting_id,
const std::optional<std::string>& buyer_and_seller_reporting_id,
const std::optional<std::string>& selected_buyer_and_seller_reporting_id,
const std::optional<std::string>& auction_signals_json,
const std::optional<std::string>& per_buyer_signals_json,
const std::optional<GURL>& direct_from_seller_per_buyer_signals,
const std::optional<std::string>&
direct_from_seller_per_buyer_signals_header_ad_slot,
const std::optional<GURL>& direct_from_seller_auction_signals,
const std::optional<std::string>&
direct_from_seller_auction_signals_header_ad_slot,
const std::string& seller_signals_json,
auction_worklet::mojom::KAnonymityStatus kanon_status,
const GURL& browser_signal_render_url,
double browser_signal_bid,
const std::optional<blink::AdCurrency>& browser_signal_bid_currency,
double browser_signal_highest_scoring_other_bid,
const std::optional<blink::AdCurrency>&
browser_signal_highest_scoring_other_bid_currency,
bool browser_signal_made_highest_scoring_other_bid,
std::optional<double> browser_signal_ad_cost,
std::optional<uint16_t> browser_signal_modeling_signals,
uint8_t browser_signal_join_count,
uint8_t browser_signal_recency,
const url::Origin& browser_signal_seller_origin,
const std::optional<url::Origin>& browser_signal_top_level_seller_origin,
const std::optional<base::TimeDelta> browser_signal_reporting_timeout,
std::optional<uint32_t> bidding_signals_data_version,
const std::optional<std::string>& aggregate_win_signals,
uint64_t trace_id,
ReportWinCallback report_win_callback) override;
void ConnectDevToolsAgent(
mojo::PendingAssociatedReceiver<blink::mojom::DevToolsAgent> agent,
uint32_t thread_index) override;
// mojom::GenerateBidFinalizer implementation.
void FinishGenerateBid(
const std::optional<std::string>& auction_signals_json,
const std::optional<std::string>& per_buyer_signals_json,
const std::optional<base::TimeDelta> per_buyer_timeout,
const std::optional<blink::AdCurrency>& per_buyer_currency,
const std::optional<GURL>& direct_from_seller_per_buyer_signals,
const std::optional<std::string>&
direct_from_seller_per_buyer_signals_header_ad_slot,
const std::optional<GURL>& direct_from_seller_auction_signals,
const std::optional<std::string>&
direct_from_seller_auction_signals_header_ad_slot) override;
// Waits for GenerateBid() to be invoked.
void WaitForGenerateBid();
// The below functions alter `trusted_signals_fetch_latency` (from
// OnBiddingSignalsReceived()) and `bidding_latency` (from
// OnGenerateBidComplete()), respectively, to return `delta`.
void SetBidderTrustedSignalsFetchLatency(base::TimeDelta delta);
void SetBiddingLatency(base::TimeDelta delta);
void SetCodeFetchLatencies(std::optional<base::TimeDelta> js_fetch_latency,
std::optional<base::TimeDelta> wasm_fetch_latency);
void SetScriptTimedOut(bool val) { script_timed_out_ = val; }
// Same for `reporting_latency` for ReportWin()
void SetReportingLatency(base::TimeDelta delta) {
reporting_latency_ = delta;
}
// Controls what's passed to `non_kanon_pa_requests` of the generate bid
// callback.
void SetNonKAnonPARequests(
std::vector<auction_worklet::mojom::PrivateAggregationRequestPtr>
non_kanon_pa_requests) {
non_kanon_pa_requests_ = std::move(non_kanon_pa_requests);
}
// Invokes the GenerateBid callback. A bid of base::nullopt means no bid
// should be offered. Waits for the GenerateBid() call first, if needed.
void InvokeGenerateBidCallback(
std::optional<double> bid,
const std::optional<blink::AdCurrency>& bid_currency = std::nullopt,
const blink::AdDescriptor& ad_descriptor = blink::AdDescriptor(),
auction_worklet::mojom::BidRole bid_role =
auction_worklet::mojom::BidRole::kUnenforcedKAnon,
std::vector<auction_worklet::mojom::BidderWorkletBidPtr> further_bids =
std::vector<auction_worklet::mojom::BidderWorkletBidPtr>(),
std::optional<std::vector<blink::AdDescriptor>> ad_component_descriptors =
std::nullopt,
base::TimeDelta duration = base::TimeDelta(),
const std::optional<uint32_t>& bidding_signals_data_version =
std::nullopt,
const std::optional<GURL>& debug_loss_report_url = std::nullopt,
const std::optional<GURL>& debug_win_report_url = std::nullopt,
std::vector<auction_worklet::mojom::PrivateAggregationRequestPtr>
pa_requests = {},
std::vector<auction_worklet::mojom::RealTimeReportingContributionPtr>
real_time_contributions = {},
auction_worklet::mojom::GenerateBidDependencyLatenciesPtr
dependency_latencies =
auction_worklet::mojom::GenerateBidDependencyLatenciesPtr(),
auction_worklet::mojom::RejectReason reject_reason =
auction_worklet::mojom::RejectReason::kNotAvailable);
// Waits for ReportWin() to be invoked.
void WaitForReportWin();
// Invokes the ReportWin() callback with the provided parameters. Does not
// wait for ReportWin() to be invoked.
void InvokeReportWinCallback(
std::optional<GURL> report_url = std::nullopt,
base::flat_map<std::string, GURL> ad_beacon_map = {},
base::flat_map<std::string, std::string> ad_macro_map = {},
std::vector<auction_worklet::mojom::PrivateAggregationRequestPtr>
pa_requests = {},
auction_worklet::mojom::PrivateModelTrainingRequestDataPtr
pmt_request_data = nullptr,
std::vector<std::string> errors = {});
// Flushes the receiver pipe.
void Flush();
// Flush the receiver pipe and return whether or not its closed.
bool PipeIsClosed();
void SetSelectedBuyerAndSellerReportingId(
std::optional<std::string> selected);
private:
void OnPipeClosed() { pipe_closed_ = true; }
std::list<mojo::AssociatedRemote<auction_worklet::mojom::GenerateBidClient>>
generate_bid_clients_;
mojo::AssociatedReceiverSet<auction_worklet::mojom::GenerateBidFinalizer,
base::TimeDelta>
finalizer_receiver_set_;
bool pipe_closed_ = false;
std::optional<std::string> selected_buyer_and_seller_reporting_id_;
std::vector<auction_worklet::mojom::PrivateAggregationRequestPtr>
non_kanon_pa_requests_;
std::unique_ptr<base::RunLoop> generate_bid_run_loop_;
std::unique_ptr<base::RunLoop> report_win_run_loop_;
ReportWinCallback report_win_callback_;
// If true, bypass the `BeginGenerateBid()` function. This class does not
// support testing multiple calls to `BeginGenerateBid()`. This flag is useful
// for testing other auction functions while disabling that specific code
// path.
bool skip_generate_bid_ = false;
bool generate_bid_called_ = false;
bool send_pending_signals_requests_called_ = false;
// Expected per-bidder timeout values, indexed by interest group name.
std::map<std::string, base::TimeDelta> expected_per_buyer_timeouts_;
// To be fed as `trusted_signals_fetch_latency` (from
// OnBiddingSignalsReceived()).
base::TimeDelta trusted_signals_fetch_latency_;
// These are fed as part of BidderTimingMetrics. Except for
// `bidding_latency_` and `reporting_latency_` they are used both for
// generateBid and reportWin.
base::TimeDelta bidding_latency_;
base::TimeDelta reporting_latency_;
std::optional<base::TimeDelta> js_fetch_latency_;
std::optional<base::TimeDelta> wasm_fetch_latency_;
bool script_timed_out_ = false;
// Receiver is last so that destroying `this` while there's a pending callback
// over the pipe will not DCHECK.
mojo::Receiver<auction_worklet::mojom::BidderWorklet> receiver_;
};
// SellerWorklet that holds onto passed in callbacks, to let the test invoke
// them.
class MockSellerWorklet : public auction_worklet::mojom::SellerWorklet {
public:
// Subset of parameters passed to SellerWorklet's ScoreAd method.
struct ScoreAdParams {
ScoreAdParams();
ScoreAdParams(ScoreAdParams&&);
~ScoreAdParams();
ScoreAdParams& operator=(ScoreAdParams&&);
mojo::PendingRemote<auction_worklet::mojom::ScoreAdClient> score_ad_client;
double bid;
url::Origin interest_group_owner;
};
explicit MockSellerWorklet(
mojo::PendingReceiver<auction_worklet::mojom::SellerWorklet>
pending_receiver);
MockSellerWorklet(const MockSellerWorklet&) = delete;
const MockSellerWorklet& operator=(const MockSellerWorklet&) = delete;
~MockSellerWorklet() override;
// auction_worklet::mojom::SellerWorklet implementation:
void ScoreAd(
const std::string& ad_metadata_json,
double bid,
const std::optional<blink::AdCurrency>& bid_currency,
const blink::AuctionConfig::NonSharedParams&
auction_ad_config_non_shared_params,
auction_worklet::mojom::TrustedSignalsCacheKeyPtr
trusted_signals_cache_key,
auction_worklet::mojom::CreativeInfoWithoutOwnerPtr ad,
std::vector<auction_worklet::mojom::CreativeInfoWithoutOwnerPtr>
ad_components,
const std::optional<GURL>& direct_from_seller_seller_signals,
const std::optional<std::string>&
direct_from_seller_seller_signals_header_ad_slot,
const std::optional<GURL>& direct_from_seller_auction_signals,
const std::optional<std::string>&
direct_from_seller_auction_signals_header_ad_slot,
auction_worklet::mojom::ComponentAuctionOtherSellerPtr
browser_signals_other_seller,
const std::optional<blink::AdCurrency>& component_expect_bid_currency,
const url::Origin& browser_signal_interest_group_owner,
const std::optional<std::string>&
browser_signal_selected_buyer_and_seller_reporting_id,
const std::optional<std::string>&
browser_signal_buyer_and_seller_reporting_id,
uint32_t browser_signal_bidding_duration_msecs,
bool browser_signal_for_debugging_only_in_cooldown_or_lockout,
bool browser_signal_for_debugging_only_sampling,
const std::optional<base::TimeDelta> seller_timeout,
uint64_t group_by_origin_id,
bool allow_group_by_origin_mode,
uint64_t trace_id,
const url::Origin& bidder_joining_origin,
mojo::PendingRemote<auction_worklet::mojom::ScoreAdClient>
score_ad_client) override;
void SendPendingSignalsRequests() override;
void ReportResult(
const blink::AuctionConfig::NonSharedParams&
auction_ad_config_non_shared_params,
const std::optional<GURL>& direct_from_seller_seller_signals,
const std::optional<std::string>&
direct_from_seller_seller_signals_header_ad_slot,
const std::optional<GURL>& direct_from_seller_auction_signals,
const std::optional<std::string>&
direct_from_seller_auction_signals_header_ad_slot,
auction_worklet::mojom::ComponentAuctionOtherSellerPtr
browser_signals_other_seller,
const url::Origin& browser_signal_interest_group_owner,
const std::optional<std::string>&
browser_signal_buyer_and_seller_reporting_id,
const std::optional<std::string>&
browser_signal_selected_buyer_and_seller_reporting_id,
const GURL& browser_signal_render_url,
double browser_signal_bid,
const std::optional<blink::AdCurrency>& browser_signal_bid_currency,
double browser_signal_desirability,
double browser_signal_highest_scoring_other_bid,
const std::optional<blink::AdCurrency>&
browser_signal_highest_scoring_other_bid_currency,
auction_worklet::mojom::ComponentAuctionReportResultParamsPtr
browser_signals_component_auction_report_result_params,
std::optional<uint32_t> browser_signal_data_version,
uint64_t trace_id,
ReportResultCallback report_result_callback) override;
void ConnectDevToolsAgent(
mojo::PendingAssociatedReceiver<blink::mojom::DevToolsAgent> agent,
uint32_t thread_index) override;
// Closes the receiver pipe with the provided reason.
void ResetReceiverWithReason(const std::string& reason);
// Waits until ScoreAd() has been invoked, if it hasn't been already. It's up
// to the caller to invoke the returned ScoreAdParams::callback to continue
// the auction.
ScoreAdParams WaitForScoreAd();
// Waits until ReportResult() has been invoked, if it hasn't been already.
void WaitForReportResult();
// Configures `reporting_latency` passed to ReportResult by
// InvokeReportResultCallback.
void SetReportingLatency(base::TimeDelta delta) {
reporting_latency_ = delta;
}
// Invokes the ReportResultCallback for the most recent ScoreAd() call with
// the provided score. WaitForReportResult() must have been invoked first.
void InvokeReportResultCallback(
std::optional<GURL> report_url = std::nullopt,
base::flat_map<std::string, GURL> ad_beacon_map = {},
std::vector<auction_worklet::mojom::PrivateAggregationRequestPtr>
pa_requests = {},
std::vector<std::string> errors = {});
// Flushes the receiver pipe.
void Flush();
// `expect_send_pending_signals_requests_called_` needs to be set to false in
// the case a SellerWorklet is destroyed before it receives a request to score
// the final bid.
void set_expect_send_pending_signals_requests_called(bool value) {
expect_send_pending_signals_requests_called_ = value;
}
void SetCodeFetchLatency(std::optional<base::TimeDelta> js_fetch_latency) {
js_fetch_latency_ = js_fetch_latency;
}
void SetScriptTimedOut(bool val) { script_timed_out_ = val; }
private:
std::unique_ptr<base::RunLoop> score_ad_run_loop_;
std::list<ScoreAdParams> score_ad_params_;
std::unique_ptr<base::RunLoop> report_result_run_loop_;
ReportResultCallback report_result_callback_;
bool expect_send_pending_signals_requests_called_ = true;
bool send_pending_signals_requests_called_ = false;
// To be fed as `reporting_latency` to ReportResult() callback.
base::TimeDelta reporting_latency_;
// Used for reporting callback as well.
std::optional<base::TimeDelta> js_fetch_latency_;
bool script_timed_out_ = false;
// Receiver is last so that destroying `this` while there's a pending callback
// over the pipe will not DCHECK.
mojo::Receiver<auction_worklet::mojom::SellerWorklet> receiver_;
};
// AuctionWorkletService that creates MockBidderWorklets and MockSellerWorklets
// to hold onto passed in PendingReceivers and Callbacks.
//
// MockAuctionProcessManager implements AuctionProcessManager and
// AuctionWorkletService - combining the two with a mojo::ReceiverSet makes it
// easier to track which call came over which receiver than using separate
// classes.
class MockAuctionProcessManager
: public DedicatedAuctionProcessManager,
public auction_worklet::mojom::AuctionWorkletService {
public:
MockAuctionProcessManager();
~MockAuctionProcessManager() override;
// DedicatedAuctionProcessManager implementation:
WorkletProcess::ProcessContext CreateProcessInternal(
WorkletProcess& worklet_process) override;
// auction_worklet::mojom::AuctionWorkletService implementation:
void SetTrustedSignalsCache(
mojo::PendingRemote<auction_worklet::mojom::TrustedSignalsCache>
trusted_signals_cache) override;
void LoadBidderWorklet(
mojo::PendingReceiver<auction_worklet::mojom::BidderWorklet>
bidder_worklet_receiver,
std::vector<
mojo::PendingRemote<auction_worklet::mojom::AuctionSharedStorageHost>>
shared_storage_hosts,
bool pause_for_debugger_on_start,
mojo::PendingRemote<network::mojom::URLLoaderFactory>
pending_url_loader_factory,
mojo::PendingRemote<auction_worklet::mojom::AuctionNetworkEventsHandler>
auction_network_events_handler,
auction_worklet::mojom::InProgressAuctionDownloadPtr script_load,
auction_worklet::mojom::InProgressAuctionDownloadPtr wasm_load,
const std::optional<GURL>& trusted_bidding_signals_url,
const std::string& trusted_bidding_signals_slot_size_param,
const url::Origin& top_window_origin,
auction_worklet::mojom::AuctionWorkletPermissionsPolicyStatePtr
permissions_policy_state,
std::optional<uint16_t> experiment_group_id,
auction_worklet::mojom::TrustedSignalsPublicKeyPtr public_key) override;
void LoadSellerWorklet(
mojo::PendingReceiver<auction_worklet::mojom::SellerWorklet>
seller_worklet_receiver,
std::vector<
mojo::PendingRemote<auction_worklet::mojom::AuctionSharedStorageHost>>
shared_storage_hosts,
bool should_pause_on_start,
mojo::PendingRemote<network::mojom::URLLoaderFactory>
pending_url_loader_factory,
mojo::PendingRemote<auction_worklet::mojom::AuctionNetworkEventsHandler>
auction_network_events_handler,
auction_worklet::mojom::InProgressAuctionDownloadPtr script_load,
const std::optional<GURL>& trusted_scoring_signals_url,
const url::Origin& top_window_origin,
auction_worklet::mojom::AuctionWorkletPermissionsPolicyStatePtr
permissions_policy_state,
std::optional<uint16_t> experiment_group_id,
std::optional<bool> send_creative_scanning_metadata,
auction_worklet::mojom::TrustedSignalsPublicKeyPtr public_key,
mojo::PendingRemote<auction_worklet::mojom::LoadSellerWorkletClient>
load_seller_worklet_client) override;
// Set the expected timeout for an interest group with the specified name,
// when it's received by a bidder worklet's FinishGenerateBid() method. Must
// be set for all bidders that are given a chance to bid.
void SetExpectedBuyerBidTimeout(const std::string& name,
base::TimeDelta value);
// Waits for `num_bidders` bidder worklets and `num_sellers` seller worklets
// to be created.
void WaitForWorklets(int num_bidders, int num_sellers = 1);
// Waits for a single script to be loaded of the specified type. Intended to
// be used to wait for the winning bidder or seller script to be reloaded.
// WaitForWorklets() should be used when waiting for worklets to be loaded at
// the start of an auction.
void WaitForWinningBidderReload();
void WaitForWinningSellerReload();
// Returns the MockBidderWorklet created for the specified script URL, if
// there is one.
std::unique_ptr<MockBidderWorklet> TakeBidderWorklet(
const GURL& script_source_url);
// Returns the MockSellerWorklet created for the specified script URL, if
// there is one. If no URL is provided, and there's only one pending seller
// worklet, returns that seller worklet.
std::unique_ptr<MockSellerWorklet> TakeSellerWorklet(
GURL script_source_url = GURL());
// Flushes the receiver set.
void Flush();
void SetSkipGenerateBid() { skip_generate_bid_ = true; }
size_t load_bidder_worklet_count() const {
return load_bidder_worklet_count_;
}
size_t last_load_bidder_worklet_threads_count() const {
return last_load_bidder_worklet_threads_count_;
}
private:
void MaybeQuitWaitForWorkletsRunLoop();
// Expected per-bidder timeout values, indexed by interest group name. Applied
// across all bidder origins.
std::map<std::string, base::TimeDelta> expected_per_buyer_timeouts_;
// Maps of script URLs to worklets.
std::map<GURL, std::unique_ptr<MockBidderWorklet>> bidder_worklets_;
std::map<GURL, std::unique_ptr<MockSellerWorklet>> seller_worklets_;
// Used to wait for the worklets to be loaded.
std::unique_ptr<base::RunLoop> wait_for_worklets_run_loop_;
// Number of seller and bidder worklets that `wait_for_worklets_run_loop_` is
// waiting for. These are compared to the size of the worklet maps above. Note
// that those only include cumulative worklets not claimed by
// TakeBidderWorklet() and TakeSellerWorklet()
// - once a worklet has been claimed by the consumer, it no longer counts
// towards these totals.
size_t waiting_for_num_bidders_ = 0;
size_t waiting_for_num_sellers_ = 0;
// If true, configure the bidder worklets to bypass the `BeginGenerateBid()`
// function. The `MockBidderWorklet` does not support testing multiple calls
// to `BeginGenerateBid()`. This flag is useful for testing other auction
// functions while disabling that specific code path.
bool skip_generate_bid_ = false;
size_t load_bidder_worklet_count_ = 0;
size_t last_load_bidder_worklet_threads_count_ = 0;
// ReceiverSet is last so that destroying `this` while there's a pending
// callback over the pipe will not DCHECK. Keeps track of the weak pointers
// for each WorkletProcess to make sure each process is only used for the
// correct worklets.
mojo::ReceiverSet<auction_worklet::mojom::AuctionWorkletService,
base::WeakPtr<WorkletProcess>>
receiver_set_;
};
} // namespace content
#endif // CONTENT_BROWSER_INTEREST_GROUP_MOCK_AUCTION_PROCESS_MANAGER_H_
|