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
|
// 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.
#include "content/browser/loader/keep_alive_attribution_request_helper.h"
#include <memory>
#include <optional>
#include <utility>
#include <vector>
#include "base/check.h"
#include "base/memory/raw_ptr.h"
#include "base/memory/scoped_refptr.h"
#include "base/strings/to_string.h"
#include "base/test/metrics/histogram_tester.h"
#include "base/test/scoped_feature_list.h"
#include "base/test/task_environment.h"
#include "base/time/time.h"
#include "base/unguessable_token.h"
#include "components/attribution_reporting/attribution_src_request_status.h"
#include "components/attribution_reporting/constants.h"
#include "components/attribution_reporting/registration_eligibility.mojom-shared.h"
#include "components/attribution_reporting/suitable_origin.h"
#include "content/browser/attribution_reporting/attribution_background_registrations_id.h"
#include "content/browser/attribution_reporting/attribution_data_host_manager.h"
#include "content/browser/attribution_reporting/attribution_data_host_manager_impl.h"
#include "content/browser/attribution_reporting/attribution_os_level_manager.h"
#include "content/browser/attribution_reporting/attribution_suitable_context.h"
#include "content/browser/attribution_reporting/attribution_test_utils.h"
#include "content/browser/attribution_reporting/test/mock_attribution_manager.h"
#include "content/browser/storage_partition_impl.h"
#include "content/public/browser/content_browser_client.h"
#include "content/public/test/test_renderer_host.h"
#include "content/test/test_web_contents.h"
#include "net/http/http_response_headers.h"
#include "services/data_decoder/public/cpp/test_support/in_process_data_decoder.h"
#include "services/network/public/mojom/attribution.mojom-shared.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/public/common/features.h"
#include "third_party/blink/public/common/tokens/tokens.h"
#include "url/gurl.h"
#include "url/origin.h"
namespace content {
class KeepAliveAttributionRequestHelperTestPeer {
public:
static BackgroundRegistrationsId GetHelperId(
KeepAliveAttributionRequestHelper& helper) {
return helper.id_;
}
};
namespace {
using ::attribution_reporting::AttributionSrcRequestStatus;
using ::attribution_reporting::SuitableOrigin;
using ::attribution_reporting::mojom::RegistrationEligibility;
using ::network::mojom::AttributionReportingEligibility;
using ::testing::_;
using ::testing::AllOf;
using ::testing::Property;
using ::testing::Return;
constexpr char kRegisterSourceJson[] =
R"json({"destination":"https://destination.example"})json";
constexpr char kRegisterTriggerJson[] = R"json({ })json";
using attribution_reporting::kAttributionReportingRegisterOsSourceHeader;
using attribution_reporting::kAttributionReportingRegisterOsTriggerHeader;
using attribution_reporting::kAttributionReportingRegisterSourceHeader;
using attribution_reporting::kAttributionReportingRegisterTriggerHeader;
class KeepAliveAttributionRequestHelperTest : public RenderViewHostTestHarness {
public:
KeepAliveAttributionRequestHelperTest()
: RenderViewHostTestHarness(
base::test::TaskEnvironment::MainThreadType::UI,
base::test::TaskEnvironment::TimeSource::MOCK_TIME),
scoped_api_state_setting_(
AttributionOsLevelManager::ScopedApiStateForTesting(
AttributionOsLevelManager::ApiState::kEnabled)) {
scoped_feature_list_.InitWithFeatures(
{blink::features::kKeepAliveInBrowserMigration,
blink::features::kAttributionReportingInBrowserMigration},
{});
}
void SetUp() override {
RenderViewHostTestHarness::SetUp();
auto mock_manager = std::make_unique<MockAttributionManager>();
auto data_host_manager =
std::make_unique<AttributionDataHostManagerImpl>(mock_manager.get());
mock_manager->SetDataHostManager(std::move(data_host_manager));
mock_attribution_manager_ = mock_manager.get();
OverrideAttributionManager(std::move(mock_manager));
test_web_contents()->GetPrimaryMainFrame()->InitializeRenderFrameIfNeeded();
}
void TearDown() override {
// Avoids dangling ref to `mock_attribution_manager_`.
mock_attribution_manager_ = nullptr;
OverrideAttributionManager(nullptr);
RenderViewHostTestHarness::TearDown();
}
protected:
TestWebContents* test_web_contents() {
return static_cast<TestWebContents*>(web_contents());
}
MockAttributionManager* mock_attribution_manager() {
return mock_attribution_manager_;
}
base::test::ScopedFeatureList& scoped_feature_list() {
return scoped_feature_list_;
}
std::unique_ptr<KeepAliveAttributionRequestHelper> CreateValidHelper(
const GURL& reporting_url,
AttributionReportingEligibility eligibility =
AttributionReportingEligibility::kEventSourceOrTrigger,
const std::optional<base::UnguessableToken>& attribution_src_token =
std::nullopt,
const GURL& context_url = GURL("https://secure_source.com")) {
test_web_contents()->NavigateAndCommit(context_url);
auto helper = KeepAliveAttributionRequestHelper::CreateIfNeeded(
eligibility, reporting_url, attribution_src_token,
"devtools-request-id",
*AttributionSuitableContext::Create(
test_web_contents()->GetPrimaryMainFrame()));
CHECK(helper);
return helper;
}
private:
void OverrideAttributionManager(std::unique_ptr<AttributionManager> manager) {
static_cast<StoragePartitionImpl*>(
browser_context()->GetDefaultStoragePartition())
->OverrideAttributionManagerForTesting(std::move(manager));
}
base::test::ScopedFeatureList scoped_feature_list_;
AttributionOsLevelManager::ScopedApiStateForTesting scoped_api_state_setting_;
raw_ptr<MockAttributionManager> mock_attribution_manager_;
data_decoder::test::InProcessDataDecoder in_process_data_decoder_;
};
TEST_F(KeepAliveAttributionRequestHelperTest, SingleResponse) {
const GURL source_url = GURL("https://secure_source.com");
const GURL reporting_url("https://report.test");
auto helper = CreateValidHelper(
reporting_url, AttributionReportingEligibility::kEventSourceOrTrigger,
/*attribution_src_token=*/std::nullopt, source_url);
EXPECT_CALL(
*mock_attribution_manager(),
HandleSource(
AllOf(ImpressionOriginIs(*SuitableOrigin::Create(source_url)),
ReportingOriginIs(*SuitableOrigin::Create(reporting_url))),
test_web_contents()->GetPrimaryMainFrame()->GetGlobalId()))
.Times(1);
auto headers = base::MakeRefCounted<net::HttpResponseHeaders>("");
headers->SetHeader(kAttributionReportingRegisterSourceHeader,
kRegisterSourceJson);
helper->OnReceiveResponse(headers.get());
// Wait for parsing to complete
task_environment()->FastForwardBy(base::TimeDelta());
}
TEST_F(KeepAliveAttributionRequestHelperTest, NavigationSource) {
const std::optional<base::UnguessableToken> attribution_src_token =
base::UnguessableToken(blink::AttributionSrcToken());
const GURL reporting_url("https://report.test");
auto helper = CreateValidHelper(
reporting_url, AttributionReportingEligibility::kNavigationSource,
attribution_src_token);
// HandleSource won't be called given that we haven't setup an actual
// navigation necessary for the registration to complete. The fact that it
// isn't called confirms that the token is being used.
EXPECT_CALL(*mock_attribution_manager(), HandleSource).Times(0);
auto headers = base::MakeRefCounted<net::HttpResponseHeaders>("");
headers->SetHeader(kAttributionReportingRegisterSourceHeader,
kRegisterSourceJson);
helper->OnReceiveResponse(headers.get());
task_environment()->FastForwardBy(base::TimeDelta());
}
TEST_F(KeepAliveAttributionRequestHelperTest, ExtraResponsesAreIgnored) {
const GURL reporting_url("https://report.test");
auto helper = CreateValidHelper(reporting_url);
EXPECT_CALL(*mock_attribution_manager(), HandleSource).Times(1);
auto headers_1 = base::MakeRefCounted<net::HttpResponseHeaders>("");
headers_1->SetHeader(kAttributionReportingRegisterSourceHeader,
kRegisterSourceJson);
helper->OnReceiveResponse(headers_1.get());
auto headers_2 = base::MakeRefCounted<net::HttpResponseHeaders>("");
headers_2->SetHeader(kAttributionReportingRegisterSourceHeader,
kRegisterSourceJson);
// This a valid response, however the helper processed a response, i.e.,
// OnReceiveResponse was previously called. As such, this response should be
// ignored.
helper->OnReceiveResponse(headers_2.get());
// Wait for parsing to complete
task_environment()->FastForwardBy(base::TimeDelta());
}
TEST_F(KeepAliveAttributionRequestHelperTest,
UnexpectedResponsesWillBeIgnored) {
const GURL reporting_url("https://report.test");
auto helper = CreateValidHelper(reporting_url);
// The second response should be ignored as a helper can only
// process a single response.
EXPECT_CALL(*mock_attribution_manager(), HandleSource).Times(1);
auto headers_1 = base::MakeRefCounted<net::HttpResponseHeaders>("");
headers_1->SetHeader(kAttributionReportingRegisterSourceHeader,
kRegisterSourceJson);
helper->OnReceiveResponse(headers_1.get());
auto headers_2 = base::MakeRefCounted<net::HttpResponseHeaders>("");
headers_2->SetHeader(kAttributionReportingRegisterSourceHeader,
kRegisterSourceJson);
helper->OnReceiveResponse(headers_2.get());
// Wait for parsing to complete
task_environment()->FastForwardBy(base::TimeDelta());
}
TEST_F(KeepAliveAttributionRequestHelperTest, NoAttributionHeader) {
const GURL reporting_url("https://report.test");
auto helper = CreateValidHelper(reporting_url);
EXPECT_CALL(*mock_attribution_manager(), HandleSource).Times(0);
auto headers = base::MakeRefCounted<net::HttpResponseHeaders>("");
headers->SetHeader("random-header", kRegisterSourceJson);
helper->OnReceiveResponse(headers.get());
// Wait for parsing even if none is expected to avoid false positive.
task_environment()->FastForwardBy(base::TimeDelta());
}
TEST_F(KeepAliveAttributionRequestHelperTest, Cleanup) {
const GURL reporting_url("https://report.test");
auto helper = CreateValidHelper(reporting_url);
AttributionDataHostManager* host =
mock_attribution_manager()->GetDataHostManager();
CHECK(host);
BackgroundRegistrationsId background_id =
KeepAliveAttributionRequestHelperTestPeer::GetHelperId(*helper);
const auto headers = base::MakeRefCounted<net::HttpResponseHeaders>("");
headers->SetHeader(kAttributionReportingRegisterSourceHeader,
kRegisterSourceJson);
const auto attempt_to_register_data = [&]() -> bool {
return host->NotifyBackgroundRegistrationData(background_id, &(*headers),
reporting_url);
};
// Call twice to show that we can call multiple times to register multiple
// headers.
ASSERT_TRUE(attempt_to_register_data());
ASSERT_TRUE(attempt_to_register_data());
// reset without having received a response.
helper.reset();
task_environment()->FastForwardBy(base::TimeDelta());
// The registration should have been completed upon the helper being reset.
// Once completed, it is not longer possible to register headers with the id.
EXPECT_FALSE(attempt_to_register_data());
}
TEST_F(KeepAliveAttributionRequestHelperTest, RedirectChain) {
// 0 won't have any header
const GURL reporting_url_0("https://report-0.test");
EXPECT_CALL(
*mock_attribution_manager(),
HandleSource(ReportingOriginIs(*SuitableOrigin::Create(reporting_url_0)),
_))
.Times(0);
// 1 will have an empty header
const GURL reporting_url_1("https://report-1.test");
EXPECT_CALL(
*mock_attribution_manager(),
HandleSource(ReportingOriginIs(*SuitableOrigin::Create(reporting_url_1)),
_))
.Times(0);
// 2 will register a source
const GURL reporting_url_2("https://report-2.test");
EXPECT_CALL(
*mock_attribution_manager(),
HandleSource(ReportingOriginIs(*SuitableOrigin::Create(reporting_url_2)),
_))
.Times(1);
// 3 will register a trigger
const GURL reporting_url_3("https://report-3.test");
EXPECT_CALL(*mock_attribution_manager(),
HandleTrigger(Property(&AttributionTrigger::reporting_origin,
*SuitableOrigin::Create(reporting_url_3)),
_))
.Times(1);
// 4 is not suitable, so it's response should be ignored.
const GURL reporting_url_4("http://report-4.test");
// 5 will register a source.
const GURL reporting_url_5("https://report-5.test");
EXPECT_CALL(
*mock_attribution_manager(),
HandleSource(ReportingOriginIs(*SuitableOrigin::Create(reporting_url_5)),
_))
.Times(1);
// 6 will register an OS source
const GURL reporting_url_6("https://report-6.test");
// 7 will register an OS trigger
const GURL reporting_url_7("https://report-7.test");
EXPECT_CALL(*mock_attribution_manager(), HandleOsRegistration).Times(2);
auto helper = CreateValidHelper(reporting_url_0);
helper->OnReceiveRedirect(/*headers=*/nullptr, reporting_url_1);
auto headers_1 = base::MakeRefCounted<net::HttpResponseHeaders>("");
helper->OnReceiveRedirect(headers_1.get(), reporting_url_2);
auto headers_2 = base::MakeRefCounted<net::HttpResponseHeaders>("");
headers_2->SetHeader(kAttributionReportingRegisterSourceHeader,
kRegisterSourceJson);
helper->OnReceiveRedirect(headers_2.get(), reporting_url_3);
auto headers_3 = base::MakeRefCounted<net::HttpResponseHeaders>("");
headers_3->SetHeader(kAttributionReportingRegisterTriggerHeader,
kRegisterTriggerJson);
helper->OnReceiveRedirect(headers_3.get(), reporting_url_4);
auto headers_4 = base::MakeRefCounted<net::HttpResponseHeaders>("");
headers_4->SetHeader(kAttributionReportingRegisterSourceHeader,
kRegisterSourceJson);
helper->OnReceiveRedirect(headers_4.get(), reporting_url_5);
auto headers_5 = base::MakeRefCounted<net::HttpResponseHeaders>("");
headers_5->SetHeader(kAttributionReportingRegisterSourceHeader,
kRegisterSourceJson);
helper->OnReceiveRedirect(headers_5.get(), reporting_url_6);
auto headers_6 = base::MakeRefCounted<net::HttpResponseHeaders>("");
headers_6->SetHeader(kAttributionReportingRegisterOsSourceHeader,
R"("https://r.test/x")");
helper->OnReceiveRedirect(headers_6.get(), reporting_url_7);
auto headers_7 = base::MakeRefCounted<net::HttpResponseHeaders>("");
headers_7->SetHeader(kAttributionReportingRegisterOsTriggerHeader,
R"("https://r.test/x")");
helper->OnReceiveResponse(headers_7.get());
// Wait for parsing to complete
task_environment()->FastForwardBy(base::TimeDelta());
}
TEST_F(KeepAliveAttributionRequestHelperTest, HelperNotNeeded) {
const GURL reporting_url("https://report.test");
{ // insecure context origin
const GURL source_url("http://insecure.test");
test_web_contents()->NavigateAndCommit(source_url);
auto context = AttributionSuitableContext::Create(
test_web_contents()->GetPrimaryMainFrame());
EXPECT_FALSE(context.has_value());
}
{ // ineligible request - kEmpty
const GURL source_url("https://secure.test");
test_web_contents()->NavigateAndCommit(source_url);
auto context = AttributionSuitableContext::Create(
test_web_contents()->GetPrimaryMainFrame());
ASSERT_TRUE(context.has_value());
auto helper = KeepAliveAttributionRequestHelper::CreateIfNeeded(
AttributionReportingEligibility::kEmpty, reporting_url,
/*attribution_src_token=*/std::nullopt, "devtools-request-id",
context.value());
EXPECT_EQ(helper, nullptr);
}
{ // kAttributionReportingInBrowserMigration disabled
scoped_feature_list().Reset();
scoped_feature_list().InitAndDisableFeature(
blink::features::kAttributionReportingInBrowserMigration);
const GURL source_url("https://secure.test");
test_web_contents()->NavigateAndCommit(source_url);
auto context = AttributionSuitableContext::Create(
test_web_contents()->GetPrimaryMainFrame());
ASSERT_TRUE(context.has_value());
auto helper = KeepAliveAttributionRequestHelper::CreateIfNeeded(
AttributionReportingEligibility::kEventSourceOrTrigger, reporting_url,
/*attribution_src_token=*/std::nullopt, "devtools-request-id",
context.value());
EXPECT_EQ(helper, nullptr);
}
}
TEST_F(KeepAliveAttributionRequestHelperTest, Eligibility) {
const struct {
AttributionReportingEligibility eligibility;
bool can_register_source;
bool can_register_trigger;
} kTestCases[] = {
{
.eligibility = AttributionReportingEligibility::kUnset,
.can_register_source = false,
.can_register_trigger = true,
},
{
.eligibility = AttributionReportingEligibility::kTrigger,
.can_register_source = false,
.can_register_trigger = true,
},
{
.eligibility = AttributionReportingEligibility::kEventSource,
.can_register_source = true,
.can_register_trigger = false,
},
{
.eligibility = AttributionReportingEligibility::kNavigationSource,
.can_register_source = true,
.can_register_trigger = false,
},
{
.eligibility = AttributionReportingEligibility::kEventSourceOrTrigger,
.can_register_source = true,
.can_register_trigger = true,
},
};
for (const auto& test_case : kTestCases) {
const GURL reporting_url_0("https://report-source." +
base::ToString(test_case.eligibility));
const GURL reporting_url_1("https://report-trigger." +
base::ToString(test_case.eligibility));
EXPECT_CALL(
*mock_attribution_manager(),
HandleSource(
ReportingOriginIs(*SuitableOrigin::Create(reporting_url_0)), _))
.Times(test_case.can_register_source);
EXPECT_CALL(
*mock_attribution_manager(),
HandleTrigger(Property(&AttributionTrigger::reporting_origin,
*SuitableOrigin::Create(reporting_url_1)),
_))
.Times(test_case.can_register_trigger);
auto helper = CreateValidHelper(reporting_url_0, test_case.eligibility);
auto headers_0 = base::MakeRefCounted<net::HttpResponseHeaders>("");
headers_0->SetHeader(kAttributionReportingRegisterSourceHeader,
kRegisterSourceJson);
helper->OnReceiveRedirect(headers_0.get(), reporting_url_1);
auto headers_1 = base::MakeRefCounted<net::HttpResponseHeaders>("");
headers_1->SetHeader(kAttributionReportingRegisterTriggerHeader,
kRegisterTriggerJson);
helper->OnReceiveResponse(headers_1.get());
}
// Wait for parsing to complete
task_environment()->FastForwardBy(base::TimeDelta());
}
TEST_F(KeepAliveAttributionRequestHelperTest, AttributionSrcRequestStatus) {
const struct {
const char* desc;
// Whether the request should be redirected.
bool redirect_request;
// Whether the request was redirected upon the first redirect.
bool second_redirect_request;
// Whether the request should succeed.
bool make_request_succeed;
std::vector<base::Bucket> expected;
} kTestCases[] = {
{
"succeeded",
/*redirect_request=*/false,
/*second_redirect_request=*/false,
/*make_request_succeed=*/true,
{base::Bucket(AttributionSrcRequestStatus::kRequested, 1),
base::Bucket(AttributionSrcRequestStatus::kReceived, 1)},
},
{
"failed",
/*redirect_request=*/false,
/*second_redirect_request=*/false,
/*make_request_succeed=*/false,
{base::Bucket(AttributionSrcRequestStatus::kRequested, 1),
base::Bucket(AttributionSrcRequestStatus::kFailed, 1)},
},
{
"redirected and succeeded",
/*redirect_request=*/true,
/*second_redirect_request=*/false,
/*make_request_succeed=*/true,
{base::Bucket(AttributionSrcRequestStatus::kRequested, 1),
base::Bucket(AttributionSrcRequestStatus::kRedirected, 1),
base::Bucket(AttributionSrcRequestStatus::kReceivedAfterRedirected,
1)},
},
{
"redirected and failed",
/*redirect_request=*/true,
/*second_redirect_request=*/false,
/*make_request_succeed=*/false,
{base::Bucket(AttributionSrcRequestStatus::kRequested, 1),
base::Bucket(AttributionSrcRequestStatus::kRedirected, 1),
base::Bucket(AttributionSrcRequestStatus::kFailedAfterRedirected,
1)},
},
{
"redirected twice and succeeded",
/*redirect_request=*/true,
/*second_redirect_request=*/true,
/*make_request_succeed=*/true,
{base::Bucket(AttributionSrcRequestStatus::kRequested, 1),
base::Bucket(AttributionSrcRequestStatus::kRedirected, 1),
base::Bucket(AttributionSrcRequestStatus::kReceivedAfterRedirected,
1)},
},
{
"redirected twice and failed",
/*redirect_request=*/true,
/*second_redirect_request=*/true,
/*make_request_succeed=*/false,
{base::Bucket(AttributionSrcRequestStatus::kRequested, 1),
base::Bucket(AttributionSrcRequestStatus::kRedirected, 1),
base::Bucket(AttributionSrcRequestStatus::kFailedAfterRedirected,
1)},
},
};
const GURL reporting_url("https://report.test");
const GURL redirect_url("https://report.test/redirect");
constexpr char kAttributionSrcNavigationRequestStatusMetric[] =
"Conversions.AttributionSrcRequestStatus.Navigation.Browser";
for (const bool is_navigation : {false, true}) {
SCOPED_TRACE(is_navigation);
for (const auto& test_case : kTestCases) {
SCOPED_TRACE(test_case.desc);
base::HistogramTester histograms;
auto helper = CreateValidHelper(
reporting_url,
is_navigation
? AttributionReportingEligibility::kNavigationSource
: AttributionReportingEligibility::kEventSourceOrTrigger);
if (test_case.redirect_request) {
auto headers = net::HttpResponseHeaders::TryToCreate("");
helper->OnReceiveRedirect(headers.get(), redirect_url);
if (test_case.second_redirect_request) {
auto second_headers = net::HttpResponseHeaders::TryToCreate("");
helper->OnReceiveRedirect(second_headers.get(), redirect_url);
}
}
if (test_case.make_request_succeed) {
auto headers = net::HttpResponseHeaders::TryToCreate("");
helper->OnReceiveResponse(headers.get());
} else {
helper->OnError();
}
if (is_navigation) {
EXPECT_THAT(histograms.GetAllSamples(
kAttributionSrcNavigationRequestStatusMetric),
base::BucketsAreArray(test_case.expected));
} else {
histograms.ExpectTotalCount(
kAttributionSrcNavigationRequestStatusMetric, 0);
}
}
}
}
TEST_F(KeepAliveAttributionRequestHelperTest, CreateIfNeeded_MetricRecorded) {
const struct {
const char* desc;
GURL context_url;
network::mojom::AttributionReportingEligibility eligibility;
std::optional<attribution_reporting::AttributionSrcRequestStatus> expected;
} kTestCases[] = {
{
"insecure-navigation",
GURL("http://insecure-source.com"),
network::mojom::AttributionReportingEligibility::kNavigationSource,
attribution_reporting::AttributionSrcRequestStatus::kDropped,
},
{
"secure-navigation",
GURL("https://secure-source.com"),
network::mojom::AttributionReportingEligibility::kNavigationSource,
attribution_reporting::AttributionSrcRequestStatus::kRequested,
},
{
"insecure-non-navigation",
GURL("http://insecure-source.com"),
network::mojom::AttributionReportingEligibility::
kEventSourceOrTrigger,
std::nullopt,
},
{
"secure-non-navigation",
GURL("https://secure-source.com"),
network::mojom::AttributionReportingEligibility::
kEventSourceOrTrigger,
std::nullopt,
},
};
constexpr char kAttributionSrcNavigationRequestStatusMetric[] =
"Conversions.AttributionSrcRequestStatus.Navigation.Browser";
const GURL reporting_url("https://report.test");
for (const auto& test_case : kTestCases) {
SCOPED_TRACE(test_case.desc);
test_web_contents()->NavigateAndCommit(test_case.context_url);
auto context = AttributionSuitableContext::Create(
test_web_contents()->GetPrimaryMainFrame());
base::HistogramTester histograms;
KeepAliveAttributionRequestHelper::CreateIfNeeded(
test_case.eligibility, reporting_url,
/*attribution_src_token=*/std::nullopt, "devtools-request-id", context);
if (test_case.expected.has_value()) {
histograms.ExpectUniqueSample(
kAttributionSrcNavigationRequestStatusMetric, *test_case.expected, 1);
} else {
histograms.ExpectTotalCount(kAttributionSrcNavigationRequestStatusMetric,
0);
}
}
}
} // namespace
} // namespace content
|