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
|
// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Provides a browsertest-based tool for running simulated auctions with
// custom parameters. The tool is useful for profiling hypothetical scenarios
// locally.
#include <cstddef>
#include <fstream>
#include <string_view>
#include "base/command_line.h"
#include "base/functional/bind.h"
#include "base/strings/strcat.h"
#include "base/strings/string_number_conversions.h"
#include "base/strings/stringprintf.h"
#include "base/task/sequenced_task_runner.h"
#include "base/task/single_thread_task_runner.h"
#include "base/test/gtest_util.h"
#include "base/test/launcher/test_launcher.h"
#include "base/test/scoped_feature_list.h"
#include "base/test/test_suite.h"
#include "base/time/time.h"
#include "base/values.h"
#include "build/build_config.h"
#include "content/browser/interest_group/ad_auction_service_impl.h"
#include "content/browser/interest_group/interest_group_manager_impl.h"
#include "content/public/browser/browser_context.h"
#include "content/public/common/content_client.h"
#include "content/public/common/content_features.h"
#include "content/public/test/browser_test.h"
#include "content/public/test/browser_test_utils.h"
#include "content/public/test/content_browser_test.h"
#include "content/public/test/content_browser_test_content_browser_client.h"
#include "content/public/test/content_browser_test_shell_main_delegate.h"
#include "content/public/test/content_browser_test_utils.h"
#include "content/public/test/content_test_suite_base.h"
#include "content/public/test/test_launcher.h"
#include "content/public/test/url_loader_interceptor.h"
#include "content/shell/browser/shell.h"
#include "content/shell/common/shell_switches.h"
#include "net/dns/mock_host_resolver.h"
#include "services/network/public/cpp/features.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/public/common/features.h"
#include "third_party/blink/public/common/interest_group/test_interest_group_builder.h"
#if BUILDFLAG(IS_WIN)
#include "base/win/win_util.h"
#endif // BUILDFLAG(IS_WIN)
namespace content {
namespace {
constexpr char kScoringLogicRelativeURL[] =
"/interest_group/generated_decision_logic.js";
constexpr char kBiddingLogicRelativeURL[] =
"/interest_group/generated_bidding_logic.js";
constexpr char kBiddingSignalsRelativeURL[] =
"/interest_group/generated_trusted_bidding_signals.json";
constexpr char kScoringSignalsRelativeURL[] =
"/interest_group/generated_trusted_scoring_signals.json";
constexpr char kFledgeScriptHeaders[] =
"HTTP/1.1 200 OK\n"
"Ad-Auction-Allowed: true\n";
// This function is a delay mechanism for bidding and scoring scripts. This
// function is used because Date() is disabled in worklets.
constexpr char kStallingJavascriptFunction[] = R"(
function runNAdditions(script_delay){
var i = 0;
for (var index = 0; index < script_delay; ++index) {
i = 67 + 239;
}
})";
class AllowAllContentBrowserClient
: public ContentBrowserTestContentBrowserClient {
public:
explicit AllowAllContentBrowserClient() = default;
AllowAllContentBrowserClient(const AllowAllContentBrowserClient&) = delete;
AllowAllContentBrowserClient& operator=(const AllowAllContentBrowserClient&) =
delete;
// ContentBrowserClient overrides:
bool IsInterestGroupAPIAllowed(
content::BrowserContext* browser_context,
content::RenderFrameHost* render_frame_host,
ContentBrowserClient::InterestGroupApiOperation operation,
const url::Origin& top_frame_origin,
const url::Origin& api_origin) override {
return true;
}
bool IsPrivacySandboxReportingDestinationAttested(
content::BrowserContext* browser_context,
const url::Origin& destination_origin,
content::PrivacySandboxInvokingAPI invoking_api) override {
return true;
}
};
class NetworkResponder {
public:
using ResponseHeaders = std::vector<std::pair<std::string, std::string>>;
NetworkResponder() = default;
NetworkResponder(const NetworkResponder&) = delete;
NetworkResponder& operator=(const NetworkResponder&) = delete;
void RegisterScoringScript(const std::string& url_path,
int script_delay,
int network_delay) {
std::string script =
kStallingJavascriptFunction + base::StringPrintf(R"(
function scoreAd(adMetadata, bid, auctionConfig, trustedScoringSignals,
browserSignals) {
runNAdditions(%d);
return {desirability: bid, allowComponentAuction: true};
})",
script_delay);
RegisterNetworkResponse(url_path, kStallingJavascriptFunction + script,
"application/javascript", network_delay);
}
void RegisterBidderScript(const std::string& url_path,
int script_delay,
int network_delay) {
std::string script =
kStallingJavascriptFunction + base::StringPrintf(R"(
function generateBid(
interestGroup, auctionSignals, perBuyerSignals, trustedBiddingSignals,
unusedBrowserSignals) {
const ad = interestGroup.ads[0];
let result = {'ad': ad, 'bid': ad.metadata['whether-to-bid'],
'render': ad.renderURL, 'allowComponentAuction': true};
runNAdditions(%d);
return result;
})",
script_delay);
RegisterNetworkResponse(url_path, script, "application/javascript",
network_delay);
}
void RegisterTrustedBiddingSignals(const std::string& url_path,
int network_delay) {
std::string json_response = R"({ "keys": { "key1": "1" } })";
RegisterNetworkResponse(url_path, json_response, "application/json",
network_delay,
"Ad-Auction-Bidding-Signals-Format-Version: 2\n");
}
void RegisterTrustedScoringSignals(const std::string& url_path,
int network_delay) {
std::string json_response = R"({ "keys": { "key1": "1" } })";
RegisterNetworkResponse(url_path, json_response, "application/json",
network_delay);
}
private:
struct Response {
std::string body;
std::string extra_headers;
std::string content_type;
base::TimeDelta network_delay;
};
void RegisterNetworkResponse(const std::string& url_path,
const std::string& body,
const std::string& content_type,
int network_delay,
std::string extra_headers = "") {
Response response;
response.body = body;
response.content_type = content_type;
response.extra_headers = extra_headers;
response.network_delay = base::Milliseconds(network_delay);
base::AutoLock auto_lock(response_map_lock_);
response_map_[url_path] = response;
}
bool RequestHandler(URLLoaderInterceptor::RequestParams* params) {
base::AutoLock auto_lock(response_map_lock_);
const auto it = response_map_.find(params->url_request.url.path());
if (it == response_map_.end()) {
return false;
}
base::SequencedTaskRunner::GetCurrentDefault()->PostDelayedTask(
FROM_HERE,
base::BindOnce(&NetworkResponder::DoDelayedResponse, it->second.body,
it->second.content_type, it->second.extra_headers,
std::move(params->client)),
it->second.network_delay);
return true;
}
static void DoDelayedResponse(
std::string body,
std::string content_type,
std::string extra_headers,
const mojo::Remote<network::mojom::URLLoaderClient> client) {
URLLoaderInterceptor::WriteResponse(
base::StrCat({kFledgeScriptHeaders, extra_headers,
"Content-type: ", content_type, "\n"}),
body, client.get());
}
base::Lock response_map_lock_;
// For each HTTPS request, we see if any path in the map matches the request
// path. If so, the server returns the mapped value string as the response.
base::flat_map<std::string, Response> response_map_
GUARDED_BY(response_map_lock_);
// Handles all network requests.
URLLoaderInterceptor network_interceptor_{
base::BindRepeating(&NetworkResponder::RequestHandler,
base::Unretained(this))};
};
class AdjustableAuction : public ContentBrowserTest {
public:
inline static std::string filename_to_save_histogram = "histograms.txt";
// Wait between joining interest groups and the first auction, measured in
// seconds.
inline static size_t kPreauctionLogicDelay = 5;
inline static size_t kAdsPerInterestGroup = 30;
inline static size_t kInterestGroupsPerOwner = 40;
inline static size_t kSellers = 1;
inline static size_t kOwners = 1;
inline static size_t kJoiningOrigins = 35;
inline static size_t kBiddingGroupsPerOwner = 30;
// Script delays measured in number of operations.
inline static size_t kBiddingLogicDelay = 20000000;
inline static size_t kScoringLogicDelay = 10000000;
// Network delays measured in milliseconds.
inline static size_t kBiddingNetworkDelay = 100;
inline static size_t kScoringNetworkDelay = 80;
inline static size_t kTrustedBiddingSignalsDelay = 200;
inline static size_t kTrustedScoringSignalsDelay = 100;
inline static size_t kAuctions = 1;
inline static bool kAuctionsAreParallel = false;
AdjustableAuction() {
feature_list_.InitWithFeatures(
/*enabled_features=*/
{network::features::kInterestGroupStorage,
blink::features::kAdInterestGroupAPI, blink::features::kFledge,
blink::features::kAllowURNsInIframes,
blink::features::kFledgeDirectFromSellerSignalsHeaderAdSlot},
/*disabled_features=*/
{blink::features::kFledgeEnforceKAnonymity,
features::kCookieDeprecationFacilitatedTesting});
}
~AdjustableAuction() override { content_browser_client_.reset(); }
void SetUpOnMainThread() override {
ContentBrowserTest::SetUpOnMainThread();
host_resolver()->AddRule("*", "127.0.0.1");
ASSERT_TRUE(embedded_test_server()->Start());
https_server_ = std::make_unique<net::EmbeddedTestServer>(
net::test_server::EmbeddedTestServer::TYPE_HTTPS);
https_server_->SetSSLConfig(net::EmbeddedTestServer::CERT_TEST_NAMES);
https_server_->AddDefaultHandlers(GetTestDataFilePath());
network_responder_ = std::make_unique<NetworkResponder>();
ASSERT_TRUE(https_server_->Start());
manager_ = static_cast<InterestGroupManagerImpl*>(
shell()
->web_contents()
->GetBrowserContext()
->GetDefaultStoragePartition()
->GetInterestGroupManager());
content_browser_client_ = std::make_unique<AllowAllContentBrowserClient>();
}
void TearDownOnMainThread() override {
manager_ = nullptr; // don't dangle once StoragePartition cleans it up.
network_responder_.reset();
ContentBrowserTest::TearDownOnMainThread();
}
// Bid on alternate interest groups until we run out of bidders or
// non-bidders. Then make the same decision for every remaining interest
// group.
// Choose to intersperse bids among the interest groups instead of
// bidding on the first `kBiddingGroupsPerOwner` for the following reason: If
// `kBiddingGroupsPerOwner` bids were done consecutively, the profile would be
// similar to having all interest groups bid if
// `kInterestGroupsPerOwner`=`kBiddingGroupsPerOwner`. For example, the
// overall auction latency with 50 bids among 60 interest groups may be the
// same as 50 bids among 50 interest groups, because the last bid will need to
// wait for scoring signals to be received.
bool BidDecision(size_t interest_group_index) {
if (kBiddingGroupsPerOwner > kInterestGroupsPerOwner) {
return true;
}
if (interest_group_index <
std::min(2 * kBiddingGroupsPerOwner,
2 * (kInterestGroupsPerOwner - kBiddingGroupsPerOwner))) {
return (interest_group_index % 2) == 0;
} else if (kBiddingGroupsPerOwner >
(kInterestGroupsPerOwner - kBiddingGroupsPerOwner)) {
return true;
}
return false;
}
content::EvalJsResult RunAuctionsAndWait(
const std::string& auction_config_json,
int n_auctions) {
return EvalJs(shell(), base::StringPrintf(
R"(
(async function() {
let auctionConfig = %s;
let nAuctions = %d;
try {
for (var i = 0; i < nAuctions; ++i){
await navigator.runAdAuction(auctionConfig);
}
} catch (e) {
return e.toString();
}
})())",
auction_config_json.c_str(), n_auctions));
}
content::EvalJsResult RunParallelAuctionsAndWait(
const std::string& auction_config_json,
int n_auctions) {
return EvalJs(shell(), base::StringPrintf(
R"(
(async function() {
let auctionConfig = %s;
let nAuctions = %d;
try {
const auction_configs = Array(nAuctions).fill(auctionConfig);
return await Promise.allSettled(auction_configs.map(async (t) =>
{await navigator.runAdAuction(t)}));
} catch (e) {
return e.toString();
}
})())",
auction_config_json.c_str(), n_auctions));
}
protected:
std::unique_ptr<net::EmbeddedTestServer> https_server_;
base::test::ScopedFeatureList feature_list_;
std::unique_ptr<AllowAllContentBrowserClient> content_browser_client_;
raw_ptr<InterestGroupManagerImpl> manager_;
std::unique_ptr<NetworkResponder> network_responder_;
};
IN_PROC_BROWSER_TEST_F(AdjustableAuction, RunAdjustableAuction) {
GURL test_url = https_server_->GetURL("a.test", "/page_with_iframe.html");
ASSERT_TRUE(NavigateToURL(shell(), test_url));
// Set up network responses.
network_responder_->RegisterScoringScript(
kScoringLogicRelativeURL, kScoringLogicDelay, kScoringNetworkDelay);
network_responder_->RegisterBidderScript(
kBiddingLogicRelativeURL, kBiddingLogicDelay, kBiddingNetworkDelay);
network_responder_->RegisterTrustedBiddingSignals(
kBiddingSignalsRelativeURL, kTrustedBiddingSignalsDelay);
network_responder_->RegisterTrustedScoringSignals(
kScoringSignalsRelativeURL, kTrustedScoringSignalsDelay);
// Join interest groups before running any auctions.
// Keep the buyers in a Value so that we can put this directly into the
// auction config.
base::Value::List buyers_for_auction;
for (size_t owner_i = 0; owner_i < kOwners; ++owner_i) {
std::string owner_str =
base::StrCat({"origin", base::NumberToString(owner_i), ".b.test"});
auto bidding_url =
https_server_->GetURL(owner_str, kBiddingLogicRelativeURL);
url::Origin owner_origin = url::Origin::Create(bidding_url);
buyers_for_auction.Append(owner_origin.GetURL().spec());
GURL bidding_signals_url =
https_server_->GetURL(owner_str, kBiddingSignalsRelativeURL);
size_t joining_origin_idx = 0;
for (size_t ig_i = 0; ig_i < kInterestGroupsPerOwner; ++ig_i) {
std::vector<blink::InterestGroup::Ad> ads;
bool whether_to_bid = BidDecision(ig_i);
for (size_t ad_i = 0; ad_i < kAdsPerInterestGroup; ++ad_i) {
GURL ad_url = https_server_->GetURL(
"c.test", base::StrCat({"/test?test_render_url_here_and_some_more_"
"words_for_extra_length",
base::NumberToString(ad_i)}));
std::string ad_metadata = base::StrCat(
{R"({"ad":"metadata","here":[1,2,3,4,5],"whether-to-bid":)",
base::NumberToString(whether_to_bid), R"(})"});
ads.emplace_back(ad_url, ad_metadata);
}
GURL joining_url = https_server_->GetURL(
base::StrCat(
{"join", base::NumberToString(joining_origin_idx), ".b.test"}),
"/");
manager_->JoinInterestGroup(
blink::TestInterestGroupBuilder(
/*owner=*/owner_origin,
/*name=*/base::NumberToString(ig_i))
.SetBiddingUrl(bidding_url)
.SetTrustedBiddingSignalsUrl(bidding_signals_url)
.SetTrustedBiddingSignalsKeys({{"key1"}})
.SetAds(ads)
.Build(),
joining_url);
joining_origin_idx = (joining_origin_idx + 1) % kJoiningOrigins;
}
}
// Sleeping here helps ensure all interest groups are joined before the
// auction starts. If we're profiling these auctions with perf, we can also
// set a matching delay there to skip profiling the set up of the test and
// auction.
base::PlatformThread::Sleep(base::Seconds(kPreauctionLogicDelay));
// Set up the auction config.
auto scoring_url = https_server_->GetURL("a.test", kScoringLogicRelativeURL);
auto scoring_signals_url =
https_server_->GetURL("a.test", kScoringSignalsRelativeURL);
// The resulting config will combine `config_template`, repeated `component`s,
// and `config_template_end`.
std::string config_template = R"({
seller: $1,
decisionLogicURL: $2,
componentAuctions: [)";
std::string component = R"({
seller: $1,
decisionLogicURL: $2,
trustedScoringSignalsURL: $3,
interestGroupBuyers: $4,
auctionSignals: {x: 1},
sellerSignals: {yet: 'more', info: 1},
sellerTimeout: 200,
perBuyerSignals: {$1: {even: 'more', x: 4.5}},
perBuyerTimeouts: {$1: 100, '*': 150}
})";
std::string config_template_end = R"(]
})";
for (size_t i = 0; i < kSellers; ++i) {
std::string end = i < kSellers - 1 ? "," : config_template_end;
config_template = base::StrCat({config_template, component, end});
}
std::string auction_config =
JsReplace(config_template, url::Origin::Create(test_url), scoring_url,
scoring_signals_url, std::move(buyers_for_auction));
// Run the auction(s).
base::HistogramTester histogram_tester;
if (kAuctionsAreParallel) {
RunParallelAuctionsAndWait(auction_config, kAuctions);
} else {
RunAuctionsAndWait(auction_config, kAuctions);
}
// Verify and save results.
histogram_tester.ExpectTotalCount("Ads.InterestGroup.Auction.LoadGroupsTime",
kAuctions * (kSellers + 1));
histogram_tester.ExpectBucketCount(
"Ads.InterestGroup.Auction.NumInterestGroups",
kInterestGroupsPerOwner * kOwners * kSellers, kAuctions);
histogram_tester.ExpectTotalCount("Ads.InterestGroup.Auction.Result2",
kAuctions);
histogram_tester.ExpectTotalCount(
"Ads.InterestGroup.Auction.AuctionWithWinnerTime", kAuctions);
content::FetchHistogramsFromChildProcesses();
std::ofstream histogram_file(filename_to_save_histogram);
histogram_file << histogram_tester.GetAllHistogramsRecorded();
histogram_file.close();
ASSERT_TRUE(histogram_file.good());
}
} // namespace
// Creating our own ContentTestSuiteBase and TestLauncherDelegate allows us to
// specify our own main function while still running the test above.
class AdjustableAuctionTestSuite : public ContentTestSuiteBase {
public:
AdjustableAuctionTestSuite(int argc, char** argv)
: ContentTestSuiteBase(argc, argv) {}
AdjustableAuctionTestSuite(const AdjustableAuctionTestSuite&) = delete;
AdjustableAuctionTestSuite& operator=(const AdjustableAuctionTestSuite&) =
delete;
~AdjustableAuctionTestSuite() override = default;
protected:
void Initialize() override {
// Browser tests are expected not to tear-down various globals.
base::TestSuite::DisableCheckForLeakedGlobals();
ContentTestSuiteBase::Initialize();
#if BUILDFLAG(IS_ANDROID)
RegisterInProcessThreads();
#endif
}
};
class AdjustableAuctionTestLauncherDelegate : public TestLauncherDelegate {
public:
AdjustableAuctionTestLauncherDelegate() = default;
AdjustableAuctionTestLauncherDelegate(
const AdjustableAuctionTestLauncherDelegate&) = delete;
AdjustableAuctionTestLauncherDelegate& operator=(
const AdjustableAuctionTestLauncherDelegate&) = delete;
~AdjustableAuctionTestLauncherDelegate() override = default;
int RunTestSuite(int argc, char** argv) override {
return AdjustableAuctionTestSuite(argc, argv).Run();
}
std::string GetUserDataDirectoryCommandLineSwitch() override {
return switches::kContentShellUserDataDir;
;
}
protected:
#if !BUILDFLAG(IS_ANDROID)
ContentMainDelegate* CreateContentMainDelegate() override {
return new ContentBrowserTestShellMainDelegate();
}
#endif
};
} // namespace content
void SetUpSizeTCommandlineArg(std::string switch_name, size_t* output) {
if (base::CommandLine::ForCurrentProcess()->HasSwitch(switch_name)) {
std::string param =
base::CommandLine::ForCurrentProcess()->GetSwitchValueASCII(
switch_name);
base::StringToSizeT(param, output);
}
}
void SetUpCommandLineArgs() {
// Filename to save UMA histograms from the auction.
if (base::CommandLine::ForCurrentProcess()->HasSwitch("hist-filename")) {
content::AdjustableAuction::filename_to_save_histogram =
base::CommandLine::ForCurrentProcess()->GetSwitchValueASCII(
"hist-filename");
}
// Whether to run auctions in parallel (or series) if more than one auction
// is specified.
if (base::CommandLine::ForCurrentProcess()->HasSwitch("auctions-parallel")) {
content::AdjustableAuction::kAuctionsAreParallel = true;
}
// The number of owners in the auction.
SetUpSizeTCommandlineArg("owners", &content::AdjustableAuction::kOwners);
// The number of ads per interest group.
SetUpSizeTCommandlineArg("ads-per-ig",
&content::AdjustableAuction::kAdsPerInterestGroup);
// The number of interest groups per owner.
SetUpSizeTCommandlineArg(
"ig-per-owner", &content::AdjustableAuction::kInterestGroupsPerOwner);
// The number of sellers participating in the auction.
SetUpSizeTCommandlineArg("sellers", &content::AdjustableAuction::kSellers);
// The number of unique joining origins to use among the `ig-per-owner`
// interest groups. If this number is greater than or equal to `ig-per-owner`,
// each interest group will use its own joining origin. If it's less, the
// joining origins will be assigned to each of the `ig-per-owner` in a
// round-robin -- this round-robin will reset for the next owner.
SetUpSizeTCommandlineArg("joining-origins",
&content::AdjustableAuction::kJoiningOrigins);
// The number of groups of the `ig-per-owner` interest groups that actually
// bid. Groups will alternate bidding and not bidding until there are
// `bidding-groups` bids or `ig-per-owner`-`bidding-groups` non-bids. The
// remaining groups will then make the same bidding decision.
SetUpSizeTCommandlineArg("bidding-groups",
&content::AdjustableAuction::kBiddingGroupsPerOwner);
// The number of top level auctions to run.
SetUpSizeTCommandlineArg("n-auctions",
&content::AdjustableAuction::kAuctions);
// The number of seconds to wait between joining interest groups and starting
// the auction. This delay is necessary to ensure that the database is not
// still busy joining interest groups when the auction starts.
SetUpSizeTCommandlineArg("preauction-delay",
&content::AdjustableAuction::kPreauctionLogicDelay);
// The number of additional operations to run in the bidding script to
// simulate various bidding script durations.
SetUpSizeTCommandlineArg("bidding-delay",
&content::AdjustableAuction::kBiddingLogicDelay);
// The number of additional operations to run in the scoring script to
// simulate various scoring script durations.
SetUpSizeTCommandlineArg("scoring-delay",
&content::AdjustableAuction::kScoringLogicDelay);
// A simulated "network" delay in downloading a bidding script, measured in
// milliseconds.
SetUpSizeTCommandlineArg("bidding-network-delay",
&content::AdjustableAuction::kBiddingNetworkDelay);
// A simulated "network" delay in downloading a scoring script, measured in
// milliseconds.
SetUpSizeTCommandlineArg("scoring-network-delay",
&content::AdjustableAuction::kScoringNetworkDelay);
// A simulated "network" delay in downloading trusted bidding signals,
// measured in milliseconds.
SetUpSizeTCommandlineArg(
"trusted-bidding-delay",
&content::AdjustableAuction::kTrustedBiddingSignalsDelay);
// A simulated "network" delay in downloading trusted scoring signals,
// measured in milliseconds.
SetUpSizeTCommandlineArg(
"trusted-scoring-delay",
&content::AdjustableAuction::kTrustedScoringSignalsDelay);
}
int main(int argc, char* argv[]) {
base::CommandLine::Init(argc, argv);
SetUpCommandLineArgs();
size_t parallel_jobs = base::NumParallelJobs(/*cores_per_job=*/2);
if (parallel_jobs == 0U) {
return 1;
}
#if BUILDFLAG(IS_WIN)
// Load and pin user32.dll to avoid having to load it once tests start while
// on the main thread loop where blocking calls are disallowed.
base::win::PinUser32();
#endif // BUILDFLAG(IS_WIN)
content::AdjustableAuctionTestLauncherDelegate launcher_delegate;
return LaunchTests(&launcher_delegate, parallel_jobs, argc, argv);
}
|