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 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748
|
// 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.
#include "content/browser/interest_group/mock_auction_process_manager.h"
#include <stdint.h>
#include <map>
#include <memory>
#include <optional>
#include <string>
#include <vector>
#include "base/check.h"
#include "base/containers/flat_map.h"
#include "base/functional/bind.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.h"
#include "content/services/auction_worklet/public/mojom/bidder_worklet.mojom-forward.h"
#include "content/services/auction_worklet/public/mojom/bidder_worklet.mojom.h"
#include "content/services/auction_worklet/public/mojom/in_progress_auction_download.mojom.h"
#include "content/services/auction_worklet/public/mojom/private_aggregation_request.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.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 "testing/gtest/include/gtest/gtest.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 {
MockBidderWorklet::MockBidderWorklet(
mojo::PendingReceiver<auction_worklet::mojom::BidderWorklet>
pending_receiver,
const std::map<std::string, base::TimeDelta>& expected_per_buyer_timeouts,
bool skip_generate_bid)
: skip_generate_bid_(skip_generate_bid),
expected_per_buyer_timeouts_(expected_per_buyer_timeouts),
receiver_(this, std::move(pending_receiver)) {
receiver_.set_disconnect_handler(
base::BindOnce(&MockBidderWorklet::OnPipeClosed, base::Unretained(this)));
}
MockBidderWorklet::~MockBidderWorklet() {
// `send_pending_signals_requests_called_` should always be called if any
// bids are generated, except in the unlikely event that the Mojo pipe is
// closed before a posted task is executed (this cannot be simulated by
// closing a pipe in tests, due to vagaries of timing of the two messages).
if (generate_bid_called_) {
// Flush the receiver in case the message is pending on the pipe. This
// doesn't happen when the auction has run successfully, where the auction
// only completes when all messages have been received, but may happen in
// failure cases where the message is sent, but the AuctionRunner is torn
// down early.
if (receiver_.is_bound()) {
receiver_.FlushForTesting();
}
EXPECT_TRUE(send_pending_signals_requests_called_);
}
}
void MockBidderWorklet::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) {
if (skip_generate_bid_) {
return;
}
generate_bid_called_ = true;
// per_buyer_timeout passed that will be passed to FinishGenerateBid()
// should not be empty, because auction_config's all_buyers_timeout (which
// is the key of '*' in perBuyerTimeouts) is set in the AuctionRunnerTest.
// Figure out what it should expect here (and save it into
// `finalizer_receiver_set_` as context info) since the bidder name isn't
// easily available at FinishGenerateBid time.
auto it =
expected_per_buyer_timeouts_.find(bidder_worklet_non_shared_params->name);
CHECK(it != expected_per_buyer_timeouts_.end());
base::TimeDelta expected_per_buyer_timeout = it->second;
// Single auctions should invoke all GenerateBid() calls on a worklet
// before invoking SendPendingSignalsRequests().
EXPECT_FALSE(send_pending_signals_requests_called_);
finalizer_receiver_set_.Add(this, std::move(bid_finalizer),
expected_per_buyer_timeout);
mojo::AssociatedRemote<auction_worklet::mojom::GenerateBidClient>
bound_generate_bid_client;
bound_generate_bid_client.Bind(std::move(generate_bid_client));
generate_bid_clients_.push_back(std::move(bound_generate_bid_client));
}
void MockBidderWorklet::SendPendingSignalsRequests() {
// This allows multiple calls.
send_pending_signals_requests_called_ = true;
}
void MockBidderWorklet::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) {
// While the real BidderWorklet implementation supports multiple pending
// callbacks, this class does not.
DCHECK(!report_win_callback_);
report_win_callback_ = std::move(report_win_callback);
if (report_win_run_loop_) {
report_win_run_loop_->Quit();
}
}
void MockBidderWorklet::ConnectDevToolsAgent(
mojo::PendingAssociatedReceiver<blink::mojom::DevToolsAgent> agent,
uint32_t thread_index) {
ADD_FAILURE()
<< "ConnectDevToolsAgent should not be called on MockBidderWorklet";
}
void MockBidderWorklet::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) {
// per_buyer_timeout passed to GenerateBid() should not be empty, because
// auction_config's all_buyers_timeout (which is the key of '*' in
// perBuyerTimeouts) is set in the AuctionRunnerTest.
ASSERT_TRUE(per_buyer_timeout.has_value());
// The actual expected value is stashed by BeginGenerateBid into the
// context.
EXPECT_EQ(per_buyer_timeout.value(),
finalizer_receiver_set_.current_context());
if (generate_bid_run_loop_) {
generate_bid_run_loop_->Quit();
}
}
void MockBidderWorklet::WaitForGenerateBid() {
if (generate_bid_clients_.empty()) {
generate_bid_run_loop_ = std::make_unique<base::RunLoop>();
generate_bid_run_loop_->Run();
generate_bid_run_loop_.reset();
DCHECK(!generate_bid_clients_.empty());
}
}
void MockBidderWorklet::SetBidderTrustedSignalsFetchLatency(
base::TimeDelta delta) {
trusted_signals_fetch_latency_ = delta;
}
void MockBidderWorklet::SetBiddingLatency(base::TimeDelta delta) {
bidding_latency_ = delta;
}
void MockBidderWorklet::SetCodeFetchLatencies(
std::optional<base::TimeDelta> js_fetch_latency,
std::optional<base::TimeDelta> wasm_fetch_latency) {
js_fetch_latency_ = js_fetch_latency;
wasm_fetch_latency_ = wasm_fetch_latency;
}
void MockBidderWorklet::InvokeGenerateBidCallback(
std::optional<double> bid,
const std::optional<blink::AdCurrency>& bid_currency,
const blink::AdDescriptor& ad_descriptor,
auction_worklet::mojom::BidRole bid_role,
std::vector<auction_worklet::mojom::BidderWorkletBidPtr> further_bids,
std::optional<std::vector<blink::AdDescriptor>> ad_component_descriptors,
base::TimeDelta duration,
const std::optional<uint32_t>& bidding_signals_data_version,
const std::optional<GURL>& debug_loss_report_url,
const std::optional<GURL>& debug_win_report_url,
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::RejectReason reject_reason) {
WaitForGenerateBid();
mojo::AssociatedRemote<auction_worklet::mojom::GenerateBidClient>
generate_bid_client = std::move(generate_bid_clients_.front());
generate_bid_clients_.pop_front();
base::RunLoop run_loop;
generate_bid_client->OnBiddingSignalsReceived(
/*priority_vector=*/{},
/*trusted_signals_fetch_latency=*/trusted_signals_fetch_latency_,
/*update_if_older_than=*/std::nullopt, run_loop.QuitClosure());
run_loop.Run();
if (!dependency_latencies) {
dependency_latencies =
auction_worklet::mojom::GenerateBidDependencyLatencies::New(
/*code_ready_latency=*/std::nullopt,
/*config_promises_latency=*/std::nullopt,
/*direct_from_seller_signals_latency=*/std::nullopt,
/*trusted_bidding_signals_latency=*/std::nullopt,
/*deps_wait_start_time=*/base::TimeTicks::Now(),
/*generate_bid_start_time=*/base::TimeTicks::Now(),
/*generate_bid_finish_time=*/base::TimeTicks::Now());
}
std::vector<auction_worklet::mojom::PrivateAggregationRequestPtr>
non_kanon_pa_requests;
for (const auto& request : non_kanon_pa_requests_) {
non_kanon_pa_requests.push_back(request->Clone());
}
auto bid_metrics = auction_worklet::mojom::BidderTimingMetrics::New(
/*js_fetch_latency=*/js_fetch_latency_,
/*wasm_fetch_latency=*/wasm_fetch_latency_,
/*script_latency=*/bidding_latency_,
/*script_timed_out=*/script_timed_out_);
std::vector<auction_worklet::mojom::BidderWorkletBidPtr> bids;
if (!bid.has_value()) {
DCHECK(further_bids.empty());
generate_bid_client->OnGenerateBidComplete(
/*bids=*/std::move(bids),
/*bidding_signals_data_version=*/std::nullopt, debug_loss_report_url,
/*debug_win_report_url=*/std::nullopt,
/*set_priority=*/std::nullopt,
/*update_priority_signals_overrides=*/
base::flat_map<std::string,
auction_worklet::mojom::PrioritySignalsDoublePtr>(),
/*pa_requests=*/std::move(pa_requests),
/*non_kanon_pa_requests=*/std::move(non_kanon_pa_requests),
/*real_time_contributions=*/{},
/*generate_bid_metrics=*/std::move(bid_metrics),
/*generate_bid_dependency_latencies=*/std::move(dependency_latencies),
reject_reason,
/*errors=*/std::vector<std::string>());
return;
}
bids.push_back(auction_worklet::mojom::BidderWorkletBid::New(
bid_role, "ad", *bid, bid_currency, /*ad_cost=*/std::nullopt,
std::move(ad_descriptor), selected_buyer_and_seller_reporting_id_,
ad_component_descriptors,
/*modeling_signals=*/std::nullopt, /*aggregate_win_signals=*/std::nullopt,
duration));
bids.insert(bids.end(), std::make_move_iterator(further_bids.begin()),
std::make_move_iterator(further_bids.end()));
generate_bid_client->OnGenerateBidComplete(
std::move(bids), bidding_signals_data_version, debug_loss_report_url,
debug_win_report_url,
/*set_priority=*/std::nullopt,
/*update_priority_signals_overrides=*/
base::flat_map<std::string,
auction_worklet::mojom::PrioritySignalsDoublePtr>(),
/*pa_requests=*/std::move(pa_requests),
/*non_kanon_pa_requests=*/std::move(non_kanon_pa_requests),
/*real_time_contributions=*/std::move(real_time_contributions),
/*generated_bid_metrics=*/std::move(bid_metrics),
/*generate_bid_dependency_latencies=*/std::move(dependency_latencies),
reject_reason,
/*errors=*/std::vector<std::string>());
}
void MockBidderWorklet::WaitForReportWin() {
DCHECK(generate_bid_clients_.empty());
DCHECK(!report_win_run_loop_);
if (!report_win_callback_) {
report_win_run_loop_ = std::make_unique<base::RunLoop>();
report_win_run_loop_->Run();
report_win_run_loop_.reset();
DCHECK(report_win_callback_);
}
}
void MockBidderWorklet::InvokeReportWinCallback(
std::optional<GURL> report_url,
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,
std::vector<std::string> errors) {
DCHECK(report_win_callback_);
std::move(report_win_callback_)
.Run(report_url, std::move(ad_beacon_map), std::move(ad_macro_map),
std::move(pa_requests), std::move(pmt_request_data),
auction_worklet::mojom::BidderTimingMetrics::New(
/*js_fetch_latency=*/js_fetch_latency_,
/*wasm_fetch_latency=*/wasm_fetch_latency_,
/*script_latency=*/reporting_latency_,
/*script_timed_out=*/script_timed_out_),
std::move(errors));
}
void MockBidderWorklet::Flush() {
receiver_.FlushForTesting();
}
bool MockBidderWorklet::PipeIsClosed() {
receiver_.FlushForTesting();
return pipe_closed_;
}
void MockBidderWorklet::SetSelectedBuyerAndSellerReportingId(
std::optional<std::string> selected) {
selected_buyer_and_seller_reporting_id_ = std::move(selected);
}
MockSellerWorklet::ScoreAdParams::ScoreAdParams() = default;
MockSellerWorklet::ScoreAdParams::ScoreAdParams(ScoreAdParams&&) = default;
MockSellerWorklet::ScoreAdParams::~ScoreAdParams() = default;
MockSellerWorklet::ScoreAdParams& MockSellerWorklet::ScoreAdParams::operator=(
ScoreAdParams&&) = default;
MockSellerWorklet::MockSellerWorklet(
mojo::PendingReceiver<auction_worklet::mojom::SellerWorklet>
pending_receiver)
: receiver_(this, std::move(pending_receiver)) {}
MockSellerWorklet::~MockSellerWorklet() {
// Flush the receiver in case the message is pending on the pipe. This
// doesn't happen when the auction has run successfully, where the auction
// only completes when all messages have been received, but may happen in
// failure cases where the message is sent, but the AuctionRunner is torn
// down early.
if (receiver_.is_bound()) {
receiver_.FlushForTesting();
}
EXPECT_EQ(expect_send_pending_signals_requests_called_,
send_pending_signals_requests_called_);
// Every received ScoreAd() call should have been waited for.
EXPECT_TRUE(score_ad_params_.empty());
}
void MockSellerWorklet::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) {
// SendPendingSignalsRequests() should only be called once all ads are
// scored.
EXPECT_FALSE(send_pending_signals_requests_called_);
ASSERT_TRUE(seller_timeout.has_value());
// seller_timeout in auction_config higher than 500 ms should be clamped to
// 500 ms by the AuctionRunner before passed to ScoreAd(), and
// auction_config's seller_timeout is 1000 ms so it should be 500 ms here.
EXPECT_EQ(seller_timeout.value(), base::Milliseconds(500));
ScoreAdParams score_ad_params;
score_ad_params.score_ad_client = std::move(score_ad_client);
score_ad_params.bid = bid;
score_ad_params.interest_group_owner = browser_signal_interest_group_owner;
score_ad_params_.emplace_front(std::move(score_ad_params));
if (score_ad_run_loop_) {
score_ad_run_loop_->Quit();
}
}
void MockSellerWorklet::SendPendingSignalsRequests() {
// SendPendingSignalsRequests() should only be called once by a single
// AuctionRunner.
EXPECT_FALSE(send_pending_signals_requests_called_);
send_pending_signals_requests_called_ = true;
}
void MockSellerWorklet::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) {
report_result_callback_ = std::move(report_result_callback);
if (report_result_run_loop_) {
report_result_run_loop_->Quit();
}
}
void MockSellerWorklet::ConnectDevToolsAgent(
mojo::PendingAssociatedReceiver<blink::mojom::DevToolsAgent> agent,
uint32_t thread_index) {
ADD_FAILURE()
<< "ConnectDevToolsAgent should not be called on MockSellerWorklet";
}
void MockSellerWorklet::ResetReceiverWithReason(const std::string& reason) {
receiver_.ResetWithReason(/*custom_reason_code=*/0, 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.
MockSellerWorklet::ScoreAdParams MockSellerWorklet::WaitForScoreAd() {
DCHECK(!score_ad_run_loop_);
if (score_ad_params_.empty()) {
score_ad_run_loop_ = std::make_unique<base::RunLoop>();
score_ad_run_loop_->Run();
score_ad_run_loop_.reset();
DCHECK(!score_ad_params_.empty());
}
ScoreAdParams out = std::move(score_ad_params_.front());
score_ad_params_.pop_front();
return out;
}
void MockSellerWorklet::WaitForReportResult() {
DCHECK(!report_result_run_loop_);
if (!report_result_callback_) {
report_result_run_loop_ = std::make_unique<base::RunLoop>();
report_result_run_loop_->Run();
report_result_run_loop_.reset();
DCHECK(report_result_callback_);
}
}
void MockSellerWorklet::InvokeReportResultCallback(
std::optional<GURL> report_url,
base::flat_map<std::string, GURL> ad_beacon_map,
std::vector<auction_worklet::mojom::PrivateAggregationRequestPtr>
pa_requests,
std::vector<std::string> errors) {
DCHECK(report_result_callback_);
std::move(report_result_callback_)
.Run(/*signals_for_winner=*/std::nullopt, std::move(report_url),
ad_beacon_map, std::move(pa_requests),
auction_worklet::mojom::SellerTimingMetrics::New(
/*js_fetch_latency=*/js_fetch_latency_,
/*script_latency=*/reporting_latency_,
/*script_timed_out=*/script_timed_out_),
errors);
}
void MockSellerWorklet::Flush() {
receiver_.FlushForTesting();
}
MockAuctionProcessManager::MockAuctionProcessManager()
: DedicatedAuctionProcessManager(/*trusted_signals_cache=*/nullptr) {}
MockAuctionProcessManager::~MockAuctionProcessManager() = default;
AuctionProcessManager::WorkletProcess::ProcessContext
MockAuctionProcessManager::CreateProcessInternal(
WorkletProcess& worklet_process) {
mojo::PendingRemote<auction_worklet::mojom::AuctionWorkletService> service;
receiver_set_.Add(this, service.InitWithNewPipeAndPassReceiver(),
worklet_process.GetWeakPtrForTesting());
return WorkletProcess::ProcessContext(std::move(service));
}
void MockAuctionProcessManager::SetTrustedSignalsCache(
mojo::PendingRemote<auction_worklet::mojom::TrustedSignalsCache>
trusted_signals_cache) {}
void MockAuctionProcessManager::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) {
// `script_load` and `wasm_load` are destroyed without using them.
load_bidder_worklet_count_++;
last_load_bidder_worklet_threads_count_ = shared_storage_hosts.size();
// Make sure this request came over the right pipe, if the WorkletProcess
// hasn't been destroyed yet. Can't grab the origin on creation, as the origin
// may change in the case of processes that have not yet been bound to an
// origin.
WorkletProcess* worklet_process = receiver_set_.current_context().get();
if (worklet_process) {
EXPECT_EQ(worklet_process->origin(), url::Origin::Create(script_load->url));
EXPECT_EQ(worklet_process->worklet_type(),
AuctionProcessManager::WorkletType::kBidder);
}
EXPECT_EQ(0u, bidder_worklets_.count(script_load->url));
bidder_worklets_.emplace(
script_load->url, std::make_unique<MockBidderWorklet>(
std::move(bidder_worklet_receiver),
expected_per_buyer_timeouts_, skip_generate_bid_));
MaybeQuitWaitForWorkletsRunLoop();
}
void MockAuctionProcessManager::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) {
// `script_load` is destroyed without using it.
EXPECT_EQ(0u, seller_worklets_.count(script_load->url));
if (load_seller_worklet_client) {
mojo::Remote<auction_worklet::mojom::LoadSellerWorkletClient>(
std::move(load_seller_worklet_client))
->SellerWorkletLoaded(/*trusted_signals_url_allowed=*/true);
}
// Make sure this request came over the right pipe, if the WorkletProcess
// hasn't been destroyed yet. Can't grab the origin on creation, as the origin
// may change in the case of processes that have not yet been bound to an
// origin.
WorkletProcess* worklet_process = receiver_set_.current_context().get();
if (worklet_process) {
EXPECT_EQ(worklet_process->origin(), url::Origin::Create(script_load->url));
EXPECT_EQ(worklet_process->worklet_type(),
AuctionProcessManager::WorkletType::kSeller);
}
seller_worklets_.emplace(
script_load->url,
std::make_unique<MockSellerWorklet>(std::move(seller_worklet_receiver)));
MaybeQuitWaitForWorkletsRunLoop();
}
void MockAuctionProcessManager::SetExpectedBuyerBidTimeout(
const std::string& name,
base::TimeDelta value) {
expected_per_buyer_timeouts_[name] = value;
}
void MockAuctionProcessManager::WaitForWorklets(int num_bidders,
int num_sellers) {
DCHECK(!wait_for_worklets_run_loop_);
waiting_for_num_bidders_ = num_bidders;
waiting_for_num_sellers_ = num_sellers;
wait_for_worklets_run_loop_ = std::make_unique<base::RunLoop>();
MaybeQuitWaitForWorkletsRunLoop();
wait_for_worklets_run_loop_->Run();
wait_for_worklets_run_loop_.reset();
EXPECT_EQ(waiting_for_num_bidders_, bidder_worklets_.size());
EXPECT_EQ(waiting_for_num_sellers_, seller_worklets_.size());
waiting_for_num_bidders_ = 0;
waiting_for_num_sellers_ = 0;
}
void MockAuctionProcessManager::WaitForWinningBidderReload() {
WaitForWorklets(/*num_bidders=*/1, /*num_sellers=*/0);
}
void MockAuctionProcessManager::WaitForWinningSellerReload() {
WaitForWorklets(/*num_bidders=*/0, /*num_sellers=*/1);
}
std::unique_ptr<MockBidderWorklet> MockAuctionProcessManager::TakeBidderWorklet(
const GURL& script_source_url) {
auto it = bidder_worklets_.find(script_source_url);
if (it == bidder_worklets_.end()) {
return nullptr;
}
std::unique_ptr<MockBidderWorklet> out = std::move(it->second);
bidder_worklets_.erase(it);
return out;
}
std::unique_ptr<MockSellerWorklet> MockAuctionProcessManager::TakeSellerWorklet(
GURL script_source_url) {
if (seller_worklets_.empty()) {
return nullptr;
}
if (script_source_url.is_empty()) {
CHECK_EQ(1u, seller_worklets_.size());
script_source_url = seller_worklets_.begin()->first;
}
auto it = seller_worklets_.find(script_source_url);
if (it == seller_worklets_.end()) {
return nullptr;
}
std::unique_ptr<MockSellerWorklet> out = std::move(it->second);
seller_worklets_.erase(it);
return out;
}
void MockAuctionProcessManager::Flush() {
receiver_set_.FlushForTesting();
}
void MockAuctionProcessManager::MaybeQuitWaitForWorkletsRunLoop() {
if (wait_for_worklets_run_loop_ &&
bidder_worklets_.size() >= waiting_for_num_bidders_ &&
seller_worklets_.size() >= waiting_for_num_sellers_) {
wait_for_worklets_run_loop_->Quit();
}
}
} // namespace content
|