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
|
// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "base/strings/strcat.h"
#include "base/strings/string_split.h"
#include "base/strings/stringprintf.h"
#include "base/test/bind.h"
#include "base/test/scoped_feature_list.h"
#include "build/build_config.h"
#include "content/browser/devtools/protocol/devtools_protocol_test_support.h"
#include "content/public/browser/browser_context.h"
#include "content/public/browser/storage_partition.h"
#include "content/public/browser/web_contents.h"
#include "content/public/test/browser_test.h"
#include "content/public/test/browser_test_utils.h"
#include "content/public/test/content_browser_test.h"
#include "content/public/test/content_browser_test_utils.h"
#include "content/public/test/frame_test_utils.h"
#include "content/public/test/test_navigation_observer.h"
#include "content/public/test/url_loader_interceptor.h"
#include "content/shell/browser/shell.h"
#include "net/base/features.h"
#include "net/cookies/canonical_cookie_test_helpers.h"
#include "net/dns/mock_host_resolver.h"
#include "net/test/embedded_test_server/embedded_test_server.h"
#include "services/network/public/cpp/network_switches.h"
#include "services/network/public/mojom/cookie_manager.mojom.h"
#include "testing/gmock/include/gmock/gmock-matchers.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace content {
namespace {
using ::testing::IsEmpty;
using ::testing::Key;
using ::testing::UnorderedElementsAre;
// This file contains tests for cookie access via HTTP requests.
// See also (tests for cookie access via JavaScript):
// //content/browser/renderer_host/cookie_browsertest.cc
constexpr std::string_view kHostA = "a.test";
constexpr std::string_view kHostB = "b.test";
constexpr std::string_view kHostC = "c.test";
constexpr std::string_view kSameSiteNoneCookieName = "samesite_none_cookie";
constexpr std::string_view kSameSiteStrictCookieName = "samesite_strict_cookie";
constexpr std::string_view kSameSiteLaxCookieName = "samesite_lax_cookie";
constexpr std::string_view kSameSiteUnspecifiedCookieName =
"samesite_unspecified_cookie";
constexpr std::string_view kHostPrefixCookieName = "__Host-prefixed_cookie";
constexpr std::string_view kSecurePrefixCookieName = "__Secure-prefixed_cookie";
constexpr std::string_view kEchoCookiesWithCorsPath = "/echocookieswithcors";
std::string FrameTreeForHostAndUrl(std::string_view host, const GURL& url) {
return base::StrCat({host, "(", url.spec(), ")"});
}
std::string FrameTreeForUrl(const GURL& url) {
return FrameTreeForHostAndUrl(kHostA, url);
}
GURL RedirectUrl(net::EmbeddedTestServer* test_server,
std::string_view host,
const GURL& target_url) {
return test_server->GetURL(host, "/server-redirect?" + target_url.spec());
}
class HttpCookieBrowserTest : public ContentBrowserTest,
public ::testing::WithParamInterface<bool> {
public:
HttpCookieBrowserTest() : https_server_(net::EmbeddedTestServer::TYPE_HTTPS) {
feature_list_.InitWithFeatureState(
net::features::kCookieSameSiteConsidersRedirectChain,
DoesSameSiteConsiderRedirectChain());
}
~HttpCookieBrowserTest() override = default;
void SetUpOnMainThread() override {
ContentBrowserTest::SetUpOnMainThread();
host_resolver()->AddRule("*", "127.0.0.1");
https_server()->SetSSLConfig(net::EmbeddedTestServer::CERT_TEST_NAMES);
https_server()->AddDefaultHandlers(GetTestDataFilePath());
embedded_test_server()->AddDefaultHandlers(GetTestDataFilePath());
ASSERT_TRUE(https_server()->Start());
ASSERT_TRUE(embedded_test_server()->Start());
}
bool DoesSameSiteConsiderRedirectChain() { return GetParam(); }
const std::string kSetSameSiteCookiesPath = base::StrCat({
"/set-cookie?",
kSameSiteStrictCookieName,
"=1;SameSite=Strict&",
kSameSiteLaxCookieName,
"=1;SameSite=Lax&",
kSameSiteUnspecifiedCookieName,
"=1&",
kSameSiteNoneCookieName,
"=1;Secure;SameSite=None",
});
void SetSameSiteCookies(std::string_view host) {
BrowserContext* context = shell()->web_contents()->GetBrowserContext();
EXPECT_TRUE(SetCookie(
context, https_server()->GetURL(host, "/"),
base::StrCat({kSameSiteStrictCookieName, "=1; samesite=strict"})));
EXPECT_TRUE(
SetCookie(context, https_server()->GetURL(host, "/"),
base::StrCat({kSameSiteLaxCookieName, "=1; samesite=lax"})));
EXPECT_TRUE(SetCookie(
context, https_server()->GetURL(host, "/"),
base::StrCat({kSameSiteNoneCookieName, "=1; samesite=none; secure"})));
EXPECT_TRUE(
SetCookie(context, https_server()->GetURL(host, "/"),
base::StrCat({kSameSiteUnspecifiedCookieName, "=1"})));
}
// Gets a path that causes the EmbeddedTestServer to attempt to set prefixed
// cookies (some valid, some not).
std::string GetSetPrefixedCookiesPath(std::string_view host) {
return base::StrCat({
"/set-cookie?",
kSecurePrefixCookieName,
"=1;Secure&",
kHostPrefixCookieName,
"=1;Secure;Path=/&",
"__Secure-missing-attr=1&",
"__Host-wrong-path=1;Secure&",
"__Host-wrong-domain=1;Secure;Domain=",
host,
"&",
"__Host-wrong-secure=1;Path=/&",
});
}
// Sets some (valid) prefixed cookies.
void SetPrefixedCookies(std::string_view host,
net::EmbeddedTestServer* test_server = nullptr) {
if (!test_server) {
test_server = https_server();
}
BrowserContext* context = shell()->web_contents()->GetBrowserContext();
ASSERT_TRUE(
SetCookie(context, test_server->GetURL(host, "/"),
base::StrCat({kHostPrefixCookieName, "=1; Secure; Path=/"})));
ASSERT_TRUE(
SetCookie(context, test_server->GetURL(host, "/"),
base::StrCat({kSecurePrefixCookieName, "=1; Secure"})));
}
GURL EchoCookiesUrl(net::EmbeddedTestServer* test_server,
std::string_view host) {
return test_server->GetURL(host, "/echoheader?Cookie");
}
GURL SetSameSiteCookiesUrl(net::EmbeddedTestServer* test_server,
std::string_view host) {
return test_server->GetURL(host, kSetSameSiteCookiesPath);
}
std::string ExtractFrameContent(RenderFrameHost* frame) const {
return EvalJs(frame, "document.body.textContent").ExtractString();
}
uint32_t ClearCookies() {
return DeleteCookies(shell()->web_contents()->GetBrowserContext(),
network::mojom::CookieDeletionFilter());
}
net::EmbeddedTestServer* https_server() { return &https_server_; }
WebContents* web_contents() { return shell()->web_contents(); }
// is_user_initiated_navigation - true if user initiates navigation to 404,
// - false script initiates this navigation
// is_cross_site_navigation - true if testing in a cross-site context,
// - false if testing in a same-site context
// is_user_initiated_reload - true if user initates the reload,
// false if the reload via script
std::string Test404ReloadCookie(bool is_user_initiated_navigation,
bool is_cross_site_navigation,
bool is_user_initiated_reload) {
// Set target as A or B and cookies based on cross_site param
std::string_view target = is_cross_site_navigation ? kHostB : kHostA;
GURL target_URL =
https_server()->GetURL(target, "/echo-cookie-with-status?status=404");
SetSameSiteCookies(target);
// Start at a website A
EXPECT_TRUE(
NavigateToURL(web_contents(), EchoCookiesUrl(https_server(), kHostA)));
// Navigate method based on whether user or script initiated
if (is_user_initiated_navigation) {
EXPECT_TRUE(NavigateToURL(web_contents(), target_URL));
} else {
EXPECT_TRUE(NavigateToURLFromRenderer(web_contents(), target_URL));
}
// Trigger either user or script reload
TestNavigationObserver nav_observer(web_contents());
if (is_user_initiated_reload) {
shell()->Reload();
} else {
ExecuteScriptAsync(
web_contents()->GetPrimaryMainFrame(),
content::JsReplace("window.location.reload($1);", true));
}
nav_observer.Wait();
// Return the cookies rendered on frame
return ExtractFrameContent(web_contents()->GetPrimaryMainFrame());
}
private:
net::test_server::EmbeddedTestServer https_server_;
base::test::ScopedFeatureList feature_list_;
};
IN_PROC_BROWSER_TEST_P(HttpCookieBrowserTest, SendSameSiteCookies) {
SetSameSiteCookies(kHostA);
SetSameSiteCookies(kHostB);
// Main frame browser-initiated navigation sends all SameSite cookies.
ASSERT_TRUE(
NavigateToURL(web_contents(), EchoCookiesUrl(https_server(), kHostA)));
EXPECT_THAT(
ExtractFrameContent(web_contents()->GetPrimaryMainFrame()),
net::CookieStringIs(UnorderedElementsAre(
Key(kSameSiteStrictCookieName), Key(kSameSiteLaxCookieName),
Key(kSameSiteNoneCookieName), Key(kSameSiteUnspecifiedCookieName))));
// Main frame same-site (A => A) navigation sends all SameSite cookies.
ASSERT_TRUE(
NavigateToURLFromRenderer(web_contents()->GetPrimaryMainFrame(),
EchoCookiesUrl(https_server(), kHostA)));
EXPECT_THAT(
ExtractFrameContent(web_contents()->GetPrimaryMainFrame()),
net::CookieStringIs(UnorderedElementsAre(
Key(kSameSiteStrictCookieName), Key(kSameSiteLaxCookieName),
Key(kSameSiteNoneCookieName), Key(kSameSiteUnspecifiedCookieName))));
// Main frame cross-site (A => B) navigation sends all but Strict cookies.
ASSERT_TRUE(
NavigateToURLFromRenderer(web_contents()->GetPrimaryMainFrame(),
EchoCookiesUrl(https_server(), kHostB)));
EXPECT_THAT(ExtractFrameContent(web_contents()->GetPrimaryMainFrame()),
net::CookieStringIs(UnorderedElementsAre(
Key(kSameSiteLaxCookieName), Key(kSameSiteNoneCookieName),
Key(kSameSiteUnspecifiedCookieName))));
// Same-site iframe (A embedded in A) sends all SameSite cookies.
EXPECT_THAT(
content::ArrangeFramesAndGetContentFromLeaf(
web_contents(), https_server(),
FrameTreeForUrl(EchoCookiesUrl(https_server(), kHostA)), {0}),
net::CookieStringIs(UnorderedElementsAre(
Key(kSameSiteStrictCookieName), Key(kSameSiteLaxCookieName),
Key(kSameSiteNoneCookieName), Key(kSameSiteUnspecifiedCookieName))));
// Cross-site iframe (B embedded in A) sends only None cookies.
EXPECT_THAT(
content::ArrangeFramesAndGetContentFromLeaf(
web_contents(), https_server(),
FrameTreeForUrl(EchoCookiesUrl(https_server(), kHostB)), {0}),
net::CookieStringIs(UnorderedElementsAre(Key(kSameSiteNoneCookieName))));
}
IN_PROC_BROWSER_TEST_P(HttpCookieBrowserTest, SendSameSiteCookies_Redirect) {
SetSameSiteCookies(kHostA);
// Main frame same-site redirect (A->A) sends all SameSite cookies.
ASSERT_TRUE(NavigateToURL(
web_contents(),
RedirectUrl(https_server(), kHostA,
EchoCookiesUrl(https_server(), kHostA)),
/*expected_commit_url=*/EchoCookiesUrl(https_server(), kHostA)));
EXPECT_THAT(
ExtractFrameContent(web_contents()->GetPrimaryMainFrame()),
net::CookieStringIs(UnorderedElementsAre(
Key(kSameSiteStrictCookieName), Key(kSameSiteLaxCookieName),
Key(kSameSiteNoneCookieName), Key(kSameSiteUnspecifiedCookieName))));
if (DoesSameSiteConsiderRedirectChain()) {
// Main frame cross-site redirect (B->A) sends Lax but not Strict SameSite
// cookies...
ASSERT_TRUE(NavigateToURL(
web_contents(),
RedirectUrl(https_server(), kHostB,
EchoCookiesUrl(https_server(), kHostA)),
/*expected_commit_url=*/EchoCookiesUrl(https_server(), kHostA)));
EXPECT_THAT(ExtractFrameContent(web_contents()->GetPrimaryMainFrame()),
net::CookieStringIs(UnorderedElementsAre(
Key(kSameSiteLaxCookieName), Key(kSameSiteNoneCookieName),
Key(kSameSiteUnspecifiedCookieName))));
// ... even if the first URL is same-site. (A->B->A)
ASSERT_TRUE(NavigateToURL(
web_contents(),
RedirectUrl(https_server(), kHostA,
RedirectUrl(https_server(), kHostB,
EchoCookiesUrl(https_server(), kHostA))),
/*expected_commit_url=*/EchoCookiesUrl(https_server(), kHostA)));
EXPECT_THAT(ExtractFrameContent(web_contents()->GetPrimaryMainFrame()),
net::CookieStringIs(UnorderedElementsAre(
Key(kSameSiteLaxCookieName), Key(kSameSiteNoneCookieName),
Key(kSameSiteUnspecifiedCookieName))));
} else {
// If redirect chains are not considered, then cross-site redirects do not
// make the request cross-site.
ASSERT_TRUE(NavigateToURL(
web_contents(),
RedirectUrl(https_server(), kHostB,
EchoCookiesUrl(https_server(), kHostA)),
/*expected_commit_url=*/EchoCookiesUrl(https_server(), kHostA)));
EXPECT_THAT(ExtractFrameContent(web_contents()->GetPrimaryMainFrame()),
net::CookieStringIs(UnorderedElementsAre(
Key(kSameSiteStrictCookieName), Key(kSameSiteLaxCookieName),
Key(kSameSiteNoneCookieName),
Key(kSameSiteUnspecifiedCookieName))));
ASSERT_TRUE(NavigateToURL(
web_contents(),
RedirectUrl(https_server(), kHostA,
RedirectUrl(https_server(), kHostB,
EchoCookiesUrl(https_server(), kHostA))),
/*expected_commit_url=*/EchoCookiesUrl(https_server(), kHostA)));
EXPECT_THAT(ExtractFrameContent(web_contents()->GetPrimaryMainFrame()),
net::CookieStringIs(UnorderedElementsAre(
Key(kSameSiteStrictCookieName), Key(kSameSiteLaxCookieName),
Key(kSameSiteNoneCookieName),
Key(kSameSiteUnspecifiedCookieName))));
}
// A same-site redirected iframe (A->A embedded in A) sends all SameSite
// cookies.
EXPECT_THAT(
content::ArrangeFramesAndGetContentFromLeaf(
web_contents(), https_server(),
FrameTreeForUrl(RedirectUrl(https_server(), kHostA,
EchoCookiesUrl(https_server(), kHostA))),
{0}),
net::CookieStringIs(UnorderedElementsAre(
Key(kSameSiteStrictCookieName), Key(kSameSiteLaxCookieName),
Key(kSameSiteNoneCookieName), Key(kSameSiteUnspecifiedCookieName))));
if (DoesSameSiteConsiderRedirectChain()) {
// A cross-site redirected iframe in a same-site context (B->A embedded in
// A) does not send SameSite cookies...
EXPECT_THAT(content::ArrangeFramesAndGetContentFromLeaf(
web_contents(), https_server(),
FrameTreeForUrl(
RedirectUrl(https_server(), kHostB,
EchoCookiesUrl(https_server(), kHostA))),
{0}),
net::CookieStringIs(
UnorderedElementsAre(Key(kSameSiteNoneCookieName))));
// ... even if the first URL is same-site. (A->B->A embedded in A)
EXPECT_THAT(content::ArrangeFramesAndGetContentFromLeaf(
web_contents(), https_server(),
FrameTreeForUrl(RedirectUrl(
https_server(), kHostA,
RedirectUrl(https_server(), kHostB,
EchoCookiesUrl(https_server(), kHostA)))),
{0}),
net::CookieStringIs(
UnorderedElementsAre(Key(kSameSiteNoneCookieName))));
} else {
// If redirect chains are not considered, then cross-site redirects do not
// make the request cross-site.
EXPECT_THAT(content::ArrangeFramesAndGetContentFromLeaf(
web_contents(), https_server(),
FrameTreeForUrl(
RedirectUrl(https_server(), kHostB,
EchoCookiesUrl(https_server(), kHostA))),
{0}),
net::CookieStringIs(UnorderedElementsAre(
Key(kSameSiteStrictCookieName), Key(kSameSiteLaxCookieName),
Key(kSameSiteNoneCookieName),
Key(kSameSiteUnspecifiedCookieName))));
EXPECT_THAT(content::ArrangeFramesAndGetContentFromLeaf(
web_contents(), https_server(),
FrameTreeForUrl(
RedirectUrl(https_server(), kHostB,
EchoCookiesUrl(https_server(), kHostA))),
{0}),
net::CookieStringIs(UnorderedElementsAre(
Key(kSameSiteStrictCookieName), Key(kSameSiteLaxCookieName),
Key(kSameSiteNoneCookieName),
Key(kSameSiteUnspecifiedCookieName))));
}
}
IN_PROC_BROWSER_TEST_P(HttpCookieBrowserTest, SetSameSiteCookies) {
// Main frame can set all SameSite cookies.
ASSERT_TRUE(NavigateToURL(
web_contents(), https_server()->GetURL(kHostA, kSetSameSiteCookiesPath)));
EXPECT_THAT(GetCanonicalCookies(web_contents()->GetBrowserContext(),
https_server()->GetURL(kHostA, "/")),
UnorderedElementsAre(
net::MatchesCookieWithName(kSameSiteStrictCookieName),
net::MatchesCookieWithName(kSameSiteLaxCookieName),
net::MatchesCookieWithName(kSameSiteNoneCookieName),
net::MatchesCookieWithName(kSameSiteUnspecifiedCookieName)));
ASSERT_EQ(4U, ClearCookies());
// Same-site iframe (A embedded in A) sets all SameSite cookies.
const GURL url_a = SetSameSiteCookiesUrl(https_server(), kHostA);
EXPECT_THAT(content::ArrangeFramesAndGetCanonicalCookiesForLeaf(
web_contents(), https_server(), FrameTreeForUrl(url_a),
url::Origin::Create(url_a).GetURL()),
UnorderedElementsAre(
net::MatchesCookieWithName(kSameSiteStrictCookieName),
net::MatchesCookieWithName(kSameSiteLaxCookieName),
net::MatchesCookieWithName(kSameSiteNoneCookieName),
net::MatchesCookieWithName(kSameSiteUnspecifiedCookieName)));
ASSERT_EQ(4U, ClearCookies());
// Cross-site iframe (B embedded in A) sets only None cookies.
const GURL url_b = SetSameSiteCookiesUrl(https_server(), kHostB);
EXPECT_THAT(content::ArrangeFramesAndGetCanonicalCookiesForLeaf(
web_contents(), https_server(), FrameTreeForUrl(url_b),
url::Origin::Create(url_b).GetURL()),
UnorderedElementsAre(
net::MatchesCookieWithName(kSameSiteNoneCookieName)));
ASSERT_EQ(1U, ClearCookies());
}
IN_PROC_BROWSER_TEST_P(HttpCookieBrowserTest, SetSameSiteCookies_Redirect) {
// Same-site redirected main frame navigation can set all SameSite cookies.
ASSERT_TRUE(NavigateToURL(
web_contents(),
RedirectUrl(https_server(), kHostA,
SetSameSiteCookiesUrl(https_server(), kHostA)),
/*expected_commit_url=*/SetSameSiteCookiesUrl(https_server(), kHostA)));
EXPECT_THAT(GetCanonicalCookies(web_contents()->GetBrowserContext(),
https_server()->GetURL(kHostA, "/")),
UnorderedElementsAre(
net::MatchesCookieWithName(kSameSiteStrictCookieName),
net::MatchesCookieWithName(kSameSiteLaxCookieName),
net::MatchesCookieWithName(kSameSiteNoneCookieName),
net::MatchesCookieWithName(kSameSiteUnspecifiedCookieName)));
ASSERT_EQ(4U, ClearCookies());
// Cross-site redirected main frame navigation can set all SameSite cookies.
ASSERT_TRUE(NavigateToURL(
web_contents(),
RedirectUrl(https_server(), kHostB,
SetSameSiteCookiesUrl(https_server(), kHostA)),
/*expected_commit_url=*/SetSameSiteCookiesUrl(https_server(), kHostA)));
EXPECT_THAT(GetCanonicalCookies(web_contents()->GetBrowserContext(),
https_server()->GetURL(kHostA, "/")),
UnorderedElementsAre(
net::MatchesCookieWithName(kSameSiteStrictCookieName),
net::MatchesCookieWithName(kSameSiteLaxCookieName),
net::MatchesCookieWithName(kSameSiteNoneCookieName),
net::MatchesCookieWithName(kSameSiteUnspecifiedCookieName)));
ASSERT_EQ(4U, ClearCookies());
// A same-site redirected iframe sets all SameSite cookies.
EXPECT_THAT(content::ArrangeFramesAndGetCanonicalCookiesForLeaf(
web_contents(), https_server(),
FrameTreeForUrl(RedirectUrl(
https_server(), kHostA,
SetSameSiteCookiesUrl(https_server(), kHostA))),
https_server()->GetURL(kHostA, "/")),
UnorderedElementsAre(
net::MatchesCookieWithName(kSameSiteStrictCookieName),
net::MatchesCookieWithName(kSameSiteLaxCookieName),
net::MatchesCookieWithName(kSameSiteNoneCookieName),
net::MatchesCookieWithName(kSameSiteUnspecifiedCookieName)));
ASSERT_EQ(4U, ClearCookies());
if (DoesSameSiteConsiderRedirectChain()) {
// A cross-site redirected iframe only sets SameSite=None cookies.
EXPECT_THAT(content::ArrangeFramesAndGetCanonicalCookiesForLeaf(
web_contents(), https_server(),
FrameTreeForUrl(RedirectUrl(
https_server(), kHostB,
SetSameSiteCookiesUrl(https_server(), kHostA))),
https_server()->GetURL(kHostA, "/")),
UnorderedElementsAre(
net::MatchesCookieWithName(kSameSiteNoneCookieName)));
ASSERT_EQ(1U, ClearCookies());
} else {
EXPECT_THAT(
content::ArrangeFramesAndGetCanonicalCookiesForLeaf(
web_contents(), https_server(),
FrameTreeForUrl(
RedirectUrl(https_server(), kHostB,
SetSameSiteCookiesUrl(https_server(), kHostA))),
https_server()->GetURL(kHostA, "/")),
UnorderedElementsAre(
net::MatchesCookieWithName(kSameSiteStrictCookieName),
net::MatchesCookieWithName(kSameSiteLaxCookieName),
net::MatchesCookieWithName(kSameSiteNoneCookieName),
net::MatchesCookieWithName(kSameSiteUnspecifiedCookieName)));
ASSERT_EQ(4U, ClearCookies());
}
}
IN_PROC_BROWSER_TEST_P(HttpCookieBrowserTest, SendPrefixedCookies) {
SetPrefixedCookies(kHostA);
// Main frame browser-initiated navigation sends all prefixed cookies.
ASSERT_TRUE(
NavigateToURL(web_contents(), EchoCookiesUrl(https_server(), kHostA)));
EXPECT_THAT(ExtractFrameContent(web_contents()->GetPrimaryMainFrame()),
net::CookieStringIs(UnorderedElementsAre(
Key(kSecurePrefixCookieName), Key(kHostPrefixCookieName))));
}
IN_PROC_BROWSER_TEST_P(HttpCookieBrowserTest,
SendPrefixedCookies_OmitsIfInsecure) {
SetPrefixedCookies(kHostA);
// Main frame browser-initiated navigation omits all prefixed cookies on
// insecure connections.
ASSERT_TRUE(NavigateToURL(web_contents(),
EchoCookiesUrl(embedded_test_server(), kHostA)));
EXPECT_THAT(ExtractFrameContent(web_contents()->GetPrimaryMainFrame()),
net::CookieStringIs(IsEmpty()));
}
// embedded_test_server() uses http, which is insecure, but localhost is
// allowed to set prefixed cookies anyway.
IN_PROC_BROWSER_TEST_P(HttpCookieBrowserTest, SendPrefixedCookiesLocalhost) {
SetPrefixedCookies("localhost", embedded_test_server());
// Main frame browser-initiated navigation sends all prefixed cookies.
ASSERT_TRUE(NavigateToURL(
web_contents(), EchoCookiesUrl(embedded_test_server(), "localhost")));
EXPECT_THAT(ExtractFrameContent(web_contents()->GetPrimaryMainFrame()),
net::CookieStringIs(UnorderedElementsAre(
Key(kSecurePrefixCookieName), Key(kHostPrefixCookieName))));
}
IN_PROC_BROWSER_TEST_P(HttpCookieBrowserTest, SetPrefixedCookies) {
// Main frame can set cookies with all prefixes.
ASSERT_TRUE(NavigateToURL(
web_contents(),
https_server()->GetURL(kHostA, GetSetPrefixedCookiesPath(kHostA))));
EXPECT_THAT(GetCanonicalCookies(web_contents()->GetBrowserContext(),
https_server()->GetURL(kHostA, "/")),
UnorderedElementsAre(
net::MatchesCookieWithName(kHostPrefixCookieName),
net::MatchesCookieWithName(kSecurePrefixCookieName)));
}
IN_PROC_BROWSER_TEST_P(HttpCookieBrowserTest,
SetPrefixedCookies_DisallowedIfInsecure) {
// Main frame cannot set cookies with any prefix over an insecure connection.
ASSERT_TRUE(NavigateToURL(web_contents(),
embedded_test_server()->GetURL(
kHostA, GetSetPrefixedCookiesPath(kHostA))));
EXPECT_THAT(GetCanonicalCookies(web_contents()->GetBrowserContext(),
embedded_test_server()->GetURL(kHostA, "/")),
IsEmpty());
}
IN_PROC_BROWSER_TEST_P(HttpCookieBrowserTest,
ScriptNavigationSameSite404ScriptReload) {
EXPECT_THAT(
Test404ReloadCookie(/* is_user_initiated_navigation= */ false,
/* is_cross_site_navigation= */ false,
/* is_user_initiated_reload= */ false),
net::CookieStringIs(UnorderedElementsAre(
Key(kSameSiteStrictCookieName), Key(kSameSiteLaxCookieName),
Key(kSameSiteNoneCookieName), Key(kSameSiteUnspecifiedCookieName))));
}
IN_PROC_BROWSER_TEST_P(HttpCookieBrowserTest,
ScriptNavigationSameSite404UserReload) {
EXPECT_THAT(
Test404ReloadCookie(/* is_user_initiated_navigation= */ false,
/* is_cross_site_navigation= */ false,
/* is_user_initiated_reload= */ true),
net::CookieStringIs(UnorderedElementsAre(
Key(kSameSiteStrictCookieName), Key(kSameSiteLaxCookieName),
Key(kSameSiteNoneCookieName), Key(kSameSiteUnspecifiedCookieName))));
}
IN_PROC_BROWSER_TEST_P(HttpCookieBrowserTest,
ScriptNavigationCrossSite404ScriptReload) {
EXPECT_THAT(
Test404ReloadCookie(/* is_user_initiated_navigation= */ false,
/* is_cross_site_navigation= */ true,
/* is_user_initiated_reload= */ false),
net::CookieStringIs(UnorderedElementsAre(
Key(kSameSiteStrictCookieName), Key(kSameSiteLaxCookieName),
Key(kSameSiteNoneCookieName), Key(kSameSiteUnspecifiedCookieName))));
}
IN_PROC_BROWSER_TEST_P(HttpCookieBrowserTest,
ScriptNavigationCrossSite404UserReload) {
EXPECT_THAT(Test404ReloadCookie(/* is_user_initiated_navigation= */ false,
/* is_cross_site_navigation= */ true,
/* is_user_initiated_reload= */ true),
net::CookieStringIs(UnorderedElementsAre(
Key(kSameSiteLaxCookieName), Key(kSameSiteNoneCookieName),
Key(kSameSiteUnspecifiedCookieName))));
}
IN_PROC_BROWSER_TEST_P(HttpCookieBrowserTest,
UserNavigationSameSite404ScriptReload) {
EXPECT_THAT(
Test404ReloadCookie(/* is_user_initiated_navigation= */ true,
/* is_cross_site_navigation= */ false,
/* is_user_initiated_reload= */ false),
net::CookieStringIs(UnorderedElementsAre(
Key(kSameSiteStrictCookieName), Key(kSameSiteLaxCookieName),
Key(kSameSiteNoneCookieName), Key(kSameSiteUnspecifiedCookieName))));
}
IN_PROC_BROWSER_TEST_P(HttpCookieBrowserTest,
UserNavigationSameSite404UserReload) {
EXPECT_THAT(
Test404ReloadCookie(/* is_user_initiated_navigation= */ true,
/* is_cross_site_navigation= */ false,
/* is_user_initiated_reload= */ true),
net::CookieStringIs(UnorderedElementsAre(
Key(kSameSiteStrictCookieName), Key(kSameSiteLaxCookieName),
Key(kSameSiteNoneCookieName), Key(kSameSiteUnspecifiedCookieName))));
}
IN_PROC_BROWSER_TEST_P(HttpCookieBrowserTest,
UserNavigationCrossSite404ScriptReload) {
EXPECT_THAT(
Test404ReloadCookie(/* is_user_initiated_navigation= */ true,
/* is_cross_site_navigation= */ true,
/* is_user_initiated_reload= */ false),
net::CookieStringIs(UnorderedElementsAre(
Key(kSameSiteStrictCookieName), Key(kSameSiteLaxCookieName),
Key(kSameSiteNoneCookieName), Key(kSameSiteUnspecifiedCookieName))));
}
IN_PROC_BROWSER_TEST_P(HttpCookieBrowserTest,
UserNavigationCrossSite404UserReload) {
EXPECT_THAT(
Test404ReloadCookie(/* is_user_initiated_navigation= */ true,
/* is_cross_site_navigation= */ true,
/* is_user_initiated_reload= */ true),
net::CookieStringIs(UnorderedElementsAre(
Key(kSameSiteStrictCookieName), Key(kSameSiteLaxCookieName),
Key(kSameSiteNoneCookieName), Key(kSameSiteUnspecifiedCookieName))));
}
// Responds to a request to /echocookieswithcors with the cookies that were sent
// with the request. We can't use the default handler /echoheader?Cookie here,
// because it doesn't send the appropriate Access-Control-Allow-Origin and
// Access-Control-Allow-Credentials headers (which are required for this to
// work for cross-origin requests in the tests).
std::unique_ptr<net::test_server::HttpResponse>
HandleEchoCookiesWithCorsRequest(const net::test_server::HttpRequest& request) {
if (request.relative_url != kEchoCookiesWithCorsPath) {
return nullptr;
}
auto http_response = std::make_unique<net::test_server::BasicHttpResponse>();
std::string content;
// Get the 'Cookie' header that was sent in the request.
if (auto it = request.headers.find(net::HttpRequestHeaders::kCookie);
it != request.headers.end()) {
content = it->second;
}
http_response->set_code(net::HTTP_OK);
http_response->set_content_type("text/plain");
// Set the cors enabled headers.
if (auto it = request.headers.find(net::HttpRequestHeaders::kOrigin);
it != request.headers.end()) {
http_response->AddCustomHeader("Access-Control-Allow-Headers",
"credentials");
http_response->AddCustomHeader("Access-Control-Allow-Origin", it->second);
http_response->AddCustomHeader("Origin", it->second);
http_response->AddCustomHeader("Vary", "Origin");
http_response->AddCustomHeader("Access-Control-Allow-Methods", "POST");
http_response->AddCustomHeader("Access-Control-Allow-Credentials", "true");
}
http_response->set_content(content);
return http_response;
}
class ThirdPartyCookiesHttpCookieBrowserTest : public ContentBrowserTest {
public:
ThirdPartyCookiesHttpCookieBrowserTest()
: https_server_(net::EmbeddedTestServer::TYPE_HTTPS) {}
~ThirdPartyCookiesHttpCookieBrowserTest() override = default;
void SetUpOnMainThread() override {
ContentBrowserTest::SetUpOnMainThread();
host_resolver()->AddRule("*", "127.0.0.1");
https_server()->SetSSLConfig(net::EmbeddedTestServer::CERT_TEST_NAMES);
https_server()->AddDefaultHandlers(GetTestDataFilePath());
https_server()->RegisterRequestHandler(
base::BindRepeating(&HandleEchoCookiesWithCorsRequest));
ASSERT_TRUE(https_server()->Start());
}
WebContents* web_contents() const { return shell()->web_contents(); }
net::EmbeddedTestServer* https_server() { return &https_server_; }
GURL EchoCookiesUrl(std::string_view host) {
return https_server()->GetURL(host, "/echoheader?Cookie");
}
std::string ExtractFrameContent(RenderFrameHost* frame) const {
return EvalJs(frame, "document.body.textContent").ExtractString();
}
std::string ExtractCookieFromDocument(RenderFrameHost* frame) const {
return EvalJs(frame, "document.cookie").ExtractString();
}
std::string PostWithCredentials(RenderFrameHost* frame, const GURL& url) {
constexpr char script[] = R"JS(
fetch($1, {method: 'POST', 'credentials' : 'include'}
).then((result) => result.text());
)JS";
return EvalJs(frame, JsReplace(script, url)).ExtractString();
}
EvalJsResult Fetch(RenderFrameHost* frame,
const GURL& url,
std::string_view mode,
std::string_view credentials) {
constexpr char script[] = R"JS(
fetch($1, {mode: $2, credentials: $3}).then(result => result.text());
)JS";
return EvalJs(frame, JsReplace(script, url, mode, credentials));
}
bool CookieStoreEmpty(RenderFrameHost* frame) {
constexpr char script[] = R"JS(
(async () => {
let cookies = await cookieStore.getAll();
return cookies.length == 0;
})();
)JS";
return EvalJs(frame, script).ExtractBool();
}
EvalJsResult NavigateToURLWithPOST(RenderFrameHost* frame,
std::string_view host) {
TestNavigationObserver observer(web_contents());
constexpr char script[] = R"JS(
let form = document.createElement('form');
form.setAttribute('method', 'POST');
form.setAttribute('action', $1);
document.body.appendChild(form);
form.submit();
)JS";
EvalJsResult result =
EvalJs(frame, JsReplace(script, EchoCookiesUrl(host)));
observer.WaitForNavigationFinished();
EXPECT_TRUE(WaitForLoadStop(web_contents()));
return result;
}
EvalJsResult ReadCookiesViaFetchWithRedirect(
RenderFrameHost* frame,
std::string_view intermediate_host,
std::string_view destination_host) {
constexpr char script[] = "fetch($1).then((result) => result.text());";
GURL redirect_url = RedirectUrl(https_server(), intermediate_host,
EchoCookiesUrl(destination_host));
return EvalJs(frame, JsReplace(script, redirect_url));
}
private:
net::test_server::EmbeddedTestServer https_server_;
};
class ThirdPartyCookiesBlockedHttpCookieBrowserTest
: public ThirdPartyCookiesHttpCookieBrowserTest {
public:
ThirdPartyCookiesBlockedHttpCookieBrowserTest() {
feature_list_.InitWithFeatures(
{
net::features::kForceThirdPartyCookieBlocking,
},
{});
}
~ThirdPartyCookiesBlockedHttpCookieBrowserTest() override = default;
private:
base::test::ScopedFeatureList feature_list_;
};
IN_PROC_BROWSER_TEST_F(ThirdPartyCookiesBlockedHttpCookieBrowserTest,
SameSiteNoneCookieNavigateCrossSiteEmbedToSameSiteUrl) {
ASSERT_TRUE(base::FeatureList::IsEnabled(
net::features::kForceThirdPartyCookieBlocking));
// Set SameSite=None cookie on kHostA.
ASSERT_TRUE(SetCookie(
web_contents()->GetBrowserContext(), https_server()->GetURL(kHostA, "/"),
base::StrCat({kSameSiteNoneCookieName, "=1;Secure;SameSite=None;"})));
// Confirm cross-site iframe (kHostB embedded in kHostA) does not
// send SameSite=None cookie to iframe.
EXPECT_THAT(content::ArrangeFramesAndGetContentFromLeaf(
web_contents(), https_server(),
FrameTreeForUrl(EchoCookiesUrl(kHostB)), {0}),
net::CookieStringIs(UnorderedElementsAre()));
// Navigate embedded iframe from kHostB to kHostA and confirm that
// SameSite=None cookie is sent.
ASSERT_TRUE(NavigateToURLFromRenderer(
ChildFrameAt(web_contents()->GetPrimaryMainFrame(), 0),
EchoCookiesUrl(kHostA)));
EXPECT_THAT(
ExtractFrameContent(
ChildFrameAt(web_contents()->GetPrimaryMainFrame(), 0)),
net::CookieStringIs(UnorderedElementsAre(Key(kSameSiteNoneCookieName))));
}
IN_PROC_BROWSER_TEST_F(ThirdPartyCookiesBlockedHttpCookieBrowserTest,
SameSiteNoneCookieCrossSitePostRequest) {
// Set and confirm SameSite=None cookie on top-level-site kHostB.
ASSERT_TRUE(SetCookie(
web_contents()->GetBrowserContext(), https_server()->GetURL(kHostB, "/"),
base::StrCat({kSameSiteNoneCookieName, "=1;Secure;SameSite=None;"})));
ASSERT_TRUE(NavigateToURL(web_contents(), EchoCookiesUrl(kHostB)));
ASSERT_THAT(
ExtractFrameContent(web_contents()->GetPrimaryMainFrame()),
net::CookieStringIs(UnorderedElementsAre(Key(kSameSiteNoneCookieName))));
ASSERT_TRUE(NavigateToURL(web_contents(), EchoCookiesUrl(kHostA)));
// Perform 'Post' to cross-site (kHostB) and confirm no cookie present in
// method response. Since there is no redirect action at the same time as
// the post, the cookie will be blocked as the request is being made
// cross-site.
EXPECT_THAT(PostWithCredentials(
web_contents()->GetPrimaryMainFrame(),
https_server()->GetURL(kHostB, kEchoCookiesWithCorsPath)),
"");
}
IN_PROC_BROWSER_TEST_F(ThirdPartyCookiesBlockedHttpCookieBrowserTest,
SameSiteNoneCookieCrossSiteSubresourceNavigationPost) {
// Set and confirm SameSite=None cookie on top-level-site kHostB.
ASSERT_TRUE(SetCookie(
web_contents()->GetBrowserContext(), https_server()->GetURL(kHostB, "/"),
base::StrCat({kSameSiteNoneCookieName, "=1;Secure;SameSite=None;"})));
ASSERT_TRUE(NavigateToURL(web_contents(), EchoCookiesUrl(kHostB)));
ASSERT_THAT(
ExtractFrameContent(web_contents()->GetPrimaryMainFrame()),
net::CookieStringIs(UnorderedElementsAre(Key(kSameSiteNoneCookieName))));
// Starting at kHostA create a form that has an action value that causes a
// navigation to a new top-level-site (kHostB). Submit the form to trigger the
// navigation and confirm that no error has occurred in the response.
ASSERT_TRUE(NavigateToURL(web_contents(), EchoCookiesUrl(kHostA)));
ASSERT_TRUE(
NavigateToURLWithPOST(web_contents()->GetPrimaryMainFrame(), kHostB)
.error.empty());
// Confirm that navigation from subresource occurred and cookies are still
// available.
EXPECT_THAT(web_contents()->GetLastCommittedURL().host(), kHostB);
EXPECT_THAT(
ExtractFrameContent(web_contents()->GetPrimaryMainFrame()),
net::CookieStringIs(UnorderedElementsAre(Key(kSameSiteNoneCookieName))));
}
IN_PROC_BROWSER_TEST_F(ThirdPartyCookiesBlockedHttpCookieBrowserTest,
RedirectCrossSiteSubresourceToSameSiteUrl) {
// Set and confirm SameSite=None cookie on top-level-site kHostA.
ASSERT_TRUE(SetCookie(
web_contents()->GetBrowserContext(), https_server()->GetURL(kHostA, "/"),
base::StrCat({kSameSiteNoneCookieName, "=1;Secure;SameSite=None;"})));
ASSERT_TRUE(NavigateToURL(web_contents(), EchoCookiesUrl(kHostA)));
ASSERT_THAT(
ExtractFrameContent(web_contents()->GetPrimaryMainFrame()),
net::CookieStringIs(UnorderedElementsAre(Key(kSameSiteNoneCookieName))));
// Perform redirect from cross-site subresource and ensure that no cookie was
// sent even though it was redirected to the top-level-site.
EXPECT_EQ(ReadCookiesViaFetchWithRedirect(
web_contents()->GetPrimaryMainFrame(), kHostB, kHostA),
"None");
}
IN_PROC_BROWSER_TEST_F(ThirdPartyCookiesBlockedHttpCookieBrowserTest,
SameSiteNoneCookieBlockedOnABEmbeddedIframe) {
// Set and confirm SameSite=None cookie on top-level-site kHostA is
// present in the cookie header, document.cookie and cookie store.
ASSERT_TRUE(SetCookie(
web_contents()->GetBrowserContext(), https_server()->GetURL(kHostA, "/"),
base::StrCat({kSameSiteNoneCookieName, "=1;Secure;SameSite=None;"})));
ASSERT_TRUE(NavigateToURL(web_contents(), EchoCookiesUrl(kHostA)));
// Confirm in cookie header.
ASSERT_THAT(
ExtractFrameContent(web_contents()->GetPrimaryMainFrame()),
net::CookieStringIs(UnorderedElementsAre(Key(kSameSiteNoneCookieName))));
// Confirm in document.cookie.
ASSERT_THAT(
ExtractCookieFromDocument(web_contents()->GetPrimaryMainFrame()),
net::CookieStringIs(UnorderedElementsAre(Key(kSameSiteNoneCookieName))));
// Confirm in cookie store.
ASSERT_TRUE(
GetCookies(web_contents()->GetBrowserContext(), EchoCookiesUrl(kHostA))
.starts_with(kSameSiteNoneCookieName));
ASSERT_TRUE(NavigateToURL(web_contents(), EchoCookiesUrl(kHostB)));
// Embed an iframe containing A in B and check cookie header.
EXPECT_THAT(content::ArrangeFramesAndGetContentFromLeaf(
web_contents(), https_server(),
FrameTreeForHostAndUrl(kHostB, EchoCookiesUrl(kHostA)), {0}),
"None");
// Check document.cookie.
EXPECT_TRUE(ExtractCookieFromDocument(
ChildFrameAt(web_contents()->GetPrimaryMainFrame(), 0))
.empty());
// Check cookie store.
EXPECT_TRUE(
CookieStoreEmpty(ChildFrameAt(web_contents()->GetPrimaryMainFrame(), 0)));
}
IN_PROC_BROWSER_TEST_F(
ThirdPartyCookiesBlockedHttpCookieBrowserTest,
SameSiteNoneCookieBlockedInCrossSiteFetchRequestFromTopLevelFrame) {
// Set and confirm SameSite=None cookie on Site A.
ASSERT_TRUE(SetCookie(
web_contents()->GetBrowserContext(), https_server()->GetURL(kHostA, "/"),
base::StrCat({kSameSiteNoneCookieName, "=1;Secure;SameSite=None;"})));
ASSERT_TRUE(NavigateToURL(web_contents(), EchoCookiesUrl(kHostA)));
ASSERT_THAT(
ExtractFrameContent(web_contents()->GetPrimaryMainFrame()),
net::CookieStringIs(UnorderedElementsAre(Key(kSameSiteNoneCookieName))));
// From site B make a fetch call (with credentials) from site B to site A; and
// check if cookies are present on the request.
ASSERT_TRUE(NavigateToURL(web_contents(), EchoCookiesUrl(kHostB)));
EXPECT_THAT(Fetch(web_contents()->GetPrimaryMainFrame(),
https_server()->GetURL(kHostA, kEchoCookiesWithCorsPath),
"cors", "include")
.ExtractString(),
net::CookieStringIs(IsEmpty()));
}
IN_PROC_BROWSER_TEST_F(ThirdPartyCookiesBlockedHttpCookieBrowserTest,
TestCrossSitePartitionKeyNotAvailable) {
// Set cookie for site A kSameSite ancestor.
// Create initial frame tree A->B (B is an iframe) and check cookie.
// Navigate iframe with site B to A and confirm that cookie is present.
// Set kSameSite cookie
ASSERT_TRUE(SetCookie(
web_contents()->GetBrowserContext(), https_server()->GetURL(kHostA, "/"),
base::StrCat(
{kSameSiteNoneCookieName, "=1;Secure;SameSite=None;Partitioned"}),
net::CookieOptions::SameSiteCookieContext::MakeInclusive(),
net::CookiePartitionKey::FromURLForTesting(
https_server()->GetURL(kHostA, "/"),
net::CookiePartitionKey::AncestorChainBit::kSameSite)));
// Embed an iframe containing B in A to create initial frame tree A->B.
ASSERT_EQ(content::ArrangeFramesAndGetContentFromLeaf(
web_contents(), https_server(),
FrameTreeForUrl(EchoCookiesUrl(kHostB)), {0}),
"None");
// Navigate embedded iframe B to A
ASSERT_TRUE(NavigateToURLFromRenderer(
ChildFrameAt(web_contents()->GetPrimaryMainFrame(), 0),
EchoCookiesUrl(kHostA)));
// Extract cookie from A
EXPECT_THAT(
ExtractFrameContent(
ChildFrameAt(web_contents()->GetPrimaryMainFrame(), 0)),
net::CookieStringIs(UnorderedElementsAre(Key(kSameSiteNoneCookieName))));
EXPECT_THAT(
ExtractCookieFromDocument(
ChildFrameAt(web_contents()->GetPrimaryMainFrame(), 0)),
net::CookieStringIs(UnorderedElementsAre(Key(kSameSiteNoneCookieName))));
}
IN_PROC_BROWSER_TEST_F(ThirdPartyCookiesBlockedHttpCookieBrowserTest,
TestSubresourceRedirects) {
// Initial frame tree A->B (B is an iframe).
// A cookie is set for site C.
// iframe B is navigated to site C.
// Frame tree becomes A->C (C is an iframe).
// Check if cookie set for C is present in C.
// Embed an iframe containing B in A to create initial frame tree A->B.
ASSERT_EQ(content::ArrangeFramesAndGetContentFromLeaf(
web_contents(), https_server(),
FrameTreeForUrl(EchoCookiesUrl(kHostB)), {0}),
"None");
// Set SameSite=None partitioned cookie for kHostC from embedded iframe B.
net::CookiePartitionKey partition_key =
net::CookiePartitionKey::FromURLForTesting(
https_server()->GetURL(kHostA, "/"),
net::CookiePartitionKey::AncestorChainBit::kCrossSite);
ASSERT_TRUE(SetCookie(
web_contents()->GetBrowserContext(), https_server()->GetURL(kHostC, "/"),
base::StrCat(
{kSameSiteNoneCookieName, "=1;Secure;SameSite=None;partitioned"}),
net::CookieOptions::SameSiteCookieContext(
net::CookieOptions::SameSiteCookieContext::ContextType::CROSS_SITE),
partition_key));
// confirm that there is a cookie with kHostC url in the mojom cookie manager
// and that the cookie is partitioned and third party.
std::vector<net::CanonicalCookie> cookies = GetCanonicalCookies(
web_contents()->GetBrowserContext(), https_server()->GetURL(kHostC, "/"),
net::CookiePartitionKeyCollection(partition_key));
ASSERT_EQ(cookies.size(), 1u);
ASSERT_TRUE(cookies[0].IsPartitioned());
ASSERT_TRUE(cookies[0].PartitionKey()->IsThirdParty());
// Navigate embedded iframe B to C
ASSERT_TRUE(NavigateToURLFromRenderer(
ChildFrameAt(web_contents()->GetPrimaryMainFrame(), 0),
EchoCookiesUrl(kHostC)));
// Extract cookie from C
EXPECT_THAT(
ExtractFrameContent(
ChildFrameAt(web_contents()->GetPrimaryMainFrame(), 0)),
net::CookieStringIs(UnorderedElementsAre(Key(kSameSiteNoneCookieName))));
EXPECT_THAT(
ExtractCookieFromDocument(
ChildFrameAt(web_contents()->GetPrimaryMainFrame(), 0)),
net::CookieStringIs(UnorderedElementsAre(Key(kSameSiteNoneCookieName))));
}
IN_PROC_BROWSER_TEST_F(ThirdPartyCookiesBlockedHttpCookieBrowserTest,
TestTopLevelRedirects) {
// Navigate to Site A and set cookie on site A.
// Redirect from site A to site B and back to site A.
// Confirm cookie is present on site A after redirection.
ASSERT_TRUE(NavigateToURL(web_contents(), EchoCookiesUrl(kHostA)));
// Check to make sure that there are no cookies set on kHostA.
ASSERT_THAT(ExtractFrameContent(web_contents()->GetPrimaryMainFrame()),
"None");
ASSERT_TRUE(SetCookie(
web_contents()->GetBrowserContext(), https_server()->GetURL(kHostA, "/"),
base::StrCat(
{kSameSiteNoneCookieName, "=1;Secure;SameSite=None;partitioned"}),
net::CookieOptions::SameSiteCookieContext::MakeInclusive(),
net::CookiePartitionKey::FromURLForTesting(
https_server()->GetURL(kHostA, "/"),
net::CookiePartitionKey::AncestorChainBit::kSameSite)));
// Perform redirect from site A to site B and back to site A.
ASSERT_TRUE(
NavigateToURL(web_contents(),
RedirectUrl(https_server(), kHostB, EchoCookiesUrl(kHostA)),
EchoCookiesUrl(kHostA)));
EXPECT_THAT(
ExtractFrameContent(web_contents()->GetPrimaryMainFrame()),
net::CookieStringIs(UnorderedElementsAre(Key(kSameSiteNoneCookieName))));
EXPECT_THAT(
ExtractCookieFromDocument(web_contents()->GetPrimaryMainFrame()),
net::CookieStringIs(UnorderedElementsAre(Key(kSameSiteNoneCookieName))));
}
IN_PROC_BROWSER_TEST_F(
ThirdPartyCookiesBlockedHttpCookieBrowserTest,
TestSameSiteEmbeddedResourceToCrossSiteEmbeddedResource) {
// Initial frame tree A1->A2 (A2 is an iframe)
// A cookie is set from top-level A1 for site B with kCrossSite ancestor chain
// bit. iframe A2 is navigated to site B. Frame tree becomes A1->B (B is an
// iframe). Check if cookie set from A1 is present in B.
// Embed an iframe containing A in A to create initial frame tree A->A.
ASSERT_EQ(content::ArrangeFramesAndGetContentFromLeaf(
web_contents(), https_server(),
FrameTreeForUrl(EchoCookiesUrl(kHostA)), {0}),
"None");
ASSERT_TRUE(SetCookie(
web_contents()->GetBrowserContext(), https_server()->GetURL(kHostB, "/"),
base::StrCat(
{kSameSiteNoneCookieName, "=1;Secure;SameSite=None;Partitioned"}),
net::CookieOptions::SameSiteCookieContext::MakeInclusive(),
net::CookiePartitionKey::FromURLForTesting(
https_server()->GetURL(kHostA, "/"),
net::CookiePartitionKey::AncestorChainBit::kCrossSite)));
// Navigate embedded iframe A2 to B.
ASSERT_TRUE(NavigateToURLFromRenderer(
ChildFrameAt(web_contents()->GetPrimaryMainFrame(), 0),
EchoCookiesUrl(kHostB)));
// Confirm that the cookie is in the header sent to the iframe.
EXPECT_THAT(
ExtractFrameContent(
ChildFrameAt(web_contents()->GetPrimaryMainFrame(), 0)),
net::CookieStringIs(UnorderedElementsAre(Key(kSameSiteNoneCookieName))));
EXPECT_THAT(
ExtractCookieFromDocument(
ChildFrameAt(web_contents()->GetPrimaryMainFrame(), 0)),
net::CookieStringIs(UnorderedElementsAre(Key(kSameSiteNoneCookieName))));
}
IN_PROC_BROWSER_TEST_F(ThirdPartyCookiesBlockedHttpCookieBrowserTest,
CrossSiteToSameSiteIframeRedirects) {
// Set partitioned kSameSite ancestor cookie on top level site A.
// Embed an iframe of site A and confirm cookie is accessible from iframe.
// Navigate the iframe to a cross-domain (site B) and redirect back to A.
// Confirm that cookie is accessible from the iframe.
ASSERT_TRUE(SetCookie(
web_contents()->GetBrowserContext(), https_server()->GetURL(kHostA, "/"),
base::StrCat(
{kSameSiteNoneCookieName, "=1;Secure;SameSite=None;Partitioned"}),
net::CookieOptions::SameSiteCookieContext::MakeInclusive(),
net::CookiePartitionKey::FromURLForTesting(
https_server()->GetURL(kHostA, "/"),
net::CookiePartitionKey::AncestorChainBit::kSameSite)));
// Embed an iframe containing A in A to create initial frame tree A->A.
// Confirm that partitioned cookie is accessible from the iframe.
ASSERT_EQ(content::ArrangeFramesAndGetContentFromLeaf(
web_contents(), https_server(),
FrameTreeForUrl(EchoCookiesUrl(kHostA)), {0}),
"samesite_none_cookie=1");
// Navigate the iframe from A to B to A.
ASSERT_TRUE(NavigateToURLFromRenderer(
ChildFrameAt(web_contents()->GetPrimaryMainFrame(), 0),
RedirectUrl(https_server(), kHostB, EchoCookiesUrl(kHostA)),
/*expected_commit_url=*/EchoCookiesUrl(kHostA)));
// Confirm that the cookie is in the header sent to the iframe.
EXPECT_THAT(
ExtractFrameContent(
ChildFrameAt(web_contents()->GetPrimaryMainFrame(), 0)),
net::CookieStringIs(UnorderedElementsAre(Key(kSameSiteNoneCookieName))));
EXPECT_THAT(
ExtractCookieFromDocument(
ChildFrameAt(web_contents()->GetPrimaryMainFrame(), 0)),
net::CookieStringIs(UnorderedElementsAre(Key(kSameSiteNoneCookieName))));
}
IN_PROC_BROWSER_TEST_F(ThirdPartyCookiesBlockedHttpCookieBrowserTest,
RedirectCrossSiteThroughSameSiteIframe) {
// Set partitioned kSameSite ancestor cookie on top level site A.
// Embed an iframe of site A and confirm cookie is accessible from iframe.
// Navigate the iframe to a cross-domain (site B) and redirect back to a
// different page with domain of A and then redirect back to the original
// site. Confirm that cookie is accessible from the header in the final
// redirect.
ASSERT_TRUE(SetCookie(
web_contents()->GetBrowserContext(), https_server()->GetURL(kHostA, "/"),
base::StrCat(
{kSameSiteNoneCookieName, "=1;Secure;SameSite=None;Partitioned"}),
net::CookieOptions::SameSiteCookieContext::MakeInclusive(),
net::CookiePartitionKey::FromURLForTesting(
https_server()->GetURL(kHostA, "/"),
net::CookiePartitionKey::AncestorChainBit::kSameSite)));
// Embed an iframe containing A in A to create initial frame tree A->A.
// Confirm that partitioned cookie is accessible from the iframe.
ASSERT_EQ(content::ArrangeFramesAndGetContentFromLeaf(
web_contents(), https_server(),
FrameTreeForUrl(EchoCookiesUrl(kHostA)), {0}),
"samesite_none_cookie=1");
// Navigate the iframe from A to B redirecting to A redirecting to A.
ASSERT_TRUE(NavigateToURLFromRenderer(
ChildFrameAt(web_contents()->GetPrimaryMainFrame(), 0),
RedirectUrl(https_server(), kHostB,
RedirectUrl(https_server(), kHostA, EchoCookiesUrl(kHostA))),
/*expected_commit_url=*/EchoCookiesUrl(kHostA)));
// Confirm that the cookie is in the header sent to the iframe.
EXPECT_THAT(
ExtractFrameContent(
ChildFrameAt(web_contents()->GetPrimaryMainFrame(), 0)),
net::CookieStringIs(UnorderedElementsAre(Key(kSameSiteNoneCookieName))));
EXPECT_THAT(
ExtractCookieFromDocument(
ChildFrameAt(web_contents()->GetPrimaryMainFrame(), 0)),
net::CookieStringIs(UnorderedElementsAre(Key(kSameSiteNoneCookieName))));
}
IN_PROC_BROWSER_TEST_F(ThirdPartyCookiesBlockedHttpCookieBrowserTest,
RedirectTwoCrossSitesThroughSameSiteIframe) {
// Set partitioned kSameSite ancestor cookie on top level site A.
// Embed an iframe of site A and confirm cookie is accessible from iframe.
// Navigate the iframe to a cross-domain (site B) and redirect to a second
// cross-domain (site C) and then redirect back to A.
// Confirm that cookie is accessible from the header in the final
// redirect.
ASSERT_TRUE(SetCookie(
web_contents()->GetBrowserContext(), https_server()->GetURL(kHostA, "/"),
base::StrCat(
{kSameSiteNoneCookieName, "=1;Secure;SameSite=None;Partitioned"}),
net::CookieOptions::SameSiteCookieContext::MakeInclusive(),
net::CookiePartitionKey::FromURLForTesting(
https_server()->GetURL(kHostA, "/"),
net::CookiePartitionKey::AncestorChainBit::kSameSite)));
// Embed an iframe containing A in A to create initial frame tree A->A.
// Confirm that partitioned cookie is accessible from the iframe.
ASSERT_EQ(content::ArrangeFramesAndGetContentFromLeaf(
web_contents(), https_server(),
FrameTreeForUrl(EchoCookiesUrl(kHostA)), {0}),
"samesite_none_cookie=1");
// Navigate the iframe from A to B redirecting to C and then back to A.
ASSERT_TRUE(NavigateToURLFromRenderer(
ChildFrameAt(web_contents()->GetPrimaryMainFrame(), 0),
RedirectUrl(https_server(), kHostB,
RedirectUrl(https_server(), kHostC,
RedirectUrl(https_server(), kHostA,
EchoCookiesUrl(kHostA)))),
EchoCookiesUrl(kHostA)));
// Confirm that the cookie is in the header sent to the iframe.
EXPECT_THAT(
ExtractFrameContent(
ChildFrameAt(web_contents()->GetPrimaryMainFrame(), 0)),
net::CookieStringIs(UnorderedElementsAre(Key(kSameSiteNoneCookieName))));
EXPECT_THAT(
ExtractCookieFromDocument(
ChildFrameAt(web_contents()->GetPrimaryMainFrame(), 0)),
net::CookieStringIs(UnorderedElementsAre(Key(kSameSiteNoneCookieName))));
}
IN_PROC_BROWSER_TEST_F(
ThirdPartyCookiesBlockedHttpCookieBrowserTest,
RedirectCrossSiteIframeToSameSiteThenNavigateToSameSite) {
// Set partitioned kSameSite ancestor cookie on top level site A.
// Embed an iframe of site A and confirm cookie is accessible from iframe.
// Navigate the iframe to a cross-domain (site B) and redirect back to site A.
// Then navigate to site A again.
// Confirm that cookie is accessible from the header in the final navigation.
ASSERT_TRUE(SetCookie(
web_contents()->GetBrowserContext(), https_server()->GetURL(kHostA, "/"),
base::StrCat(
{kSameSiteNoneCookieName, "=1;Secure;SameSite=None;Partitioned"}),
net::CookieOptions::SameSiteCookieContext::MakeInclusive(),
net::CookiePartitionKey::FromURLForTesting(
https_server()->GetURL(kHostA, "/"),
net::CookiePartitionKey::AncestorChainBit::kSameSite)));
// Embed an iframe containing A in A to create initial frame tree A->A.
// Confirm that partitioned cookie is accessible from the iframe.
ASSERT_EQ(content::ArrangeFramesAndGetContentFromLeaf(
web_contents(), https_server(),
FrameTreeForUrl(EchoCookiesUrl(kHostA)), {0}),
"samesite_none_cookie=1");
// Navigate the iframe from A to B redirecting to A.
ASSERT_TRUE(NavigateToURLFromRenderer(
ChildFrameAt(web_contents()->GetPrimaryMainFrame(), 0),
RedirectUrl(https_server(), kHostB, EchoCookiesUrl(kHostA)),
/*expected_commit_url=*/EchoCookiesUrl(kHostA)));
// Navigate to A from the iframe A that was redirected to site A from B.
ASSERT_TRUE(NavigateToURLFromRenderer(
ChildFrameAt(web_contents()->GetPrimaryMainFrame(), 0),
EchoCookiesUrl(kHostA)));
// Confirm that the cookie is in the header sent to the iframe.
EXPECT_THAT(
ExtractFrameContent(
ChildFrameAt(web_contents()->GetPrimaryMainFrame(), 0)),
net::CookieStringIs(UnorderedElementsAre(Key(kSameSiteNoneCookieName))));
EXPECT_THAT(
ExtractCookieFromDocument(
ChildFrameAt(web_contents()->GetPrimaryMainFrame(), 0)),
net::CookieStringIs(UnorderedElementsAre(Key(kSameSiteNoneCookieName))));
}
IN_PROC_BROWSER_TEST_F(ThirdPartyCookiesBlockedHttpCookieBrowserTest,
CrossSiteToSameSiteIframeNavigation) {
// Set partitioned kSameSite ancestor cookie on top level site A.
// Embed an iframe of site A and confirm cookie is accessible from iframe.
// Navigate the iframe to a cross-domain (site B).
// Then navigate the iframe back to site A.
// Confirm that cookie is accessible from the iframe.
ASSERT_TRUE(SetCookie(
web_contents()->GetBrowserContext(), https_server()->GetURL(kHostA, "/"),
base::StrCat(
{kSameSiteNoneCookieName, "=1;Secure;SameSite=None;Partitioned"}),
net::CookieOptions::SameSiteCookieContext::MakeInclusive(),
net::CookiePartitionKey::FromURLForTesting(
https_server()->GetURL(kHostA, "/"),
net::CookiePartitionKey::AncestorChainBit::kSameSite)));
// Embed an iframe containing A in A to create initial frame tree A->A.
// Confirm that partitioned cookie is accessible from the iframe.
ASSERT_EQ(content::ArrangeFramesAndGetContentFromLeaf(
web_contents(), https_server(),
FrameTreeForUrl(EchoCookiesUrl(kHostA)), {0}),
"samesite_none_cookie=1");
// Navigate the iframe from A to B. Then B to A.
ASSERT_TRUE(NavigateToURLFromRenderer(
ChildFrameAt(web_contents()->GetPrimaryMainFrame(), 0),
EchoCookiesUrl(kHostB)));
ASSERT_TRUE(NavigateToURLFromRenderer(
ChildFrameAt(web_contents()->GetPrimaryMainFrame(), 0),
EchoCookiesUrl(kHostA)));
// Confirm that the cookie is in the header sent to the iframe.
EXPECT_THAT(
ExtractFrameContent(
ChildFrameAt(web_contents()->GetPrimaryMainFrame(), 0)),
net::CookieStringIs(UnorderedElementsAre(Key(kSameSiteNoneCookieName))));
EXPECT_THAT(
ExtractCookieFromDocument(
ChildFrameAt(web_contents()->GetPrimaryMainFrame(), 0)),
net::CookieStringIs(UnorderedElementsAre(Key(kSameSiteNoneCookieName))));
}
class DevToolsOverridesThirdPartyCookiesBrowserTest
: public ThirdPartyCookiesHttpCookieBrowserTest {
public:
DevToolsOverridesThirdPartyCookiesBrowserTest() = default;
~DevToolsOverridesThirdPartyCookiesBrowserTest() override = default;
void SetUpOnMainThread() override {
ThirdPartyCookiesHttpCookieBrowserTest::SetUpOnMainThread();
web_contents_devtools_client.AttachToWebContents(shell()->web_contents());
web_contents_devtools_client.SendCommandAsync("Network.enable");
}
void TearDownOnMainThread() override {
web_contents_devtools_client.DetachProtocolClient();
frame_devtools_client.DetachProtocolClient();
}
protected:
void NavigateToPageWith3pIFrame(std::string_view host) {
frame_devtools_client.DetachProtocolClient();
GURL main_url(https_server()->GetURL(host, "/page_with_blank_iframe.html"));
ASSERT_TRUE(content::NavigateToURL(web_contents(), main_url));
EXPECT_TRUE(
NavigateIframeToURL(web_contents(), "test_iframe",
https_server()->GetURL(kHostB, "/empty.html")));
frame_devtools_client.AttachToFrameTreeHost(GetFrame());
frame_devtools_client.SendCommandSync("Network.enable");
}
content::RenderFrameHost* GetFrame() {
return ChildFrameAt(web_contents()->GetPrimaryMainFrame(), 0);
}
std::string SetCookieFromJS(content::RenderFrameHost* render_frame_host,
std::string cookie) {
content::EvalJsResult result = content::EvalJs(
render_frame_host,
"document.cookie = '" + cookie + "; SameSite=None; Secure'",
content::EXECUTE_SCRIPT_NO_USER_GESTURE);
return result.ExtractString();
}
std::string ReadCookiesFromJS(content::RenderFrameHost* render_frame_host) {
std::string res = content::EvalJs(render_frame_host, "document.cookie",
content::EXECUTE_SCRIPT_NO_USER_GESTURE)
.ExtractString();
return res;
}
void SendSetCookieControls(bool enable_third_party_cookie_restriction,
bool disable_third_party_cookie_metadata,
bool disable_third_party_cookie_heuristics) {
base::Value::Dict command_params;
web_contents_devtools_client.SendCommandSync("Network.enable");
command_params.Set("enableThirdPartyCookieRestriction",
enable_third_party_cookie_restriction);
command_params.Set("disableThirdPartyCookieMetadata",
disable_third_party_cookie_metadata);
command_params.Set("disableThirdPartyCookieHeuristics",
disable_third_party_cookie_heuristics);
web_contents_devtools_client.SendCommandSync("Network.setCookieControls",
std::move(command_params));
}
content::TestDevToolsProtocolClient web_contents_devtools_client;
content::TestDevToolsProtocolClient frame_devtools_client;
};
IN_PROC_BROWSER_TEST_F(DevToolsOverridesThirdPartyCookiesBrowserTest,
DevToolsForceDisableTPCFromJS) {
// Third-party access should work initially
NavigateToPageWith3pIFrame(kHostA);
SetCookieFromJS(GetFrame(), "cookieAllowed=true");
EXPECT_EQ(ReadCookiesFromJS(GetFrame()), "cookieAllowed=true");
// Turning on third-party cookie restriction
SendSetCookieControls(/*enable_third_party_cookie_restriction=*/true,
/*disable_third_party_cookie_metadata=*/false,
/*disable_third_party_cookie_heuristics=*/false);
// Refreshing so that RCM is re-created with new controls
NavigateToPageWith3pIFrame("a.test");
// Both of these should get blocked now
SetCookieFromJS(GetFrame(), "cookieAllowed=false");
EXPECT_EQ(ReadCookiesFromJS(GetFrame()), "");
// Disabling the network domain should return to normal (unblocked) cookie
// state
frame_devtools_client.SendCommandSync("Network.disable");
web_contents_devtools_client.SendCommandSync("Network.disable");
// The cookie should be the same as before proving that the last
// SetCookieFromJS didn't update the cookie
EXPECT_EQ(ReadCookiesFromJS(GetFrame()), "cookieAllowed=true");
}
IN_PROC_BROWSER_TEST_F(DevToolsOverridesThirdPartyCookiesBrowserTest,
DevToolsForceDisableTPC) {
// Set SameSite=None cookie on top-level-site kHostA.
ASSERT_TRUE(SetCookie(
web_contents()->GetBrowserContext(), https_server()->GetURL(kHostA, "/"),
base::StrCat({kSameSiteNoneCookieName, "=1;Secure;SameSite=None;"})));
ASSERT_TRUE(NavigateToURL(web_contents(), EchoCookiesUrl(kHostA)));
ASSERT_THAT(
ExtractFrameContent(web_contents()->GetPrimaryMainFrame()),
net::CookieStringIs(UnorderedElementsAre(Key(kSameSiteNoneCookieName))));
// Embed an iframe containing A in B and check 3pc is allowed.
ASSERT_THAT(
content::ArrangeFramesAndGetContentFromLeaf(
web_contents(), https_server(),
FrameTreeForHostAndUrl(kHostB, EchoCookiesUrl(kHostA)), {0}),
net::CookieStringIs(UnorderedElementsAre(Key(kSameSiteNoneCookieName))));
// Apply devtools overrides to enable 3pc restriction.
SendSetCookieControls(/*enable_third_party_cookie_restriction=*/true,
/*disable_third_party_cookie_metadata=*/false,
/*disable_third_party_cookie_heuristics=*/false);
// 3pc should be blocked due to devtools overrides.
EXPECT_THAT(content::ArrangeFramesAndGetContentFromLeaf(
web_contents(), https_server(),
FrameTreeForHostAndUrl(kHostB, EchoCookiesUrl(kHostA)), {0}),
"None");
EXPECT_THAT(Fetch(web_contents()->GetPrimaryMainFrame(),
https_server()->GetURL(kHostA, kEchoCookiesWithCorsPath),
"cors", "include")
.ExtractString(),
net::CookieStringIs(IsEmpty()));
web_contents_devtools_client.SendCommandAsync("Network.disable");
// The override should stop working and 3pc is re-allowed after devtools is
// disabled.
EXPECT_THAT(
content::ArrangeFramesAndGetContentFromLeaf(
web_contents(), https_server(),
FrameTreeForHostAndUrl(kHostB, EchoCookiesUrl(kHostA)), {0}),
net::CookieStringIs(UnorderedElementsAre(Key(kSameSiteNoneCookieName))));
EXPECT_THAT(
Fetch(web_contents()->GetPrimaryMainFrame(),
https_server()->GetURL(kHostA, kEchoCookiesWithCorsPath), "cors",
"include")
.ExtractString(),
net::CookieStringIs(UnorderedElementsAre(Key(kSameSiteNoneCookieName))));
}
INSTANTIATE_TEST_SUITE_P(/* no label */,
HttpCookieBrowserTest,
::testing::Bool());
} // namespace
} // namespace content
|