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 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649
|
// Copyright 2025 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/btm/btm_page_visit_observer.h"
#include "base/feature_list.h"
#include "base/test/simple_test_clock.h"
#include "components/network_session_configurator/common/network_switches.h"
#include "components/ukm/content/source_url_recorder.h"
#include "content/browser/btm/btm_browsertest_utils.h"
#include "content/browser/btm/btm_page_visit_observer_test_utils.h"
#include "content/browser/btm/btm_test_utils.h"
#include "content/browser/btm/btm_utils.h"
#include "content/public/browser/web_contents.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_mock_cert_verifier.h"
#include "content/public/test/fenced_frame_test_util.h"
#include "content/public/test/prerender_test_util.h"
#include "content/shell/browser/shell.h"
#include "net/base/features.h"
#include "net/cert/cert_verify_result.h"
#include "net/dns/mock_host_resolver.h"
#include "net/http/http_status_code.h"
#include "net/test/cert_test_util.h"
#include "net/test/embedded_test_server/controllable_http_response.h"
#include "net/test/quic_simple_test_server.h"
#include "net/test/test_data_directory.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/public/mojom/frame/frame.mojom-shared.h"
#include "url/gurl.h"
#if !BUILDFLAG(IS_ANDROID)
#include "components/network_session_configurator/common/network_switches.h"
#include "content/browser/renderer_host/cookie_access_observers.h"
#include "content/public/browser/scoped_authenticator_environment_for_testing.h"
#include "content/public/common/content_switches.h"
#include "content/public/test/content_mock_cert_verifier.h"
#include "device/fido/virtual_ctap2_device.h"
#include "device/fido/virtual_fido_device_factory.h"
#endif
using testing::AllOf;
using testing::ElementsAre;
using testing::IsEmpty;
namespace content {
namespace {
using blink::mojom::StorageTypeAccessed;
class BtmPageVisitObserverBrowserTest : public ContentBrowserTest {
public:
BtmPageVisitObserverBrowserTest() {
// Needed to make QuicSimpleTestServer work on Android.
feature_list_.InitWithFeatures(
std::vector<base::test::FeatureRef>{
net::features::kSplitCacheByNetworkIsolationKey},
std::vector<base::test::FeatureRef>{
net::features::kMigrateSessionsOnNetworkChangeV2});
}
void SetUpOnMainThread() override {
host_resolver()->AddRule("*", "127.0.0.1");
embedded_https_test_server().AddDefaultHandlers(GetTestDataFilePath());
embedded_https_test_server().SetSSLConfig(
net::EmbeddedTestServer::CERT_TEST_NAMES);
ASSERT_TRUE(embedded_https_test_server().Start());
ukm_recorder_.emplace();
// Configure the certificate for the QUIC server.
auto test_cert =
net::ImportCertFromFile(net::GetTestCertsDirectory(), "quic-chain.pem");
net::CertVerifyResult verify_result;
verify_result.verified_cert = test_cert;
mock_cert_verifier_.mock_cert_verifier()->AddResultForCert(
test_cert, verify_result, net::OK);
mock_cert_verifier_.mock_cert_verifier()->set_default_result(net::OK);
}
void SetUpCommandLine(base::CommandLine* command_line) override {
ASSERT_TRUE(net::QuicSimpleTestServer::Start());
command_line->AppendSwitchASCII(
switches::kOriginToForceQuicOn,
net::QuicSimpleTestServer::GetHostPort().ToString());
mock_cert_verifier_.SetUpCommandLine(command_line);
}
void PreRunTestOnMainThread() override {
ContentBrowserTest::PreRunTestOnMainThread();
ukm::InitializeSourceUrlRecorderForWebContents(shell()->web_contents());
}
void TearDown() override {
// Needed by net::QuicSimpleTestServer::Shutdown() below.
base::ScopedAllowBaseSyncPrimitivesForTesting allow_wait;
net::QuicSimpleTestServer::Shutdown();
}
const ukm::TestAutoSetUkmRecorder& ukm_recorder() {
return ukm_recorder_.value();
}
void SetUpInProcessBrowserTestFixture() override {
mock_cert_verifier_.SetUpInProcessBrowserTestFixture();
}
void TearDownInProcessBrowserTestFixture() override {
mock_cert_verifier_.TearDownInProcessBrowserTestFixture();
}
protected:
GURL RegisterSubresourceQuicResponseWithCookies() {
constexpr static const char path[] = "/early.css";
quiche::HttpHeaderBlock response_headers;
response_headers[":path"] = path;
response_headers[":status"] = base::ToString(net::HTTP_OK);
response_headers["content-type"] = "text/css";
response_headers["cache-control"] = "max-age=3600";
response_headers["set-cookie"] = "foo=bar;";
net::QuicSimpleTestServer::AddResponse(path, std::move(response_headers),
"/* empty body */");
return net::QuicSimpleTestServer::GetFileURL(path);
}
GURL RegisterPageQuicResponseWithEarlyHints() {
constexpr static const char path[] = "/early_hints.html";
quiche::HttpHeaderBlock response_headers;
response_headers[":path"] = path;
response_headers[":status"] = base::ToString(net::HTTP_OK);
response_headers["content-type"] = "text/html";
// Early Hint header.
quiche::HttpHeaderBlock early_hint_header;
early_hint_header["link"] = "</early.css>; rel=preload; as=style";
std::vector<quiche::HttpHeaderBlock> early_hints;
early_hints.push_back(std::move(early_hint_header));
net::QuicSimpleTestServer::AddResponseWithEarlyHints(
path, std::move(response_headers),
R"(<link rel="stylesheet" href="/early.css" />)",
std::move(early_hints));
return net::QuicSimpleTestServer::GetFileURL(path);
}
GURL RegisterRedirectQuicResponseWithEarlyHints(const GURL& final_url) {
static constexpr const char path[] = "/redirect_with_early_hints.html";
quiche::HttpHeaderBlock response_headers;
response_headers[":path"] = path;
response_headers[":status"] = base::ToString(net::HTTP_FOUND);
response_headers["location"] = final_url.spec();
// Early Hint header.
quiche::HttpHeaderBlock early_hint_header;
early_hint_header["link"] = "</early.css>; rel=preload; as=style";
std::vector<quiche::HttpHeaderBlock> early_hints;
early_hints.push_back(std::move(early_hint_header));
net::QuicSimpleTestServer::AddResponseWithEarlyHints(
path, std::move(response_headers), /*response_body=*/"",
std::move(early_hints));
return net::QuicSimpleTestServer::GetFileURL(path);
}
GURL RegisterPageQuicResponse() {
static constexpr const char path[] = "/empty.html";
quiche::HttpHeaderBlock response_headers;
response_headers[":path"] = path;
response_headers[":status"] = base::ToString(net::HTTP_OK);
response_headers["content-type"] = "text/html";
net::QuicSimpleTestServer::AddResponse(path, std::move(response_headers),
/*response_body=*/"");
return net::QuicSimpleTestServer::GetFileURL(path);
}
std::optional<ukm::TestAutoSetUkmRecorder> ukm_recorder_;
base::test::ScopedFeatureList feature_list_;
ContentMockCertVerifier mock_cert_verifier_;
};
IN_PROC_BROWSER_TEST_F(BtmPageVisitObserverBrowserTest, SmokeTest) {
const GURL url1 =
embedded_https_test_server().GetURL("a.test", "/empty.html");
const GURL url2 =
embedded_https_test_server().GetURL("b.test", "/empty.html");
const GURL url3 =
embedded_https_test_server().GetURL("c.test", "/empty.html");
WebContents* web_contents = shell()->web_contents();
BtmPageVisitRecorder recorder(web_contents);
ASSERT_TRUE(NavigateToURL(web_contents, url1));
ASSERT_TRUE(NavigateToURL(web_contents, url2));
ASSERT_TRUE(NavigateToURL(web_contents, url3));
ASSERT_TRUE(recorder.WaitForSize(3));
EXPECT_THAT(recorder.visits()[0].prev_page, HasUrlAndSourceIdForBlankPage());
EXPECT_THAT(recorder.visits()[0].navigation.destination,
HasUrlAndMatchingSourceId(url1, &ukm_recorder()));
EXPECT_THAT(recorder.visits()[1].prev_page,
HasUrlAndMatchingSourceId(url1, &ukm_recorder()));
EXPECT_THAT(recorder.visits()[1].navigation.destination,
HasUrlAndMatchingSourceId(url2, &ukm_recorder()));
EXPECT_THAT(recorder.visits()[2].prev_page,
HasUrlAndMatchingSourceId(url2, &ukm_recorder()));
EXPECT_THAT(recorder.visits()[2].navigation.destination,
HasUrlAndMatchingSourceId(url3, &ukm_recorder()));
EXPECT_EQ(recorder.visits().size(), 3u);
}
IN_PROC_BROWSER_TEST_F(BtmPageVisitObserverBrowserTest, CreatedWhileOnPage) {
const GURL url1 =
embedded_https_test_server().GetURL("a.test", "/empty.html");
const GURL url2 =
embedded_https_test_server().GetURL("b.test", "/empty.html");
const GURL url3 =
embedded_https_test_server().GetURL("c.test", "/empty.html");
WebContents* web_contents = shell()->web_contents();
ASSERT_TRUE(NavigateToURL(web_contents, url1));
// Create the recorder (and thus the observer) while already at url1.
BtmPageVisitRecorder recorder(web_contents);
ASSERT_TRUE(NavigateToURL(web_contents, url2));
ASSERT_TRUE(NavigateToURL(web_contents, url3));
ASSERT_TRUE(recorder.WaitForSize(2));
const BtmPageVisitRecorder::VisitTuple& first_visit = recorder.visits()[0];
// Should be the URL we were on when observation started, instead of blank.
EXPECT_THAT(first_visit.prev_page,
HasUrlAndMatchingSourceId(url1, &ukm_recorder()));
EXPECT_THAT(first_visit.navigation.destination,
HasUrlAndMatchingSourceId(url2, &ukm_recorder()));
const BtmPageVisitRecorder::VisitTuple& second_visit = recorder.visits()[1];
EXPECT_THAT(second_visit.prev_page,
HasUrlAndMatchingSourceId(url2, &ukm_recorder()));
EXPECT_THAT(second_visit.navigation.destination,
HasUrlAndMatchingSourceId(url3, &ukm_recorder()));
EXPECT_EQ(recorder.visits().size(), 2u);
}
IN_PROC_BROWSER_TEST_F(BtmPageVisitObserverBrowserTest,
SameDocumentNavigation) {
const GURL url1 =
embedded_https_test_server().GetURL("a.test", "/fragment.html");
const GURL url1b =
embedded_https_test_server().GetURL("a.test", "/fragment.html#fragment");
const GURL url2 =
embedded_https_test_server().GetURL("b.test", "/fragment.html#fragment");
WebContents* web_contents = shell()->web_contents();
BtmPageVisitRecorder recorder(web_contents);
ASSERT_TRUE(NavigateToURL(web_contents, url1));
// Perform a same-document navigation to a fragment. `NavigateToURL()`
// automatically detects that the navigation should be same-document, since
// the URLs differ only by fragment.
ASSERT_TRUE(NavigateToURL(web_contents, url1b));
// Perform a cross-document navigation to a fragment
ASSERT_TRUE(NavigateToURL(web_contents, url2));
ASSERT_TRUE(recorder.WaitForSize(2));
const BtmPageVisitObserver::VisitTuple& first_visit = recorder.visits()[0];
EXPECT_THAT(first_visit.prev_page, HasUrlAndSourceIdForBlankPage());
EXPECT_THAT(first_visit.navigation.server_redirects, IsEmpty());
EXPECT_THAT(first_visit.navigation.destination,
HasUrlAndMatchingSourceId(url1, &ukm_recorder()));
const BtmPageVisitObserver::VisitTuple& second_visit = recorder.visits()[1];
EXPECT_THAT(second_visit.prev_page,
HasUrlAndMatchingSourceId(url1, &ukm_recorder()));
// Same-document navigations shouldn't be reported as server redirects.
EXPECT_THAT(first_visit.navigation.server_redirects, IsEmpty());
// Same-document navigations shouldn't be counted as page visits.
EXPECT_THAT(second_visit.navigation.destination,
HasUrlAndMatchingSourceId(url2, &ukm_recorder()));
EXPECT_EQ(recorder.visits().size(), 2u);
}
IN_PROC_BROWSER_TEST_F(BtmPageVisitObserverBrowserTest, Redirects) {
const GURL url1 =
embedded_https_test_server().GetURL("a.test", "/empty.html");
// url2 redirects to url2b which redirects to url3.
const GURL url2 = embedded_https_test_server().GetURL(
"b.test",
"/server-redirect-with-cookie?%2Fcross-site%3Fc.test%252Fempty.html");
const GURL url2b = embedded_https_test_server().GetURL(
"b.test", "/cross-site?c.test%2Fempty.html");
const GURL url3 =
embedded_https_test_server().GetURL("c.test", "/empty.html");
WebContents* web_contents = shell()->web_contents();
BtmPageVisitRecorder recorder(web_contents);
ASSERT_TRUE(NavigateToURL(web_contents, url1));
ASSERT_TRUE(NavigateToURL(web_contents, url2, url3));
ASSERT_TRUE(recorder.WaitForSize(2));
const BtmPageVisitObserver::VisitTuple& first_visit = recorder.visits()[0];
EXPECT_THAT(first_visit.prev_page, HasUrlAndSourceIdForBlankPage());
EXPECT_THAT(first_visit.navigation.server_redirects, IsEmpty());
EXPECT_THAT(first_visit.navigation.destination,
HasUrlAndMatchingSourceId(url1, &ukm_recorder()));
const BtmPageVisitObserver::VisitTuple& second_visit = recorder.visits()[1];
EXPECT_THAT(second_visit.prev_page,
HasUrlAndMatchingSourceId(url1, &ukm_recorder()));
EXPECT_EQ(second_visit.navigation.server_redirects.size(), 2u);
EXPECT_THAT(second_visit.navigation.destination,
HasUrlAndMatchingSourceId(url3, &ukm_recorder()));
const BtmServerRedirectInfo& first_server_redirect =
second_visit.navigation.server_redirects[0];
EXPECT_THAT(first_server_redirect,
HasUrlAndMatchingSourceId(url2, &ukm_recorder()));
EXPECT_TRUE(first_server_redirect.did_write_cookies);
const BtmServerRedirectInfo& second_server_redirect =
second_visit.navigation.server_redirects[1];
EXPECT_THAT(second_server_redirect,
HasUrlAndMatchingSourceId(url2b, &ukm_recorder()));
EXPECT_FALSE(second_server_redirect.did_write_cookies);
EXPECT_EQ(recorder.visits().size(), 2u);
}
IN_PROC_BROWSER_TEST_F(BtmPageVisitObserverBrowserTest, RedirectToSelf) {
// ControllableHttpResponse registers a request handler which is only
// allowed before EmbeddedTestServer is started, so we create a separate
// test server which we can start after constructing ControllableHttpResponse.
net::EmbeddedTestServer https_server(net::EmbeddedTestServer::TYPE_HTTPS);
https_server.AddDefaultHandlers(GetTestDataFilePath());
https_server.SetSSLConfig(net::EmbeddedTestServer::CERT_TEST_NAMES);
// Create a ControllableHttpResponse to intercept the first request to
// `title1.html`.
net::test_server::ControllableHttpResponse response(&https_server,
"/title1.html");
ASSERT_TRUE(https_server.Start());
const GURL url1 = https_server.GetURL("a.test", "/empty.html");
const GURL url2 = https_server.GetURL("b.test", "/title1.html");
const GURL url3 = https_server.GetURL("c.test", "/empty.html");
WebContents* web_contents = shell()->web_contents();
BtmPageVisitRecorder recorder(web_contents);
ASSERT_TRUE(NavigateToURL(web_contents, url1));
// Intercept the first navigation to `url2` and force it to redirect to
// itself.
TestNavigationObserver observer(web_contents);
shell()->LoadURL(url2);
response.WaitForRequest();
response.Send(net::HTTP_MOVED_PERMANENTLY, "text/html",
"<!doctype html><p>Redirecting to /title1.html",
/*cookies=*/{},
// Disable the cache otherwise the navigation will get stuck in
// an infinite redirection loop.
{"Location: /title1.html", "Cache-control: no-store"});
response.Done();
observer.Wait();
// Write cookies after the page redirects to itself, then navigate to `url3`.
ASSERT_TRUE(ExecJs(web_contents, "window.cookieStore.set('foo', 'bar');"));
ASSERT_TRUE(NavigateToURL(web_contents, url3));
ASSERT_TRUE(recorder.WaitForSize(3));
const BtmPageVisitObserver::VisitTuple& second_visit = recorder.visits()[1];
EXPECT_THAT(second_visit.navigation.destination,
HasUrlAndMatchingSourceId(url2, &ukm_recorder()));
EXPECT_EQ(second_visit.navigation.server_redirects.size(), 1u);
const BtmServerRedirectInfo& first_server_redirect =
second_visit.navigation.server_redirects[0];
EXPECT_THAT(first_server_redirect,
HasUrlAndMatchingSourceId(url2, &ukm_recorder()));
// A non-navigation cookie write shouldn't be attributed to previous
// redirects. (We sometimes incorrectly attribute them to previous redirects
// for navigation cookie writes.)
EXPECT_FALSE(first_server_redirect.did_write_cookies);
const BtmPageVisitObserver::VisitTuple& third_visit = recorder.visits()[2];
EXPECT_THAT(third_visit.prev_page,
HasUrlAndMatchingSourceId(url2, &ukm_recorder()));
// The non-navigation cookie write is correctly attributed to the previous
// page.
EXPECT_TRUE(third_visit.prev_page.had_active_storage_access);
EXPECT_THAT(third_visit.navigation.destination,
HasUrlAndMatchingSourceId(url3, &ukm_recorder()));
EXPECT_EQ(recorder.visits().size(), 3u);
}
IN_PROC_BROWSER_TEST_F(BtmPageVisitObserverBrowserTest, IframeRedirect) {
const GURL top_level_url1 = embedded_https_test_server().GetURL(
"a.test", "/page_with_blank_iframe.html");
// Set in //content/test/data/page_with_blank_iframe.html.
const std::string kIframeId = "test_iframe";
// Starts a chain of 2 server redirects.
const GURL iframe_redirector_url = embedded_https_test_server().GetURL(
"b.test", "/server-redirect?%2Fcross-site%3Fc.test%252Fempty.html");
const GURL top_level_url2 =
embedded_https_test_server().GetURL("d.test", "/empty.html");
WebContents* web_contents = shell()->web_contents();
BtmPageVisitRecorder recorder(web_contents);
ASSERT_TRUE(NavigateToURL(web_contents, top_level_url1));
ASSERT_TRUE(
NavigateIframeToURL(web_contents, kIframeId, iframe_redirector_url));
ASSERT_TRUE(NavigateToURL(web_contents, top_level_url2));
ASSERT_TRUE(recorder.WaitForSize(2));
const BtmPageVisitObserver::VisitTuple& first_visit = recorder.visits()[0];
EXPECT_THAT(first_visit.prev_page, HasUrlAndSourceIdForBlankPage());
EXPECT_THAT(first_visit.navigation.server_redirects, IsEmpty());
EXPECT_THAT(first_visit.navigation.destination,
HasUrlAndMatchingSourceId(top_level_url1, &ukm_recorder()));
const BtmPageVisitObserver::VisitTuple& second_visit = recorder.visits()[1];
EXPECT_THAT(second_visit.prev_page,
HasUrlAndMatchingSourceId(top_level_url1, &ukm_recorder()));
// Only redirects in top-level navigations should be reported; redirects in
// iframes should be ignored.
EXPECT_THAT(second_visit.navigation.server_redirects, IsEmpty());
EXPECT_THAT(second_visit.navigation.destination,
HasUrlAndMatchingSourceId(top_level_url2, &ukm_recorder()));
EXPECT_EQ(recorder.visits().size(), 2u);
}
IN_PROC_BROWSER_TEST_F(BtmPageVisitObserverBrowserTest, DocumentCookie) {
const GURL url1 =
embedded_https_test_server().GetURL("a.test", "/empty.html");
const GURL url2 =
embedded_https_test_server().GetURL("b.test", "/empty.html");
const GURL url3 =
embedded_https_test_server().GetURL("c.test", "/empty.html");
WebContents* web_contents = shell()->web_contents();
BtmPageVisitRecorder recorder(web_contents);
ASSERT_TRUE(NavigateToURL(web_contents, url1));
ASSERT_TRUE(NavigateToURL(web_contents, url2));
ASSERT_TRUE(ExecJs(web_contents, "document.cookie = 'foo=bar';"));
ASSERT_TRUE(NavigateToURL(web_contents, url3));
ASSERT_TRUE(recorder.WaitForSize(3));
const BtmPageVisitObserver::VisitTuple& first_visit = recorder.visits()[0];
EXPECT_THAT(first_visit.prev_page, HasUrlAndSourceIdForBlankPage());
EXPECT_FALSE(first_visit.prev_page.had_active_storage_access);
EXPECT_THAT(first_visit.navigation.destination,
HasUrlAndMatchingSourceId(url1, &ukm_recorder()));
const BtmPageVisitObserver::VisitTuple& second_visit = recorder.visits()[1];
EXPECT_THAT(second_visit.prev_page,
HasUrlAndMatchingSourceId(url1, &ukm_recorder()));
EXPECT_FALSE(second_visit.prev_page.had_active_storage_access);
EXPECT_THAT(second_visit.navigation.destination,
HasUrlAndMatchingSourceId(url2, &ukm_recorder()));
const BtmPageVisitObserver::VisitTuple& third_visit = recorder.visits()[2];
EXPECT_THAT(third_visit.prev_page,
HasUrlAndMatchingSourceId(url2, &ukm_recorder()));
// url2 accessed cookies; no other page did.
EXPECT_TRUE(third_visit.prev_page.had_active_storage_access);
EXPECT_THAT(third_visit.navigation.destination,
HasUrlAndMatchingSourceId(url3, &ukm_recorder()));
EXPECT_EQ(recorder.visits().size(), 3u);
}
IN_PROC_BROWSER_TEST_F(BtmPageVisitObserverBrowserTest, UserActivation) {
const GURL url1 =
embedded_https_test_server().GetURL("a.test", "/empty.html");
const GURL url2 =
embedded_https_test_server().GetURL("b.test", "/empty.html");
WebContents* web_contents = shell()->web_contents();
BtmPageVisitRecorder recorder(web_contents);
ASSERT_TRUE(NavigateToURL(web_contents, url1));
SimulateUserActivation(web_contents);
ASSERT_TRUE(NavigateToURL(web_contents, url2));
ASSERT_TRUE(recorder.WaitForSize(2));
const BtmPageVisitObserver::VisitTuple& first_visit = recorder.visits()[0];
EXPECT_THAT(first_visit.prev_page, HasUrlAndSourceIdForBlankPage());
EXPECT_FALSE(first_visit.prev_page.received_user_activation);
EXPECT_THAT(first_visit.navigation.destination,
HasUrlAndMatchingSourceId(url1, &ukm_recorder()));
const BtmPageVisitObserver::VisitTuple& second_visit = recorder.visits()[1];
EXPECT_THAT(second_visit.prev_page,
HasUrlAndMatchingSourceId(url1, &ukm_recorder()));
EXPECT_TRUE(second_visit.prev_page.received_user_activation);
EXPECT_THAT(second_visit.navigation.destination,
HasUrlAndMatchingSourceId(url2, &ukm_recorder()));
EXPECT_EQ(recorder.visits().size(), 2u);
}
IN_PROC_BROWSER_TEST_F(BtmPageVisitObserverBrowserTest, NavigationInitiation) {
const GURL url1 =
embedded_https_test_server().GetURL("a.test", "/empty.html");
const GURL url2 =
embedded_https_test_server().GetURL("b.test", "/empty.html");
const GURL url3 =
embedded_https_test_server().GetURL("c.test", "/empty.html");
WebContents* web_contents = shell()->web_contents();
BtmPageVisitRecorder recorder(web_contents);
// Perform a browser-initiated navigation.
ASSERT_TRUE(NavigateToURL(web_contents, url1));
// Perform a renderer-initiated navigation with user gesture.
ASSERT_TRUE(NavigateToURLFromRenderer(web_contents, url2));
// Perform a renderer-initiated navigation without user gesture.
ASSERT_TRUE(NavigateToURLFromRendererWithoutUserGesture(web_contents, url3));
ASSERT_TRUE(recorder.WaitForSize(3));
const BtmPageVisitObserver::VisitTuple& first_visit = recorder.visits()[0];
EXPECT_THAT(first_visit.prev_page, HasUrlAndSourceIdForBlankPage());
EXPECT_FALSE(first_visit.navigation.was_renderer_initiated);
EXPECT_TRUE(first_visit.navigation.was_user_initiated);
EXPECT_THAT(first_visit.navigation.destination,
HasUrlAndMatchingSourceId(url1, &ukm_recorder()));
const BtmPageVisitObserver::VisitTuple& second_visit = recorder.visits()[1];
EXPECT_THAT(second_visit.prev_page,
HasUrlAndMatchingSourceId(url1, &ukm_recorder()));
EXPECT_TRUE(second_visit.navigation.was_renderer_initiated);
EXPECT_TRUE(second_visit.navigation.was_user_initiated);
EXPECT_THAT(second_visit.navigation.destination,
HasUrlAndMatchingSourceId(url2, &ukm_recorder()));
const BtmPageVisitObserver::VisitTuple& third_visit = recorder.visits()[2];
EXPECT_THAT(third_visit.prev_page,
HasUrlAndMatchingSourceId(url2, &ukm_recorder()));
EXPECT_TRUE(third_visit.navigation.was_renderer_initiated);
EXPECT_FALSE(third_visit.navigation.was_user_initiated);
EXPECT_THAT(third_visit.navigation.destination,
HasUrlAndMatchingSourceId(url3, &ukm_recorder()));
EXPECT_EQ(recorder.visits().size(), 3u);
}
IN_PROC_BROWSER_TEST_F(BtmPageVisitObserverBrowserTest, VisitDuration) {
const GURL url1 =
embedded_https_test_server().GetURL("a.test", "/empty.html");
const GURL url2 =
embedded_https_test_server().GetURL("b.test", "/empty.html");
const GURL url3 =
embedded_https_test_server().GetURL("c.test", "/empty.html");
const base::TimeDelta time_elapsed_before_first_page_visit =
base::Microseconds(777);
const base::TimeDelta visit_duration1 = base::Minutes(2);
const base::TimeDelta visit_duration2 = base::Milliseconds(888);
WebContents* web_contents = shell()->web_contents();
base::SimpleTestClock test_clock;
test_clock.Advance(base::Hours(1));
BtmPageVisitRecorder recorder(web_contents, &test_clock);
test_clock.Advance(time_elapsed_before_first_page_visit);
ASSERT_TRUE(NavigateToURL(web_contents, url1));
test_clock.Advance(visit_duration1);
ASSERT_TRUE(NavigateToURL(web_contents, url2));
test_clock.Advance(visit_duration2);
ASSERT_TRUE(NavigateToURL(web_contents, url3));
ASSERT_TRUE(recorder.WaitForSize(3));
const BtmPageVisitObserver::VisitTuple& first_visit = recorder.visits()[0];
EXPECT_THAT(first_visit.prev_page, HasUrlAndSourceIdForBlankPage());
EXPECT_EQ(first_visit.prev_page.visit_duration,
time_elapsed_before_first_page_visit);
EXPECT_THAT(first_visit.navigation.destination,
HasUrlAndMatchingSourceId(url1, &ukm_recorder()));
const BtmPageVisitObserver::VisitTuple& second_visit = recorder.visits()[1];
EXPECT_THAT(second_visit.prev_page,
HasUrlAndMatchingSourceId(url1, &ukm_recorder()));
EXPECT_EQ(second_visit.prev_page.visit_duration, visit_duration1);
EXPECT_THAT(second_visit.navigation.destination,
HasUrlAndMatchingSourceId(url2, &ukm_recorder()));
const BtmPageVisitObserver::VisitTuple& third_visit = recorder.visits()[2];
EXPECT_THAT(third_visit.prev_page,
HasUrlAndMatchingSourceId(url2, &ukm_recorder()));
EXPECT_EQ(third_visit.prev_page.visit_duration, visit_duration2);
EXPECT_THAT(third_visit.navigation.destination,
HasUrlAndMatchingSourceId(url3, &ukm_recorder()));
EXPECT_EQ(recorder.visits().size(), 3u);
}
IN_PROC_BROWSER_TEST_F(BtmPageVisitObserverBrowserTest, PageTransition) {
const GURL url1 =
embedded_https_test_server().GetURL("a.test", "/empty.html");
const GURL url2 =
embedded_https_test_server().GetURL("b.test", "/empty.html");
const GURL url3 =
embedded_https_test_server().GetURL("c.test", "/empty.html");
const ui::PageTransition transition_type2 = ui::PAGE_TRANSITION_AUTO_BOOKMARK;
const ui::PageTransition transition_type3 = ui::PAGE_TRANSITION_LINK;
WebContents* web_contents = shell()->web_contents();
BtmPageVisitRecorder recorder(web_contents);
ASSERT_TRUE(NavigateToURL(web_contents, url1));
NavigationController::LoadURLParams navigation_params2(url2);
navigation_params2.transition_type = transition_type2;
NavigateToURLBlockUntilNavigationsComplete(web_contents, navigation_params2,
1);
NavigationController::LoadURLParams navigation_params3(url3);
navigation_params3.transition_type = transition_type3;
NavigateToURLBlockUntilNavigationsComplete(web_contents, navigation_params3,
1);
ASSERT_TRUE(recorder.WaitForSize(3));
const BtmPageVisitObserver::VisitTuple& first_visit = recorder.visits()[0];
EXPECT_THAT(first_visit.prev_page, HasUrlAndSourceIdForBlankPage());
EXPECT_THAT(first_visit.navigation.page_transition,
CoreTypeIs(ui::PageTransition::PAGE_TRANSITION_TYPED));
EXPECT_THAT(first_visit.navigation.destination,
HasUrlAndMatchingSourceId(url1, &ukm_recorder()));
const BtmPageVisitObserver::VisitTuple& second_visit = recorder.visits()[1];
EXPECT_THAT(second_visit.prev_page,
HasUrlAndMatchingSourceId(url1, &ukm_recorder()));
EXPECT_THAT(second_visit.navigation.page_transition,
CoreTypeIs(transition_type2));
EXPECT_THAT(second_visit.navigation.destination,
HasUrlAndMatchingSourceId(url2, &ukm_recorder()));
const BtmPageVisitObserver::VisitTuple& third_visit = recorder.visits()[2];
EXPECT_THAT(third_visit.prev_page,
HasUrlAndMatchingSourceId(url2, &ukm_recorder()));
EXPECT_THAT(third_visit.navigation.page_transition,
CoreTypeIs(transition_type3));
EXPECT_THAT(third_visit.navigation.destination,
HasUrlAndMatchingSourceId(url3, &ukm_recorder()));
EXPECT_EQ(recorder.visits().size(), 3u);
}
IN_PROC_BROWSER_TEST_F(BtmPageVisitObserverBrowserTest,
NavigationalCookieAccesses) {
const GURL url1 =
embedded_https_test_server().GetURL("a.test", "/set-cookie?foo=bar");
const GURL url2 =
embedded_https_test_server().GetURL("a.test", "/empty.html");
const GURL url3 =
embedded_https_test_server().GetURL("b.test", "/empty.html");
WebContents* web_contents = shell()->web_contents();
BtmPageVisitRecorder recorder(web_contents);
// Perform a navigational cookie write for a.test.
ASSERT_TRUE(NavigateToURL(web_contents, url1));
// Perform a navigational cookie read for a.test.
ASSERT_TRUE(NavigateToURL(web_contents, url2));
// End the second page visit on a.test by navigating away.
ASSERT_TRUE(NavigateToURL(web_contents, url3));
ASSERT_TRUE(recorder.WaitForSize(3));
const BtmPageVisitRecorder::VisitTuple& first_visit = recorder.visits()[0];
EXPECT_THAT(first_visit.prev_page, HasUrlAndSourceIdForBlankPage());
EXPECT_THAT(first_visit.navigation.destination,
HasUrlAndMatchingSourceId(url1, &ukm_recorder()));
const BtmPageVisitRecorder::VisitTuple& second_visit = recorder.visits()[1];
EXPECT_THAT(second_visit.prev_page,
HasUrlAndMatchingSourceId(url1, &ukm_recorder()));
// Navigational cookie writes are active storage accesses and should be
// reported.
EXPECT_TRUE(second_visit.prev_page.had_active_storage_access);
EXPECT_THAT(second_visit.navigation.destination,
HasUrlAndMatchingSourceId(url2, &ukm_recorder()));
const BtmPageVisitRecorder::VisitTuple& third_visit = recorder.visits()[2];
EXPECT_THAT(third_visit.prev_page,
HasUrlAndMatchingSourceId(url2, &ukm_recorder()));
// Navigational cookie reads are passive storage accesses and shouldn't be
// reported.
EXPECT_FALSE(third_visit.prev_page.had_active_storage_access);
EXPECT_THAT(third_visit.navigation.destination,
HasUrlAndMatchingSourceId(url3, &ukm_recorder()));
EXPECT_EQ(recorder.visits().size(), 3u);
}
IN_PROC_BROWSER_TEST_F(BtmPageVisitObserverBrowserTest,
DelayedNavigationalCookieAccesses) {
const GURL url1 =
embedded_https_test_server().GetURL("a.test", "/set-cookie?foo=bar");
const GURL url2 =
embedded_https_test_server().GetURL("b.test", "/empty.html");
WebContents* web_contents = shell()->web_contents();
CookieAccessInterceptor interceptor(*web_contents);
BtmPageVisitRecorder recorder(web_contents);
URLCookieAccessObserver access_observer(web_contents, url1,
CookieOperation::kChange);
// Perform a navigational cookie write for a.test.
ASSERT_TRUE(NavigateToURL(web_contents, url1));
// TODO: crbug.com/394059601 - Replace with Resume() once
// CookieAccessInterceptor supports frame accesses.
access_observer.Wait();
// End the page visit on `url1` by navigating away.
ASSERT_TRUE(NavigateToURL(web_contents, url2));
ASSERT_TRUE(recorder.WaitForSize(2));
const BtmPageVisitRecorder::VisitTuple& first_visit = recorder.visits()[0];
ASSERT_THAT(first_visit.navigation.destination,
HasUrlAndMatchingSourceId(url1, &ukm_recorder()));
const BtmPageVisitRecorder::VisitTuple& second_visit = recorder.visits()[1];
ASSERT_THAT(second_visit.navigation.destination,
HasUrlAndMatchingSourceId(url2, &ukm_recorder()));
ASSERT_THAT(second_visit.prev_page,
HasUrlAndMatchingSourceId(url1, &ukm_recorder()));
// Navigational cookie writes are active storage accesses and should be
// reported.
EXPECT_TRUE(second_visit.prev_page.had_active_storage_access);
}
IN_PROC_BROWSER_TEST_F(BtmPageVisitObserverBrowserTest,
DelayedServerRedirectCookieAccess) {
const GURL url1 = embedded_https_test_server().GetURL(
"a.test", "/server-redirect-with-cookie?/empty.html");
const GURL url1b =
embedded_https_test_server().GetURL("a.test", "/empty.html");
const GURL url2 =
embedded_https_test_server().GetURL("b.test", "/empty.html");
WebContents* web_contents = shell()->web_contents();
CookieAccessInterceptor interceptor(*web_contents);
BtmPageVisitRecorder recorder(web_contents);
URLCookieAccessObserver access_observer(web_contents, url1,
CookieOperation::kChange);
// Start a navigation to `url1` which will write cookies and redirect to
// `url1b`.
ASSERT_TRUE(NavigateToURL(web_contents, url1, url1b));
// TODO: crbug.com/394059601 - Replace with Resume() once
// CookieAccessInterceptor supports frame accesses.
access_observer.Wait();
// End the page visit on `url1b` by navigating away.
ASSERT_TRUE(NavigateToURL(web_contents, url2));
ASSERT_TRUE(recorder.WaitForSize(2));
const BtmPageVisitRecorder::VisitTuple& first_visit = recorder.visits()[0];
ASSERT_THAT(first_visit.navigation.destination,
HasUrlAndMatchingSourceId(url1b, &ukm_recorder()));
// The navigational cookie write of the redirect should be reported even
// if delayed.
EXPECT_TRUE(first_visit.navigation.server_redirects[0].did_write_cookies);
const BtmPageVisitRecorder::VisitTuple& second_visit = recorder.visits()[1];
ASSERT_THAT(second_visit.navigation.destination,
HasUrlAndMatchingSourceId(url2, &ukm_recorder()));
ASSERT_THAT(second_visit.prev_page,
HasUrlAndMatchingSourceId(url1b, &ukm_recorder()));
// The navigational cookie write was done by the redirect, not the page.
EXPECT_FALSE(second_visit.prev_page.had_active_storage_access);
}
IN_PROC_BROWSER_TEST_F(BtmPageVisitObserverBrowserTest, SubresourceCookie) {
const GURL url1 =
embedded_https_test_server().GetURL("a.test", "/empty.html");
const GURL url2 =
embedded_https_test_server().GetURL("b.test", "/empty.html");
const GURL url3 =
embedded_https_test_server().GetURL("c.test", "/empty.html");
WebContents* web_contents = shell()->web_contents();
BtmPageVisitRecorder recorder(web_contents);
ASSERT_TRUE(NavigateToURL(web_contents, url1));
ASSERT_TRUE(ExecJs(web_contents,
JsReplace(
R"(
let img = document.createElement('img');
img.src = $1;
document.body.appendChild(img);)",
"/set-cookie?foo=bar"),
EXECUTE_SCRIPT_NO_USER_GESTURE));
ASSERT_TRUE(NavigateToURL(web_contents, url2));
ASSERT_TRUE(NavigateToURL(web_contents, url3));
ASSERT_TRUE(recorder.WaitForSize(3));
const BtmPageVisitObserver::VisitTuple& first_visit = recorder.visits()[0];
EXPECT_THAT(first_visit.prev_page, HasUrlAndSourceIdForBlankPage());
EXPECT_FALSE(first_visit.prev_page.had_active_storage_access);
EXPECT_THAT(first_visit.navigation.destination,
HasUrlAndMatchingSourceId(url1, &ukm_recorder()));
const BtmPageVisitObserver::VisitTuple& second_visit = recorder.visits()[1];
EXPECT_THAT(second_visit.prev_page,
HasUrlAndMatchingSourceId(url1, &ukm_recorder()));
EXPECT_TRUE(second_visit.prev_page.had_active_storage_access);
EXPECT_THAT(second_visit.navigation.destination,
HasUrlAndMatchingSourceId(url2, &ukm_recorder()));
const BtmPageVisitObserver::VisitTuple& third_visit = recorder.visits()[2];
EXPECT_THAT(third_visit.prev_page,
HasUrlAndMatchingSourceId(url2, &ukm_recorder()));
EXPECT_FALSE(third_visit.prev_page.had_active_storage_access);
EXPECT_THAT(third_visit.navigation.destination,
HasUrlAndMatchingSourceId(url3, &ukm_recorder()));
EXPECT_EQ(recorder.visits().size(), 3u);
}
IN_PROC_BROWSER_TEST_F(BtmPageVisitObserverBrowserTest,
IframeNavigationCookie) {
const GURL url1 = embedded_https_test_server().GetURL(
"a.test", "/page_with_blank_iframe.html");
const GURL url2 = embedded_https_test_server().GetURL(
"b.test", "/page_with_blank_iframe.html");
const GURL url3 = embedded_https_test_server().GetURL(
"c.test", "/page_with_blank_iframe.html");
const GURL url4 =
embedded_https_test_server().GetURL("d.test", "/empty.html");
WebContents* web_contents = shell()->web_contents();
BtmPageVisitRecorder recorder(web_contents);
// End index-0 page visit; start index-1 page visit.
ASSERT_TRUE(NavigateToURL(web_contents, url1));
const GURL iframe_1p_cookie_url = embedded_https_test_server().GetURL(
url1.host_piece(), "/set-cookie?foo=bar");
ASSERT_TRUE(
NavigateIframeToURL(web_contents, "test_iframe", iframe_1p_cookie_url));
// End index-1 page visit; start index-2 page visit.
ASSERT_TRUE(NavigateToURL(web_contents, url2));
const GURL iframe_3p_unpartitioned_cookie_url =
embedded_https_test_server().GetURL(
"a.test", "/set-cookie?bar=baz;SameSite=None;Secure;");
ASSERT_TRUE(NavigateIframeToURL(web_contents, "test_iframe",
iframe_3p_unpartitioned_cookie_url));
// End index-2 page visit; start index-3 page visit.
ASSERT_TRUE(NavigateToURL(web_contents, url3));
const GURL iframe_3p_partitioned_cookie_url =
embedded_https_test_server().GetURL(
"a.test",
"/set-cookie?__Host-baz=quux;SameSite=None;Secure;Path=/"
";Partitioned;");
ASSERT_TRUE(NavigateIframeToURL(web_contents, "test_iframe",
iframe_3p_partitioned_cookie_url));
// End index-3 page visit.
ASSERT_TRUE(NavigateToURL(web_contents, url4));
ASSERT_TRUE(recorder.WaitForSize(4));
const BtmPageVisitObserver::VisitTuple& first_visit = recorder.visits()[0];
EXPECT_THAT(first_visit.prev_page, HasUrlAndSourceIdForBlankPage());
EXPECT_FALSE(first_visit.prev_page.had_active_storage_access);
EXPECT_THAT(first_visit.navigation.destination,
HasUrlAndMatchingSourceId(url1, &ukm_recorder()));
const BtmPageVisitObserver::VisitTuple& second_visit = recorder.visits()[1];
EXPECT_THAT(second_visit.prev_page,
HasUrlAndMatchingSourceId(url1, &ukm_recorder()));
// 1P cookie accesses in iframes should be reported.
EXPECT_TRUE(second_visit.prev_page.had_active_storage_access);
EXPECT_THAT(second_visit.navigation.destination,
HasUrlAndMatchingSourceId(url2, &ukm_recorder()));
const BtmPageVisitObserver::VisitTuple& third_visit = recorder.visits()[2];
EXPECT_THAT(third_visit.prev_page,
HasUrlAndMatchingSourceId(url2, &ukm_recorder()));
// Non-CHIPS 3P cookie accesses in iframes should be ignored.
EXPECT_FALSE(third_visit.prev_page.had_active_storage_access);
EXPECT_THAT(third_visit.navigation.destination,
HasUrlAndMatchingSourceId(url3, &ukm_recorder()));
const BtmPageVisitObserver::VisitTuple& fourth_visit = recorder.visits()[3];
EXPECT_THAT(fourth_visit.prev_page,
HasUrlAndMatchingSourceId(url3, &ukm_recorder()));
// CHIPS 3P cookie accesses in iframes should be reported.
EXPECT_TRUE(fourth_visit.prev_page.had_active_storage_access);
EXPECT_THAT(fourth_visit.navigation.destination,
HasUrlAndMatchingSourceId(url4, &ukm_recorder()));
EXPECT_EQ(recorder.visits().size(), 4u);
}
IN_PROC_BROWSER_TEST_F(BtmPageVisitObserverBrowserTest, IframeDocumentCookie) {
const GURL url1 =
embedded_https_test_server().GetURL("a.test", "/page_with_iframe.html");
const GURL url2 = embedded_https_test_server().GetURL(
"b.test", "/page_with_blank_iframe.html");
const GURL url3 = embedded_https_test_server().GetURL(
"c.test", "/page_with_blank_iframe.html");
const GURL url4 =
embedded_https_test_server().GetURL("d.test", "/empty.html");
WebContents* web_contents = shell()->web_contents();
BtmPageVisitRecorder recorder(web_contents);
// If the bfcache is disabled, we often don't receive cookie access
// notifications unless we wait for them before navigating away. If the
// bfcache *is* enabled, we *don't* want to wait — part of the point of this
// test is to make sure we properly handle late notifications.
bool should_await_cookie_access_notifications =
!base::FeatureList::IsEnabled(features::kBackForwardCache);
// End index-0 page visit; start index-1 page visit.
ASSERT_TRUE(NavigateToURL(web_contents, url1));
RenderFrameHost* iframe1 = ChildFrameAt(web_contents, 0);
FrameCookieAccessObserver cookie_observer1(web_contents, iframe1,
CookieOperation::kChange);
ASSERT_TRUE(ExecJs(iframe1, "document.cookie = '1PC=1';"));
if (should_await_cookie_access_notifications) {
cookie_observer1.Wait();
}
// End index-1 page visit; start index-2 page visit.
ASSERT_TRUE(NavigateToURL(web_contents, url2));
RenderFrameHost* iframe2 = ChildFrameAt(web_contents, 0);
ASSERT_TRUE(NavigateIframeToURL(
web_contents, "test_iframe",
embedded_https_test_server().GetURL("d.test", "/title1.html")));
iframe2 = ChildFrameAt(web_contents, 0);
FrameCookieAccessObserver cookie_observer2(web_contents, iframe2,
CookieOperation::kChange);
ASSERT_TRUE(
ExecJs(iframe2,
"document.cookie = "
"'__Host-CHIPS_3PC=1;SameSite=None;Secure;Path=/;Partitioned;';"));
if (should_await_cookie_access_notifications) {
cookie_observer2.Wait();
}
// End index-2 page visit; start index-3 page visit.
ASSERT_TRUE(NavigateToURL(web_contents, url3));
RenderFrameHost* iframe3 = ChildFrameAt(web_contents, 0);
ASSERT_TRUE(NavigateIframeToURL(
web_contents, "test_iframe",
embedded_https_test_server().GetURL("d.test", "/title1.html")));
iframe3 = ChildFrameAt(web_contents, 0);
FrameCookieAccessObserver cookie_observer3(web_contents, iframe3,
CookieOperation::kChange);
ASSERT_TRUE(ExecJs(
iframe3,
"document.cookie = 'unpartitioned_3PC=1;SameSite=None;Secure;Path=/;';"));
if (should_await_cookie_access_notifications) {
cookie_observer3.Wait();
}
// End index-3 page visit.
ASSERT_TRUE(NavigateToURL(web_contents, url4));
ASSERT_TRUE(recorder.WaitForSize(4));
const BtmPageVisitObserver::VisitTuple& first_visit = recorder.visits()[0];
EXPECT_THAT(first_visit.prev_page, HasUrlAndSourceIdForBlankPage());
EXPECT_FALSE(first_visit.prev_page.had_active_storage_access);
EXPECT_THAT(first_visit.navigation.destination,
HasUrlAndMatchingSourceId(url1, &ukm_recorder()));
const BtmPageVisitObserver::VisitTuple& second_visit = recorder.visits()[1];
EXPECT_THAT(second_visit.prev_page,
HasUrlAndMatchingSourceId(url1, &ukm_recorder()));
// Iframe 1P cookie accesses should be reported.
EXPECT_TRUE(second_visit.prev_page.had_active_storage_access);
EXPECT_THAT(second_visit.navigation.destination,
HasUrlAndMatchingSourceId(url2, &ukm_recorder()));
const BtmPageVisitObserver::VisitTuple& third_visit = recorder.visits()[2];
EXPECT_THAT(third_visit.prev_page,
HasUrlAndMatchingSourceId(url2, &ukm_recorder()));
// CHIPS 3PC accesses should be reported.
EXPECT_TRUE(third_visit.prev_page.had_active_storage_access);
EXPECT_THAT(third_visit.navigation.destination,
HasUrlAndMatchingSourceId(url3, &ukm_recorder()));
const BtmPageVisitObserver::VisitTuple& fourth_visit = recorder.visits()[3];
EXPECT_THAT(fourth_visit.prev_page,
HasUrlAndMatchingSourceId(url3, &ukm_recorder()));
// Non-CHIPS 3PC accesses should be ignored.
EXPECT_FALSE(fourth_visit.prev_page.had_active_storage_access);
EXPECT_THAT(fourth_visit.navigation.destination,
HasUrlAndMatchingSourceId(url4, &ukm_recorder()));
EXPECT_EQ(recorder.visits().size(), 4u);
}
IN_PROC_BROWSER_TEST_F(BtmPageVisitObserverBrowserTest,
IframeSubresourceCookie) {
const GURL url1 =
embedded_https_test_server().GetURL("a.test", "/page_with_iframe.html");
const GURL url2 =
embedded_https_test_server().GetURL("b.test", "/empty.html");
const GURL url3 =
embedded_https_test_server().GetURL("c.test", "/empty.html");
WebContents* web_contents = shell()->web_contents();
BtmPageVisitRecorder recorder(web_contents);
ASSERT_TRUE(NavigateToURL(web_contents, url1));
ASSERT_TRUE(ExecJs(ChildFrameAt(web_contents, 0),
JsReplace(
R"(
let img = document.createElement('img');
img.src = $1;
document.body.appendChild(img);)",
"/set-cookie?foo=bar"),
EXECUTE_SCRIPT_NO_USER_GESTURE));
ASSERT_TRUE(NavigateToURL(web_contents, url2));
ASSERT_TRUE(NavigateToURL(web_contents, url3));
ASSERT_TRUE(recorder.WaitForSize(3));
const BtmPageVisitObserver::VisitTuple& first_visit = recorder.visits()[0];
EXPECT_THAT(first_visit.prev_page, HasUrlAndSourceIdForBlankPage());
EXPECT_FALSE(first_visit.prev_page.had_active_storage_access);
EXPECT_THAT(first_visit.navigation.destination,
HasUrlAndMatchingSourceId(url1, &ukm_recorder()));
const BtmPageVisitObserver::VisitTuple& second_visit = recorder.visits()[1];
EXPECT_THAT(second_visit.prev_page,
HasUrlAndMatchingSourceId(url1, &ukm_recorder()));
EXPECT_TRUE(second_visit.prev_page.had_active_storage_access);
EXPECT_THAT(second_visit.navigation.destination,
HasUrlAndMatchingSourceId(url2, &ukm_recorder()));
const BtmPageVisitObserver::VisitTuple& third_visit = recorder.visits()[2];
EXPECT_THAT(third_visit.prev_page,
HasUrlAndMatchingSourceId(url2, &ukm_recorder()));
EXPECT_FALSE(third_visit.prev_page.had_active_storage_access);
EXPECT_THAT(third_visit.navigation.destination,
HasUrlAndMatchingSourceId(url3, &ukm_recorder()));
EXPECT_EQ(recorder.visits().size(), 3u);
}
IN_PROC_BROWSER_TEST_F(BtmPageVisitObserverBrowserTest,
EarlyHintsWithCookieWrite) {
GURL subresource_url = RegisterSubresourceQuicResponseWithCookies();
GURL url_with_early_hints = RegisterPageQuicResponseWithEarlyHints();
const GURL url2 =
embedded_https_test_server().GetURL("b.test", "/empty.html");
WebContents* web_contents = shell()->web_contents();
BtmPageVisitRecorder recorder(web_contents);
URLCookieAccessObserver access_observer(web_contents, subresource_url,
CookieOperation::kChange);
ASSERT_TRUE(NavigateToURL(web_contents, url_with_early_hints));
access_observer.Wait();
ASSERT_TRUE(NavigateToURL(web_contents, url2));
ASSERT_TRUE(recorder.WaitForSize(2));
const auto& first_visit = recorder.visits()[0];
EXPECT_THAT(first_visit.navigation.destination,
HasUrlAndMatchingSourceId(url_with_early_hints, &ukm_recorder()));
const auto& second_visit = recorder.visits()[1];
EXPECT_THAT(second_visit.navigation.destination,
HasUrlAndMatchingSourceId(url2, &ukm_recorder()));
// Currently cookie accesses by subresources loaded through early hints are
// ignored *if* the notification arrives through the
// OnCookiesAccessed(NavigationHandle*) override, otherwise they are
// attributed to the frame.
// TODO - https://crbug.com/408168195: Uncomment the line when we always
// attribute the access to the correct URL.
// EXPECT_TRUE(second_visit.prev_page.had_active_storage_access);
}
IN_PROC_BROWSER_TEST_F(BtmPageVisitObserverBrowserTest,
DelayedEarlyHintsWithCookieWrite) {
GURL subresource_url = RegisterSubresourceQuicResponseWithCookies();
GURL url_with_early_hints = RegisterPageQuicResponseWithEarlyHints();
const GURL url2 =
embedded_https_test_server().GetURL("b.test", "/empty.html");
WebContents* web_contents = shell()->web_contents();
BtmPageVisitRecorder recorder(web_contents);
CookieAccessInterceptor interceptor(*web_contents);
URLCookieAccessObserver access_observer(web_contents, subresource_url,
CookieOperation::kChange);
ASSERT_TRUE(NavigateToURL(web_contents, url_with_early_hints));
access_observer.Wait();
ASSERT_TRUE(NavigateToURL(web_contents, url2));
ASSERT_TRUE(recorder.WaitForSize(2));
const auto& first_visit = recorder.visits()[0];
EXPECT_THAT(first_visit.navigation.destination,
HasUrlAndMatchingSourceId(url_with_early_hints, &ukm_recorder()));
const auto& second_visit = recorder.visits()[1];
EXPECT_THAT(second_visit.navigation.destination,
HasUrlAndMatchingSourceId(url2, &ukm_recorder()));
// Delayed cookie accesses by subresources loaded through early hints are
// reported on the frame, so they are attributed to the visit.
EXPECT_TRUE(second_visit.prev_page.had_active_storage_access);
}
IN_PROC_BROWSER_TEST_F(BtmPageVisitObserverBrowserTest,
RedirectWithEarlyHints) {
const GURL subresource_url = RegisterSubresourceQuicResponseWithCookies();
const GURL destination_url = RegisterPageQuicResponse();
const GURL redirect_with_early_hints_url =
RegisterRedirectQuicResponseWithEarlyHints(destination_url);
const GURL url2 =
embedded_https_test_server().GetURL("b.test", "/empty.html");
WebContents* web_contents = shell()->web_contents();
BtmPageVisitRecorder recorder(web_contents);
URLCookieAccessObserver access_observer(web_contents, subresource_url,
CookieOperation::kChange);
ASSERT_TRUE(NavigateToURL(web_contents, redirect_with_early_hints_url,
destination_url));
access_observer.Wait();
ASSERT_TRUE(NavigateToURL(web_contents, url2));
ASSERT_TRUE(recorder.WaitForSize(2));
const auto& first_visit = recorder.visits()[0];
EXPECT_THAT(first_visit.navigation.destination,
HasUrlAndMatchingSourceId(destination_url, &ukm_recorder()));
EXPECT_THAT(first_visit.navigation.server_redirects[0],
HasUrlAndMatchingSourceId(redirect_with_early_hints_url,
&ukm_recorder()));
// Currently cookie accesses by subresources loaded through early hints are
// ignored.
// TODO - https://crbug.com/408168195: Switch to EXPECT_TRUE once we can
// correctly attribute these accesses.
EXPECT_FALSE(first_visit.navigation.server_redirects[0].did_write_cookies);
const auto& second_visit = recorder.visits()[1];
EXPECT_THAT(second_visit.navigation.destination,
HasUrlAndMatchingSourceId(url2, &ukm_recorder()));
EXPECT_FALSE(second_visit.prev_page.had_active_storage_access);
}
IN_PROC_BROWSER_TEST_F(BtmPageVisitObserverBrowserTest,
DelayedRedirectWithEarlyHints) {
const GURL subresource_url = RegisterSubresourceQuicResponseWithCookies();
const GURL destination_url = RegisterPageQuicResponse();
const GURL redirect_with_early_hints_url =
RegisterRedirectQuicResponseWithEarlyHints(destination_url);
const GURL url2 =
embedded_https_test_server().GetURL("b.test", "/empty.html");
WebContents* web_contents = shell()->web_contents();
BtmPageVisitRecorder recorder(web_contents);
CookieAccessInterceptor interceptor(*web_contents);
URLCookieAccessObserver access_observer(web_contents, subresource_url,
CookieOperation::kChange);
ASSERT_TRUE(NavigateToURL(web_contents, redirect_with_early_hints_url,
destination_url));
access_observer.Wait();
ASSERT_TRUE(NavigateToURL(web_contents, url2));
ASSERT_TRUE(recorder.WaitForSize(2));
const auto& first_visit = recorder.visits()[0];
EXPECT_THAT(first_visit.navigation.destination,
HasUrlAndMatchingSourceId(destination_url, &ukm_recorder()));
EXPECT_THAT(first_visit.navigation.server_redirects[0],
HasUrlAndMatchingSourceId(redirect_with_early_hints_url,
&ukm_recorder()));
// Currently cookie accesses by subresources loaded through early hints are
// ignored.
// TODO - https://crbug.com/408168195: Switch to EXPECT_TRUE once we can
// correctly attribute these accesses.
EXPECT_FALSE(first_visit.navigation.server_redirects[0].did_write_cookies);
const auto& second_visit = recorder.visits()[1];
EXPECT_THAT(second_visit.navigation.destination,
HasUrlAndMatchingSourceId(url2, &ukm_recorder()));
// Delayed cookie accesses by subresources loaded through early hints from a
// redirect are incorrectly reported on the frame, so they are attributed to
// the visit.
// TODO - https://crbug.com/408168195: Switch to EXPECT_TRUE once we can
// correctly attribute these accesses.
EXPECT_TRUE(second_visit.prev_page.had_active_storage_access);
}
class BtmPageVisitObserverClientRedirectBrowserTest
: public BtmPageVisitObserverBrowserTest,
public testing::WithParamInterface<BtmClientRedirectMethod> {
protected:
BtmClientRedirectMethod client_redirect_type() { return GetParam(); }
};
IN_PROC_BROWSER_TEST_P(BtmPageVisitObserverClientRedirectBrowserTest,
ClientRedirect) {
const GURL url1 =
embedded_https_test_server().GetURL("a.test", "/empty.html");
const GURL url2 =
embedded_https_test_server().GetURL("b.test", "/empty.html");
const GURL url3 =
embedded_https_test_server().GetURL("c.test", "/empty.html");
WebContents* web_contents = shell()->web_contents();
BtmPageVisitRecorder recorder(web_contents);
ASSERT_TRUE(NavigateToURL(web_contents, url1));
ASSERT_TRUE(NavigateToURL(web_contents, url2));
ASSERT_TRUE(
PerformClientRedirect(client_redirect_type(), web_contents, url3));
ASSERT_TRUE(recorder.WaitForSize(3));
const BtmPageVisitObserver::VisitTuple& first_visit = recorder.visits()[0];
EXPECT_THAT(first_visit.prev_page, HasUrlAndSourceIdForBlankPage());
// The client redirector shouldn't be reported as a server redirector.
EXPECT_THAT(first_visit.navigation.server_redirects, IsEmpty());
// The client redirector should be reported as a page visit instead.
EXPECT_THAT(first_visit.navigation.destination,
HasUrlAndMatchingSourceId(url1, &ukm_recorder()));
const BtmPageVisitObserver::VisitTuple& second_visit = recorder.visits()[1];
EXPECT_THAT(second_visit.prev_page,
HasUrlAndMatchingSourceId(url1, &ukm_recorder()));
EXPECT_THAT(second_visit.navigation.server_redirects, IsEmpty());
EXPECT_THAT(second_visit.navigation.destination,
HasUrlAndMatchingSourceId(url2, &ukm_recorder()));
const BtmPageVisitObserver::VisitTuple& third_visit = recorder.visits()[2];
EXPECT_THAT(third_visit.prev_page,
HasUrlAndMatchingSourceId(url2, &ukm_recorder()));
EXPECT_THAT(third_visit.navigation.server_redirects, IsEmpty());
EXPECT_THAT(third_visit.navigation.destination,
HasUrlAndMatchingSourceId(url3, &ukm_recorder()));
EXPECT_EQ(recorder.visits().size(), 3u);
}
IN_PROC_BROWSER_TEST_P(BtmPageVisitObserverClientRedirectBrowserTest,
MixOfClientAndServerRedirects) {
const GURL url1 = embedded_https_test_server().GetURL(
"a.test", "/cross-site?b.test%2Fempty.html");
const GURL url2 =
embedded_https_test_server().GetURL("b.test", "/empty.html");
const GURL url3 = embedded_https_test_server().GetURL(
"c.test", "/cross-site-with-cookie?d.test%2Fempty.html");
const GURL url4 =
embedded_https_test_server().GetURL("d.test", "/empty.html");
WebContents* web_contents = shell()->web_contents();
BtmPageVisitRecorder recorder(web_contents);
// Navigate to a.test, which server-redirects to b.test.
ASSERT_TRUE(NavigateToURL(web_contents, url1, url2));
// Client-redirect from b.test to c.test, which in turn server-redirects to
// d.test.
ASSERT_TRUE(
PerformClientRedirect(client_redirect_type(), web_contents, url3, url4));
ASSERT_TRUE(recorder.WaitForSize(2));
const BtmPageVisitObserver::VisitTuple& first_visit = recorder.visits()[0];
EXPECT_THAT(first_visit.prev_page, HasUrlAndSourceIdForBlankPage());
// Server redirector should be reported with correct URL, source ID, and
// cookie access.
EXPECT_EQ(first_visit.navigation.server_redirects.size(), 1u);
EXPECT_THAT(first_visit.navigation.server_redirects[0],
HasUrlAndMatchingSourceId(url1, &ukm_recorder()));
EXPECT_FALSE(first_visit.navigation.server_redirects[0].did_write_cookies);
// Client redirectors should be reported as page visits.
EXPECT_THAT(first_visit.navigation.destination,
HasUrlAndMatchingSourceId(url2, &ukm_recorder()));
const BtmPageVisitObserver::VisitTuple& second_visit = recorder.visits()[1];
EXPECT_THAT(second_visit.prev_page,
HasUrlAndMatchingSourceId(url2, &ukm_recorder()));
// Server redirector should be reported with correct URL, source ID, and
// cookie access.
EXPECT_EQ(second_visit.navigation.server_redirects.size(), 1u);
EXPECT_THAT(second_visit.navigation.server_redirects[0],
HasUrlAndMatchingSourceId(url3, &ukm_recorder()));
EXPECT_TRUE(second_visit.navigation.server_redirects[0].did_write_cookies);
EXPECT_THAT(second_visit.navigation.destination,
HasUrlAndMatchingSourceId(url4, &ukm_recorder()));
EXPECT_EQ(recorder.visits().size(), 2u);
}
INSTANTIATE_TEST_SUITE_P(
All,
BtmPageVisitObserverClientRedirectBrowserTest,
kAllBtmClientRedirectMethods,
[](const testing::TestParamInfo<
BtmPageVisitObserverClientRedirectBrowserTest::ParamType>& param_info) {
BtmClientRedirectMethod client_redirect_method = param_info.param;
return StringifyBtmClientRedirectMethod(client_redirect_method);
});
class BtmPageVisitObserverSiteDataAccessBrowserTest
: public BtmPageVisitObserverBrowserTest,
public testing::WithParamInterface<StorageTypeAccessed> {
public:
BtmPageVisitObserverSiteDataAccessBrowserTest()
: prerender_test_helper_(
base::BindRepeating(&BtmPageVisitObserverSiteDataAccessBrowserTest::
GetActiveWebContents,
base::Unretained(this))) {}
void SetUpOnMainThread() override {
BtmPageVisitObserverBrowserTest::SetUpOnMainThread();
prerender_test_helper_.RegisterServerRequestMonitor(embedded_test_server());
}
WebContents* GetActiveWebContents() { return shell()->web_contents(); }
auto* fenced_frame_test_helper() { return &fenced_frame_test_helper_; }
auto* prerender_test_helper() { return &prerender_test_helper_; }
private:
test::FencedFrameTestHelper fenced_frame_test_helper_;
test::PrerenderTestHelper prerender_test_helper_;
};
IN_PROC_BROWSER_TEST_P(BtmPageVisitObserverSiteDataAccessBrowserTest,
PrimaryMainFrameAccess) {
const GURL url1 =
embedded_https_test_server().GetURL("a.test", "/empty.html");
const GURL url2 =
embedded_https_test_server().GetURL("b.test", "/empty.html");
const GURL url3 =
embedded_https_test_server().GetURL("c.test", "/empty.html");
WebContents* web_contents = shell()->web_contents();
BtmPageVisitRecorder recorder(web_contents);
ASSERT_TRUE(NavigateToURL(web_contents, url1));
ASSERT_TRUE(AccessStorage(web_contents->GetPrimaryMainFrame(), GetParam()));
ASSERT_TRUE(NavigateToURL(web_contents, url2));
ASSERT_TRUE(NavigateToURL(web_contents, url3));
ASSERT_TRUE(recorder.WaitForSize(3));
const BtmPageVisitObserver::VisitTuple& first_visit = recorder.visits()[0];
EXPECT_THAT(first_visit.prev_page, HasUrlAndSourceIdForBlankPage());
EXPECT_FALSE(first_visit.prev_page.had_active_storage_access);
EXPECT_THAT(first_visit.navigation.destination,
HasUrlAndMatchingSourceId(url1, &ukm_recorder()));
const BtmPageVisitObserver::VisitTuple& second_visit = recorder.visits()[1];
EXPECT_THAT(second_visit.prev_page,
HasUrlAndMatchingSourceId(url1, &ukm_recorder()));
// Storage accesses by the primary main frame should be attributed to that
// page's visit.
EXPECT_TRUE(second_visit.prev_page.had_active_storage_access);
EXPECT_THAT(second_visit.navigation.destination,
HasUrlAndMatchingSourceId(url2, &ukm_recorder()));
const BtmPageVisitObserver::VisitTuple& third_visit = recorder.visits()[2];
EXPECT_THAT(third_visit.prev_page,
HasUrlAndMatchingSourceId(url2, &ukm_recorder()));
EXPECT_FALSE(third_visit.prev_page.had_active_storage_access);
EXPECT_THAT(third_visit.navigation.destination,
HasUrlAndMatchingSourceId(url3, &ukm_recorder()));
EXPECT_EQ(recorder.visits().size(), 3u);
}
IN_PROC_BROWSER_TEST_P(BtmPageVisitObserverSiteDataAccessBrowserTest,
IframeAccess) {
const GURL url1 = embedded_https_test_server().GetURL(
"a.test", "/page_with_blank_iframe.html");
const GURL url2 =
embedded_https_test_server().GetURL("b.test", "/empty.html");
const GURL url3 =
embedded_https_test_server().GetURL("c.test", "/empty.html");
WebContents* web_contents = shell()->web_contents();
BtmPageVisitRecorder recorder(web_contents);
ASSERT_TRUE(NavigateToURL(web_contents, url1));
RenderFrameHost* iframe = ChildFrameAt(web_contents, 0);
ASSERT_TRUE(AccessStorage(iframe, GetParam()));
ASSERT_TRUE(NavigateToURL(web_contents, url2));
ASSERT_TRUE(NavigateToURL(web_contents, url3));
ASSERT_TRUE(recorder.WaitForSize(3));
const BtmPageVisitObserver::VisitTuple& first_visit = recorder.visits()[0];
EXPECT_THAT(first_visit.prev_page, HasUrlAndSourceIdForBlankPage());
EXPECT_FALSE(first_visit.prev_page.had_active_storage_access);
EXPECT_THAT(first_visit.navigation.destination,
HasUrlAndMatchingSourceId(url1, &ukm_recorder()));
const BtmPageVisitObserver::VisitTuple& second_visit = recorder.visits()[1];
EXPECT_THAT(second_visit.prev_page,
HasUrlAndMatchingSourceId(url1, &ukm_recorder()));
// Storage accesses by iframes should be attributed to the top-level frame.
EXPECT_TRUE(second_visit.prev_page.had_active_storage_access);
EXPECT_THAT(second_visit.navigation.destination,
HasUrlAndMatchingSourceId(url2, &ukm_recorder()));
const BtmPageVisitObserver::VisitTuple& third_visit = recorder.visits()[2];
EXPECT_THAT(third_visit.prev_page,
HasUrlAndMatchingSourceId(url2, &ukm_recorder()));
EXPECT_FALSE(third_visit.prev_page.had_active_storage_access);
EXPECT_THAT(third_visit.navigation.destination,
HasUrlAndMatchingSourceId(url3, &ukm_recorder()));
EXPECT_EQ(recorder.visits().size(), 3u);
}
IN_PROC_BROWSER_TEST_P(BtmPageVisitObserverSiteDataAccessBrowserTest,
FencedFrameAccess) {
const GURL url1 =
embedded_https_test_server().GetURL("a.test", "/title1.html");
const GURL fenced_frame_url = embedded_https_test_server().GetURL(
"a.test", "/fenced_frames/title0.html");
const GURL url2 =
embedded_https_test_server().GetURL("b.test", "/empty.html");
WebContents* web_contents = shell()->web_contents();
BtmPageVisitRecorder recorder(web_contents);
ASSERT_TRUE(NavigateToURL(web_contents, url1));
std::unique_ptr<RenderFrameHostWrapper> fenced_frame =
std::make_unique<RenderFrameHostWrapper>(
fenced_frame_test_helper()->CreateFencedFrame(
web_contents->GetPrimaryMainFrame(), fenced_frame_url));
ASSERT_NE(fenced_frame, nullptr);
ASSERT_TRUE(AccessStorage(fenced_frame->get(), GetParam()));
ASSERT_TRUE(NavigateToURL(web_contents, url2));
ASSERT_TRUE(recorder.WaitForSize(2));
const BtmPageVisitObserver::VisitTuple& first_visit = recorder.visits()[0];
EXPECT_THAT(first_visit.prev_page, HasUrlAndSourceIdForBlankPage());
EXPECT_FALSE(first_visit.prev_page.had_active_storage_access);
EXPECT_THAT(first_visit.navigation.destination,
HasUrlAndMatchingSourceId(url1, &ukm_recorder()));
const BtmPageVisitObserver::VisitTuple& second_visit = recorder.visits()[1];
EXPECT_THAT(second_visit.prev_page,
HasUrlAndMatchingSourceId(url1, &ukm_recorder()));
// Storage accesses in fenced frames should be ignored.
EXPECT_FALSE(second_visit.prev_page.had_active_storage_access);
EXPECT_THAT(second_visit.navigation.destination,
HasUrlAndMatchingSourceId(url2, &ukm_recorder()));
EXPECT_EQ(recorder.visits().size(), 2u);
}
IN_PROC_BROWSER_TEST_P(BtmPageVisitObserverSiteDataAccessBrowserTest,
PrerenderingAccess) {
// Prerendering pages do not have access to `StorageTypeAccessed::kFileSystem`
// until activation (AKA becoming the primary page, whose test case is already
// covered).
if (GetParam() == StorageTypeAccessed::kFileSystem) {
GTEST_SKIP();
}
const GURL url1 =
embedded_https_test_server().GetURL("a.test", "/title1.html");
const GURL prerendering_url =
embedded_https_test_server().GetURL("a.test", "/title2.html");
const GURL url2 =
embedded_https_test_server().GetURL("b.test", "/empty.html");
WebContents* web_contents = shell()->web_contents();
BtmPageVisitRecorder recorder(web_contents);
// Navigate to url1, and prerender a page that accesses storage.
ASSERT_TRUE(NavigateToURL(web_contents, url1));
const FrameTreeNodeId host_id =
prerender_test_helper()->AddPrerender(prerendering_url);
prerender_test_helper()->WaitForPrerenderLoadCompletion(prerendering_url);
test::PrerenderHostObserver observer(*web_contents, host_id);
ASSERT_FALSE(observer.was_activated());
RenderFrameHost* prerender_frame =
prerender_test_helper()->GetPrerenderedMainFrameHost(host_id);
ASSERT_NE(prerender_frame, nullptr);
ASSERT_TRUE(AccessStorage(prerender_frame, GetParam()));
prerender_test_helper()->CancelPrerenderedPage(host_id);
observer.WaitForDestroyed();
// End the page visit on url1.
ASSERT_TRUE(NavigateToURL(web_contents, url2));
ASSERT_TRUE(recorder.WaitForSize(2));
const BtmPageVisitObserver::VisitTuple& first_visit = recorder.visits()[0];
EXPECT_THAT(first_visit.prev_page, HasUrlAndSourceIdForBlankPage());
EXPECT_FALSE(first_visit.prev_page.had_active_storage_access);
EXPECT_THAT(first_visit.navigation.destination,
HasUrlAndMatchingSourceId(url1, &ukm_recorder()));
const BtmPageVisitObserver::VisitTuple& second_visit = recorder.visits()[1];
EXPECT_THAT(second_visit.prev_page,
HasUrlAndMatchingSourceId(url1, &ukm_recorder()));
// Storage accesses in prerendered pages should be ignored.
EXPECT_FALSE(second_visit.prev_page.had_active_storage_access);
EXPECT_THAT(second_visit.navigation.destination,
HasUrlAndMatchingSourceId(url2, &ukm_recorder()));
EXPECT_EQ(recorder.visits().size(), 2u);
}
INSTANTIATE_TEST_SUITE_P(
All,
BtmPageVisitObserverSiteDataAccessBrowserTest,
::testing::Values(StorageTypeAccessed::kLocalStorage,
StorageTypeAccessed::kSessionStorage,
StorageTypeAccessed::kCacheStorage,
StorageTypeAccessed::kFileSystem,
StorageTypeAccessed::kIndexedDB),
[](const testing::TestParamInfo<
BtmPageVisitObserverSiteDataAccessBrowserTest::ParamType>& param_info) {
// We drop the first character of ToString(param) because it's just the
// constant-indicating 'k'.
return base::ToString(param_info.param).substr(1);
});
// WebAuthn tests do not work on Android because there is
// currently no way to install a virtual authenticator.
// TODO(crbug.com/40269763): Implement automated testing
// once the infrastructure permits it (Requires mocking
// the Android Platform Authenticator i.e. GMS Core).
#if !BUILDFLAG(IS_ANDROID)
class BtmPageVisitObserverWebAuthnTest : public ContentBrowserTest {
public:
void SetUpCommandLine(base::CommandLine* command_line) override {
ContentBrowserTest::SetUpCommandLine(command_line);
command_line->AppendSwitch(
switches::kEnableExperimentalWebPlatformFeatures);
}
void SetUpInProcessBrowserTestFixture() override {
mock_cert_verifier_.SetUpInProcessBrowserTestFixture();
}
void TearDownInProcessBrowserTestFixture() override {
mock_cert_verifier_.TearDownInProcessBrowserTestFixture();
}
void SetUpOnMainThread() override {
ContentBrowserTest::SetUpOnMainThread();
// Allowlist all certs for the HTTPS server.
mock_cert_verifier()->set_default_result(net::OK);
host_resolver()->AddRule("*", "127.0.0.1");
embedded_https_test_server().AddDefaultHandlers(
base::FilePath(FILE_PATH_LITERAL("content/test/data")));
embedded_https_test_server().SetSSLConfig(
net::EmbeddedTestServer::CERT_TEST_NAMES);
ASSERT_TRUE(embedded_https_test_server().Start());
auto virtual_device_factory =
std::make_unique<device::test::VirtualFidoDeviceFactory>();
virtual_device_factory->mutable_state()->InjectResidentKey(
std::vector<uint8_t>{1, 2, 3, 4}, authn_hostname,
std::vector<uint8_t>{5, 6, 7, 8}, "Foo", "Foo Bar");
device::VirtualCtap2Device::Config config;
config.resident_key_support = true;
virtual_device_factory->SetCtap2Config(std::move(config));
auth_env_ = std::make_unique<ScopedAuthenticatorEnvironmentForTesting>(
std::move(virtual_device_factory));
ukm_recorder_.emplace();
}
void PreRunTestOnMainThread() override {
ContentBrowserTest::PreRunTestOnMainThread();
ukm::InitializeSourceUrlRecorderForWebContents(shell()->web_contents());
}
void PostRunTestOnMainThread() override {
auth_env_.reset();
ContentBrowserTest::PostRunTestOnMainThread();
}
WebContents* GetActiveWebContents() { return shell()->web_contents(); }
void GetWebAuthnAssertion() {
ASSERT_EQ("OK", EvalJs(GetActiveWebContents(), R"(
let cred_id = new Uint8Array([1,2,3,4]);
navigator.credentials.get({
publicKey: {
challenge: cred_id,
userVerification: 'preferred',
allowCredentials: [{
type: 'public-key',
id: cred_id,
transports: ['usb', 'nfc', 'ble'],
}],
timeout: 10000
}
}).then(c => 'OK',
e => e.toString());
)",
EXECUTE_SCRIPT_NO_USER_GESTURE));
}
const ukm::TestAutoSetUkmRecorder& ukm_recorder() {
return ukm_recorder_.value();
}
ContentMockCertVerifier::CertVerifier* mock_cert_verifier() {
return mock_cert_verifier_.mock_cert_verifier();
}
protected:
const std::string authn_hostname = std::string("a.test");
std::optional<ukm::TestAutoSetUkmRecorder> ukm_recorder_;
private:
ContentMockCertVerifier mock_cert_verifier_;
std::unique_ptr<ScopedAuthenticatorEnvironmentForTesting> auth_env_;
};
IN_PROC_BROWSER_TEST_F(BtmPageVisitObserverWebAuthnTest, SuccessfulWAA) {
const GURL url1 =
embedded_https_test_server().GetURL("a.test", "/empty.html");
const GURL url2 =
embedded_https_test_server().GetURL("b.test", "/empty.html");
const GURL url3 =
embedded_https_test_server().GetURL("c.test", "/empty.html");
WebContents* web_contents = shell()->web_contents();
BtmPageVisitRecorder recorder(web_contents);
ASSERT_TRUE(NavigateToURL(web_contents, url1));
GetWebAuthnAssertion();
ASSERT_TRUE(NavigateToURL(web_contents, url2));
ASSERT_TRUE(NavigateToURL(web_contents, url3));
ASSERT_TRUE(recorder.WaitForSize(3));
const BtmPageVisitObserver::VisitTuple& first_visit = recorder.visits()[0];
EXPECT_THAT(first_visit.prev_page, HasUrlAndSourceIdForBlankPage());
EXPECT_FALSE(first_visit.prev_page.had_successful_web_authn_assertion);
EXPECT_THAT(first_visit.navigation.destination,
HasUrlAndMatchingSourceId(url1, &ukm_recorder()));
const BtmPageVisitObserver::VisitTuple& second_visit = recorder.visits()[1];
EXPECT_THAT(second_visit.prev_page,
HasUrlAndMatchingSourceId(url1, &ukm_recorder()));
// Successful WAAs should be reported.
EXPECT_TRUE(second_visit.prev_page.had_successful_web_authn_assertion);
EXPECT_THAT(second_visit.navigation.destination,
HasUrlAndMatchingSourceId(url2, &ukm_recorder()));
const BtmPageVisitObserver::VisitTuple& third_visit = recorder.visits()[2];
EXPECT_THAT(third_visit.prev_page,
HasUrlAndMatchingSourceId(url2, &ukm_recorder()));
EXPECT_FALSE(third_visit.prev_page.had_successful_web_authn_assertion);
EXPECT_THAT(third_visit.navigation.destination,
HasUrlAndMatchingSourceId(url3, &ukm_recorder()));
EXPECT_EQ(recorder.visits().size(), 3u);
}
#endif // !BUILDFLAG(IS_ANDROID)
} // namespace
} // namespace content
|