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
|
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <memory>
#include <string_view>
#include "base/command_line.h"
#include "base/functional/bind.h"
#include "base/strings/string_number_conversions.h"
#include "base/strings/stringprintf.h"
#include "base/strings/to_string.h"
#include "base/strings/utf_string_conversions.h"
#include "base/synchronization/lock.h"
#include "base/thread_annotations.h"
#include "build/build_config.h"
#include "chrome/app/chrome_command_ids.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/net/system_network_context_manager.h"
#include "chrome/browser/renderer_context_menu/render_view_context_menu.h"
#include "chrome/browser/renderer_context_menu/render_view_context_menu_browsertest_util.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/browser_commands.h"
#include "chrome/browser/ui/tabs/tab_strip_model.h"
#include "chrome/common/chrome_features.h"
#include "chrome/common/pref_names.h"
#include "chrome/test/base/in_process_browser_test.h"
#include "chrome/test/base/ui_test_utils.h"
#include "components/prefs/pref_service.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/browser/navigation_controller.h"
#include "content/public/browser/navigation_entry.h"
#include "content/public/browser/render_view_host.h"
#include "content/public/browser/render_widget_host.h"
#include "content/public/browser/storage_partition.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 "net/base/features.h"
#include "net/test/embedded_test_server/http_request.h"
#include "services/network/public/mojom/referrer_policy.mojom-shared.h"
#include "third_party/blink/public/common/features.h"
#include "third_party/blink/public/common/input/web_input_event.h"
#include "third_party/blink/public/common/input/web_mouse_event.h"
#include "third_party/blink/public/common/loader/referrer_utils.h"
#include "third_party/blink/public/common/switches.h"
#include "ui/base/page_transition_types.h"
#include "ui/base/window_open_disposition.h"
class ReferrerPolicyTest : public InProcessBrowserTest {
public:
ReferrerPolicyTest() : https_server_(net::EmbeddedTestServer::TYPE_HTTPS) {
// Subclasses might want to verify the requests that arrive at servers;
// register a default no-op handler that subclasses may override.
embedded_test_server()->RegisterRequestMonitor(base::BindRepeating(
&ReferrerPolicyTest::OnServerIncomingRequest, base::Unretained(this)));
https_server_.RegisterRequestMonitor(base::BindRepeating(
&ReferrerPolicyTest::OnServerIncomingRequest, base::Unretained(this)));
https_server_.AddDefaultHandlers(GetChromeTestDataDir());
EXPECT_TRUE(embedded_test_server()->Start());
EXPECT_TRUE(https_server_.Start());
}
~ReferrerPolicyTest() override = default;
enum ExpectedReferrer {
EXPECT_EMPTY_REFERRER,
EXPECT_FULL_REFERRER,
EXPECT_ORIGIN_AS_REFERRER
};
void SetUpCommandLine(base::CommandLine* command_line) override {
// Some builders are flaky due to slower loading interacting
// with deferred commits.
command_line->AppendSwitch(blink::switches::kAllowPreCommitInput);
}
protected:
// Callback to verify that HTTP requests have the correct headers;
// currently, (See the comment on RequestCheck, below.)
virtual void OnServerIncomingRequest(
const net::test_server::HttpRequest& request) {
base::AutoLock lock(check_on_requests_lock_);
if (!check_on_requests_)
return;
if (request.relative_url != check_on_requests_->destination_url_to_match)
return;
auto it = request.headers.find("Referer");
if (check_on_requests_->expected_spec.empty()) {
EXPECT_TRUE(it == request.headers.end()) << it->second;
} else {
EXPECT_TRUE(it != request.headers.end());
if (it != request.headers.end())
EXPECT_EQ(it->second, check_on_requests_->expected_spec);
}
}
// Returns the expected title for the tab with the given (full) referrer and
// the expected modification of it.
std::u16string GetExpectedTitle(const GURL& url,
ExpectedReferrer expected_referrer) {
std::string referrer;
switch (expected_referrer) {
case EXPECT_EMPTY_REFERRER:
referrer = "Referrer is empty";
break;
case EXPECT_FULL_REFERRER:
referrer = "Referrer is " + url.spec();
break;
case EXPECT_ORIGIN_AS_REFERRER:
referrer = "Referrer is " + url.GetWithEmptyPath().spec();
break;
}
return base::ASCIIToUTF16(referrer);
}
// Adds all possible titles to the TitleWatcher, so we don't time out
// waiting for the title if the test fails.
void AddAllPossibleTitles(const GURL& url,
content::TitleWatcher* title_watcher) {
title_watcher->AlsoWaitForTitle(
GetExpectedTitle(url, EXPECT_EMPTY_REFERRER));
title_watcher->AlsoWaitForTitle(
GetExpectedTitle(url, EXPECT_FULL_REFERRER));
title_watcher->AlsoWaitForTitle(
GetExpectedTitle(url, EXPECT_ORIGIN_AS_REFERRER));
}
enum StartOnProtocol { START_ON_HTTP, START_ON_HTTPS, };
enum LinkType { REGULAR_LINK, LINK_WITH_TARGET_BLANK, };
enum RedirectType {
NO_REDIRECT, // direct navigation via HTTP
HTTPS_NO_REDIRECT, // direct navigation via HTTPS
SERVER_REDIRECT_FROM_HTTPS_TO_HTTP,
SERVER_REDIRECT_FROM_HTTP_TO_HTTP,
SERVER_REDIRECT_FROM_HTTP_TO_HTTPS
};
enum RendererOrBrowserInitiated { RENDERER_INITIATED, BROWSER_INITIATED };
// Navigates from a page with a given |referrer_policy| and checks that the
// reported referrer matches the expectation.
// Parameters:
// referrer_policy: The referrer policy to test.
// start_protocol: The protocol the test should start on.
// link_type: The link type that is used to trigger the navigation.
// redirect: Whether the link target should redirect and how.
// disposition: The disposition for the navigation.
// button: If not WebMouseEvent::Button::NoButton, click on the
// link with the specified mouse button.
// expected_referrer: The kind of referrer to expect.
// expected_referrer_policy: The expected referrer policy of the activity.
// renderer_or_browser_initiated: If BROWSER_INITIATED, uses Navigate() to
// load in the current WebContents and disregards the value of |button|.
//
// Returns:
// The URL of the first page navigated to.
GURL RunReferrerTest(const network::mojom::ReferrerPolicy referrer_policy,
StartOnProtocol start_protocol,
LinkType link_type,
RedirectType redirect,
WindowOpenDisposition disposition,
blink::WebMouseEvent::Button button,
ExpectedReferrer expected_referrer,
network::mojom::ReferrerPolicy expected_referrer_policy,
RendererOrBrowserInitiated
renderer_or_browser_initiated = RENDERER_INITIATED) {
GURL redirect_url;
switch (redirect) {
case NO_REDIRECT:
redirect_url = embedded_test_server()->GetURL(
"/referrer_policy/referrer-policy-log.html");
break;
case HTTPS_NO_REDIRECT:
redirect_url =
https_server_.GetURL("/referrer_policy/referrer-policy-log.html");
break;
case SERVER_REDIRECT_FROM_HTTPS_TO_HTTP:
redirect_url = https_server_.GetURL(
std::string("/server-redirect?") +
embedded_test_server()
->GetURL("/referrer_policy/referrer-policy-log.html")
.spec());
break;
case SERVER_REDIRECT_FROM_HTTP_TO_HTTP:
redirect_url = embedded_test_server()->GetURL(
std::string("/server-redirect?") +
embedded_test_server()
->GetURL("/referrer_policy/referrer-policy-log.html")
.spec());
break;
case SERVER_REDIRECT_FROM_HTTP_TO_HTTPS:
redirect_url = embedded_test_server()->GetURL(
std::string("/server-redirect?") +
https_server_.GetURL("/referrer_policy/referrer-policy-log.html")
.spec());
break;
}
std::string relative_url =
std::string("/referrer_policy/referrer-policy-start.html?") +
"policy=" + content::ReferrerPolicyToString(referrer_policy) +
"&redirect=" + redirect_url.spec() + "&link=" +
base::ToString(!(button == blink::WebMouseEvent::Button::kNoButton &&
renderer_or_browser_initiated == RENDERER_INITIATED)) +
"&target=" + (link_type == LINK_WITH_TARGET_BLANK ? "_blank" : "");
auto* start_test_server = start_protocol == START_ON_HTTPS
? &https_server_
: embedded_test_server();
const GURL start_url = start_test_server->GetURL(relative_url);
ui_test_utils::AllBrowserTabAddedWaiter add_tab;
std::u16string expected_title =
GetExpectedTitle(start_url, expected_referrer);
content::WebContents* tab =
browser()->tab_strip_model()->GetActiveWebContents();
content::TitleWatcher title_watcher(tab, expected_title);
std::string expected_referrer_value;
if (expected_referrer != EXPECT_EMPTY_REFERRER) {
expected_referrer_value =
base::UTF16ToASCII(expected_title)
.substr(std::string_view("Referrer is ").size());
}
base::ReleasableAutoLock releaseable_lock(&check_on_requests_lock_);
check_on_requests_ = RequestCheck{
expected_referrer_value, "/referrer_policy/referrer-policy-log.html"};
releaseable_lock.Release();
// Watch for all possible outcomes to avoid timeouts if something breaks.
AddAllPossibleTitles(start_url, &title_watcher);
EXPECT_TRUE(ui_test_utils::NavigateToURL(browser(), start_url));
if (renderer_or_browser_initiated == BROWSER_INITIATED) {
CHECK(disposition == WindowOpenDisposition::CURRENT_TAB);
NavigateParams params(browser(), redirect_url, ui::PAGE_TRANSITION_LINK);
params.referrer = content::Referrer(
tab->GetController().GetVisibleEntry()->GetURL(), referrer_policy);
params.source_contents = tab;
ui_test_utils::NavigateToURL(¶ms);
} else if (button != blink::WebMouseEvent::Button::kNoButton) {
blink::WebMouseEvent mouse_event(
blink::WebInputEvent::Type::kMouseDown,
blink::WebInputEvent::kNoModifiers,
blink::WebInputEvent::GetStaticTimeStampForTests());
mouse_event.button = button;
mouse_event.SetPositionInWidget(15, 15);
mouse_event.click_count = 1;
tab->GetPrimaryMainFrame()
->GetRenderViewHost()
->GetWidget()
->ForwardMouseEvent(mouse_event);
mouse_event.SetType(blink::WebInputEvent::Type::kMouseUp);
tab->GetPrimaryMainFrame()
->GetRenderViewHost()
->GetWidget()
->ForwardMouseEvent(mouse_event);
}
if (disposition == WindowOpenDisposition::CURRENT_TAB) {
EXPECT_EQ(expected_title, title_watcher.WaitAndGetTitle());
} else {
tab = add_tab.Wait();
EXPECT_TRUE(tab);
content::TitleWatcher title_watcher2(tab, expected_title);
// Watch for all possible outcomes to avoid timeouts if something breaks.
AddAllPossibleTitles(start_url, &title_watcher2);
EXPECT_EQ(expected_title, title_watcher2.WaitAndGetTitle());
}
EXPECT_EQ(expected_referrer_policy,
tab->GetController().GetVisibleEntry()->GetReferrer().policy);
base::AutoLock lock(check_on_requests_lock_);
check_on_requests_.reset();
return start_url;
}
// Shorthand for cases where |referrer_policy| is the expected policy.
GURL RunReferrerTest(const network::mojom::ReferrerPolicy referrer_policy,
StartOnProtocol start_protocol,
LinkType link_type,
RedirectType redirect,
WindowOpenDisposition disposition,
blink::WebMouseEvent::Button button,
ExpectedReferrer expected_referrer) {
return RunReferrerTest(referrer_policy, start_protocol, link_type, redirect,
disposition, button, expected_referrer,
referrer_policy);
}
net::EmbeddedTestServer https_server_;
// If "check_on_requests_" is set, for each HTTP request that arrives at
// either of the embedded test servers ("embedded_test_server()" and
// "https_server_"), if the relative URL equals that stored in
// "destination_url_to_match", OnServerIncomingRequest will assert
// that the provided Referer header's value equals the value of
// "expected_spec".
struct RequestCheck {
std::string expected_spec;
std::string destination_url_to_match;
};
base::Lock check_on_requests_lock_;
std::optional<RequestCheck> check_on_requests_
GUARDED_BY(check_on_requests_lock_);
};
// The basic behavior of referrer policies is covered by layout tests in
// http/tests/security/referrer-policy-*. These tests cover (hopefully) all
// code paths chrome uses to navigate. To keep the number of combinations down,
// we only test the "origin" policy here.
// Content initiated navigation, from HTTP to HTTP.
IN_PROC_BROWSER_TEST_F(ReferrerPolicyTest, Origin) {
RunReferrerTest(network::mojom::ReferrerPolicy::kOrigin, START_ON_HTTP,
REGULAR_LINK, NO_REDIRECT, WindowOpenDisposition::CURRENT_TAB,
blink::WebMouseEvent::Button::kNoButton,
EXPECT_ORIGIN_AS_REFERRER);
}
// Content initiated navigation, from HTTPS to HTTP.
IN_PROC_BROWSER_TEST_F(ReferrerPolicyTest, HttpsDefault) {
RunReferrerTest(network::mojom::ReferrerPolicy::kOrigin, START_ON_HTTPS,
REGULAR_LINK, NO_REDIRECT, WindowOpenDisposition::CURRENT_TAB,
blink::WebMouseEvent::Button::kNoButton,
EXPECT_ORIGIN_AS_REFERRER);
}
// User initiated navigation, from HTTP to HTTP.
IN_PROC_BROWSER_TEST_F(ReferrerPolicyTest, LeftClickOrigin) {
RunReferrerTest(network::mojom::ReferrerPolicy::kOrigin, START_ON_HTTP,
REGULAR_LINK, NO_REDIRECT, WindowOpenDisposition::CURRENT_TAB,
blink::WebMouseEvent::Button::kLeft,
EXPECT_ORIGIN_AS_REFERRER);
}
// User initiated navigation, from HTTPS to HTTP.
IN_PROC_BROWSER_TEST_F(ReferrerPolicyTest, HttpsLeftClickOrigin) {
RunReferrerTest(network::mojom::ReferrerPolicy::kOrigin, START_ON_HTTPS,
REGULAR_LINK, NO_REDIRECT, WindowOpenDisposition::CURRENT_TAB,
blink::WebMouseEvent::Button::kLeft,
EXPECT_ORIGIN_AS_REFERRER);
}
// User initiated navigation, middle click, from HTTP to HTTP.
IN_PROC_BROWSER_TEST_F(ReferrerPolicyTest, MiddleClickOrigin) {
RunReferrerTest(
network::mojom::ReferrerPolicy::kOrigin, START_ON_HTTP, REGULAR_LINK,
NO_REDIRECT, WindowOpenDisposition::NEW_BACKGROUND_TAB,
blink::WebMouseEvent::Button::kMiddle, EXPECT_ORIGIN_AS_REFERRER);
}
// User initiated navigation, middle click, from HTTPS to HTTP.
IN_PROC_BROWSER_TEST_F(ReferrerPolicyTest, HttpsMiddleClickOrigin) {
RunReferrerTest(
network::mojom::ReferrerPolicy::kOrigin, START_ON_HTTPS, REGULAR_LINK,
NO_REDIRECT, WindowOpenDisposition::NEW_BACKGROUND_TAB,
blink::WebMouseEvent::Button::kMiddle, EXPECT_ORIGIN_AS_REFERRER);
}
// User initiated navigation, target blank, from HTTP to HTTP.
IN_PROC_BROWSER_TEST_F(ReferrerPolicyTest, TargetBlankOrigin) {
RunReferrerTest(network::mojom::ReferrerPolicy::kOrigin, START_ON_HTTP,
LINK_WITH_TARGET_BLANK, NO_REDIRECT,
WindowOpenDisposition::NEW_FOREGROUND_TAB,
blink::WebMouseEvent::Button::kLeft,
EXPECT_ORIGIN_AS_REFERRER);
}
// User initiated navigation, target blank, from HTTPS to HTTP.
IN_PROC_BROWSER_TEST_F(ReferrerPolicyTest, HttpsTargetBlankOrigin) {
RunReferrerTest(network::mojom::ReferrerPolicy::kOrigin, START_ON_HTTPS,
LINK_WITH_TARGET_BLANK, NO_REDIRECT,
WindowOpenDisposition::NEW_FOREGROUND_TAB,
blink::WebMouseEvent::Button::kLeft,
EXPECT_ORIGIN_AS_REFERRER);
}
// User initiated navigation, middle click, target blank, from HTTP to HTTP.
IN_PROC_BROWSER_TEST_F(ReferrerPolicyTest, MiddleClickTargetBlankOrigin) {
RunReferrerTest(network::mojom::ReferrerPolicy::kOrigin, START_ON_HTTP,
LINK_WITH_TARGET_BLANK, NO_REDIRECT,
WindowOpenDisposition::NEW_FOREGROUND_TAB,
blink::WebMouseEvent::Button::kMiddle,
EXPECT_ORIGIN_AS_REFERRER);
}
// User initiated navigation, middle click, target blank, from HTTPS to HTTP.
IN_PROC_BROWSER_TEST_F(ReferrerPolicyTest, HttpsMiddleClickTargetBlankOrigin) {
RunReferrerTest(network::mojom::ReferrerPolicy::kOrigin, START_ON_HTTPS,
LINK_WITH_TARGET_BLANK, NO_REDIRECT,
WindowOpenDisposition::NEW_FOREGROUND_TAB,
blink::WebMouseEvent::Button::kMiddle,
EXPECT_ORIGIN_AS_REFERRER);
}
// Context menu, from HTTP to HTTP.
IN_PROC_BROWSER_TEST_F(ReferrerPolicyTest, ContextMenuOrigin) {
ContextMenuNotificationObserver context_menu_observer(
IDC_CONTENT_CONTEXT_OPENLINKNEWTAB);
RunReferrerTest(
network::mojom::ReferrerPolicy::kOrigin, START_ON_HTTP, REGULAR_LINK,
NO_REDIRECT, WindowOpenDisposition::NEW_FOREGROUND_TAB,
blink::WebMouseEvent::Button::kRight, EXPECT_ORIGIN_AS_REFERRER);
}
// Context menu, from HTTPS to HTTP.
// TODO(crbug.com/40803947): Fix flakiness on Linux then reenable.
#if BUILDFLAG(IS_LINUX)
#define MAYBE_HttpsContextMenuOrigin DISABLED_HttpsContextMenuOrigin
#else
#define MAYBE_HttpsContextMenuOrigin HttpsContextMenuOrigin
#endif
IN_PROC_BROWSER_TEST_F(ReferrerPolicyTest, MAYBE_HttpsContextMenuOrigin) {
ContextMenuNotificationObserver context_menu_observer(
IDC_CONTENT_CONTEXT_OPENLINKNEWTAB);
RunReferrerTest(
network::mojom::ReferrerPolicy::kOrigin, START_ON_HTTPS, REGULAR_LINK,
NO_REDIRECT, WindowOpenDisposition::NEW_FOREGROUND_TAB,
blink::WebMouseEvent::Button::kRight, EXPECT_ORIGIN_AS_REFERRER);
}
// Content initiated navigation, from HTTP to HTTP via server redirect.
IN_PROC_BROWSER_TEST_F(ReferrerPolicyTest, Redirect) {
RunReferrerTest(
network::mojom::ReferrerPolicy::kOrigin, START_ON_HTTP, REGULAR_LINK,
SERVER_REDIRECT_FROM_HTTPS_TO_HTTP, WindowOpenDisposition::CURRENT_TAB,
blink::WebMouseEvent::Button::kNoButton, EXPECT_ORIGIN_AS_REFERRER);
}
// Content initiated navigation, from HTTPS to HTTP via server redirect.
IN_PROC_BROWSER_TEST_F(ReferrerPolicyTest, HttpsRedirect) {
RunReferrerTest(
network::mojom::ReferrerPolicy::kOrigin, START_ON_HTTPS, REGULAR_LINK,
SERVER_REDIRECT_FROM_HTTPS_TO_HTTP, WindowOpenDisposition::CURRENT_TAB,
blink::WebMouseEvent::Button::kNoButton, EXPECT_ORIGIN_AS_REFERRER);
}
// User initiated navigation, from HTTP to HTTP via server redirect.
IN_PROC_BROWSER_TEST_F(ReferrerPolicyTest, LeftClickRedirect) {
RunReferrerTest(
network::mojom::ReferrerPolicy::kOrigin, START_ON_HTTP, REGULAR_LINK,
SERVER_REDIRECT_FROM_HTTP_TO_HTTP, WindowOpenDisposition::CURRENT_TAB,
blink::WebMouseEvent::Button::kLeft, EXPECT_ORIGIN_AS_REFERRER);
}
// User initiated navigation, from HTTPS to HTTP via server redirect.
IN_PROC_BROWSER_TEST_F(ReferrerPolicyTest, HttpsLeftClickRedirect) {
RunReferrerTest(
network::mojom::ReferrerPolicy::kOrigin, START_ON_HTTPS, REGULAR_LINK,
SERVER_REDIRECT_FROM_HTTPS_TO_HTTP, WindowOpenDisposition::CURRENT_TAB,
blink::WebMouseEvent::Button::kLeft, EXPECT_ORIGIN_AS_REFERRER);
}
// User initiated navigation, middle click, from HTTP to HTTP via server
// redirect.
IN_PROC_BROWSER_TEST_F(ReferrerPolicyTest, MiddleClickRedirect) {
RunReferrerTest(network::mojom::ReferrerPolicy::kOrigin, START_ON_HTTP,
REGULAR_LINK, SERVER_REDIRECT_FROM_HTTPS_TO_HTTP,
WindowOpenDisposition::NEW_BACKGROUND_TAB,
blink::WebMouseEvent::Button::kMiddle,
EXPECT_ORIGIN_AS_REFERRER);
}
// User initiated navigation, middle click, from HTTPS to HTTP via server
// redirect.
IN_PROC_BROWSER_TEST_F(ReferrerPolicyTest, HttpsMiddleClickRedirect) {
RunReferrerTest(network::mojom::ReferrerPolicy::kOrigin, START_ON_HTTPS,
REGULAR_LINK, SERVER_REDIRECT_FROM_HTTPS_TO_HTTP,
WindowOpenDisposition::NEW_BACKGROUND_TAB,
blink::WebMouseEvent::Button::kMiddle,
EXPECT_ORIGIN_AS_REFERRER);
}
// User initiated navigation, target blank, from HTTP to HTTP via server
// redirect.
IN_PROC_BROWSER_TEST_F(ReferrerPolicyTest, TargetBlankRedirect) {
RunReferrerTest(network::mojom::ReferrerPolicy::kOrigin, START_ON_HTTP,
LINK_WITH_TARGET_BLANK, SERVER_REDIRECT_FROM_HTTPS_TO_HTTP,
WindowOpenDisposition::NEW_FOREGROUND_TAB,
blink::WebMouseEvent::Button::kLeft,
EXPECT_ORIGIN_AS_REFERRER);
}
// User initiated navigation, target blank, from HTTPS to HTTP via server
// redirect.
IN_PROC_BROWSER_TEST_F(ReferrerPolicyTest, HttpsTargetBlankRedirect) {
RunReferrerTest(network::mojom::ReferrerPolicy::kOrigin, START_ON_HTTPS,
LINK_WITH_TARGET_BLANK, SERVER_REDIRECT_FROM_HTTPS_TO_HTTP,
WindowOpenDisposition::NEW_FOREGROUND_TAB,
blink::WebMouseEvent::Button::kLeft,
EXPECT_ORIGIN_AS_REFERRER);
}
// User initiated navigation, middle click, target blank, from HTTP to HTTP via
// server redirect.
IN_PROC_BROWSER_TEST_F(ReferrerPolicyTest, MiddleClickTargetBlankRedirect) {
RunReferrerTest(network::mojom::ReferrerPolicy::kOrigin, START_ON_HTTP,
LINK_WITH_TARGET_BLANK, SERVER_REDIRECT_FROM_HTTPS_TO_HTTP,
WindowOpenDisposition::NEW_FOREGROUND_TAB,
blink::WebMouseEvent::Button::kMiddle,
EXPECT_ORIGIN_AS_REFERRER);
}
// User initiated navigation, middle click, target blank, from HTTPS to HTTP
// via server redirect.
IN_PROC_BROWSER_TEST_F(ReferrerPolicyTest,
HttpsMiddleClickTargetBlankRedirect) {
RunReferrerTest(network::mojom::ReferrerPolicy::kOrigin, START_ON_HTTPS,
LINK_WITH_TARGET_BLANK, SERVER_REDIRECT_FROM_HTTPS_TO_HTTP,
WindowOpenDisposition::NEW_FOREGROUND_TAB,
blink::WebMouseEvent::Button::kMiddle,
EXPECT_ORIGIN_AS_REFERRER);
}
// Context menu, from HTTP to HTTP via server redirect.
// TODO(crbug.com/40803947): Fix flakiness on Linux then reenable.
#if BUILDFLAG(IS_LINUX)
#define MAYBE_ContextMenuRedirect DISABLED_ContextMenuRedirect
#else
#define MAYBE_ContextMenuRedirect ContextMenuRedirect
#endif
IN_PROC_BROWSER_TEST_F(ReferrerPolicyTest, MAYBE_ContextMenuRedirect) {
ContextMenuNotificationObserver context_menu_observer(
IDC_CONTENT_CONTEXT_OPENLINKNEWTAB);
RunReferrerTest(network::mojom::ReferrerPolicy::kOrigin, START_ON_HTTP,
REGULAR_LINK, SERVER_REDIRECT_FROM_HTTPS_TO_HTTP,
WindowOpenDisposition::NEW_FOREGROUND_TAB,
blink::WebMouseEvent::Button::kRight,
EXPECT_ORIGIN_AS_REFERRER);
}
// Context menu, from HTTPS to HTTP via server redirect.
IN_PROC_BROWSER_TEST_F(ReferrerPolicyTest, HttpsContextMenuRedirect) {
ContextMenuNotificationObserver context_menu_observer(
IDC_CONTENT_CONTEXT_OPENLINKNEWTAB);
RunReferrerTest(network::mojom::ReferrerPolicy::kOrigin, START_ON_HTTPS,
REGULAR_LINK, SERVER_REDIRECT_FROM_HTTPS_TO_HTTP,
WindowOpenDisposition::NEW_FOREGROUND_TAB,
blink::WebMouseEvent::Button::kRight,
EXPECT_ORIGIN_AS_REFERRER);
}
// Tests history navigation actions: Navigate from A to B with a referrer
// policy, then navigate to C, back to B, and reload.
IN_PROC_BROWSER_TEST_F(ReferrerPolicyTest, History) {
// Navigate from A to B.
GURL start_url = RunReferrerTest(
network::mojom::ReferrerPolicy::kOrigin, START_ON_HTTPS, REGULAR_LINK,
SERVER_REDIRECT_FROM_HTTPS_TO_HTTP, WindowOpenDisposition::CURRENT_TAB,
blink::WebMouseEvent::Button::kLeft, EXPECT_ORIGIN_AS_REFERRER);
// Navigate to C.
ASSERT_TRUE(ui_test_utils::NavigateToURL(
browser(), embedded_test_server()->GetURL("/title1.html")));
std::u16string expected_title =
GetExpectedTitle(start_url, EXPECT_ORIGIN_AS_REFERRER);
content::WebContents* tab =
browser()->tab_strip_model()->GetActiveWebContents();
std::unique_ptr<content::TitleWatcher> title_watcher(
new content::TitleWatcher(tab, expected_title));
// Watch for all possible outcomes to avoid timeouts if something breaks.
AddAllPossibleTitles(start_url, title_watcher.get());
// Go back to B.
chrome::GoBack(browser(), WindowOpenDisposition::CURRENT_TAB);
EXPECT_EQ(expected_title, title_watcher->WaitAndGetTitle());
title_watcher = std::make_unique<content::TitleWatcher>(tab, expected_title);
AddAllPossibleTitles(start_url, title_watcher.get());
// Reload to B.
chrome::Reload(browser(), WindowOpenDisposition::CURRENT_TAB);
EXPECT_EQ(expected_title, title_watcher->WaitAndGetTitle());
title_watcher = std::make_unique<content::TitleWatcher>(tab, expected_title);
AddAllPossibleTitles(start_url, title_watcher.get());
// Shift-reload to B.
chrome::ReloadBypassingCache(browser(), WindowOpenDisposition::CURRENT_TAB);
EXPECT_EQ(expected_title, title_watcher->WaitAndGetTitle());
}
// Tests that reloading a site for "request tablet version" correctly clears
// the referrer.
IN_PROC_BROWSER_TEST_F(ReferrerPolicyTest, RequestTabletSite) {
GURL start_url = RunReferrerTest(
network::mojom::ReferrerPolicy::kOrigin, START_ON_HTTPS, REGULAR_LINK,
SERVER_REDIRECT_FROM_HTTP_TO_HTTP, WindowOpenDisposition::CURRENT_TAB,
blink::WebMouseEvent::Button::kLeft, EXPECT_ORIGIN_AS_REFERRER);
std::u16string expected_title =
GetExpectedTitle(start_url, EXPECT_EMPTY_REFERRER);
content::WebContents* tab =
browser()->tab_strip_model()->GetActiveWebContents();
content::TitleWatcher title_watcher(tab, expected_title);
// Watch for all possible outcomes to avoid timeouts if something breaks.
AddAllPossibleTitles(start_url, &title_watcher);
// Erase the current title in the NavigationEntry.
//
// TitleWatcher overrides WebContentObserver's TitleWasSet() but also
// DidStopLoading(). The page that is being reloaded sets its title after load
// is complete, so the title change is missed because the title is checked on
// load. Clearing the title ensures that TitleWatcher will wait for the actual
// title setting.
tab->GetController().GetVisibleEntry()->SetTitle(std::u16string());
// Request tablet version.
chrome::ToggleRequestTabletSite(browser());
EXPECT_EQ(expected_title, title_watcher.WaitAndGetTitle());
}
// Test that an iframes gets the parent frames referrer and referrer policy if
// the load was triggered by the parent, or from the iframe itself, if the
// navigations was started by the iframe.
IN_PROC_BROWSER_TEST_F(ReferrerPolicyTest, IFrame) {
browser()->profile()->GetPrefs()->SetBoolean(
prefs::kWebKitAllowRunningInsecureContent, true);
content::WebContents* tab =
browser()->tab_strip_model()->GetActiveWebContents();
std::u16string expected_title(u"loaded");
std::unique_ptr<content::TitleWatcher> title_watcher(
new content::TitleWatcher(tab, expected_title));
// Load a page that loads an iframe.
ASSERT_TRUE(ui_test_utils::NavigateToURL(
browser(),
https_server_.GetURL("/referrer_policy/referrer-policy-iframe.html")));
EXPECT_TRUE(content::ExecJs(
tab,
std::string("var frame = document.createElement('iframe');frame.src ='") +
embedded_test_server()
->GetURL("/referrer_policy/referrer-policy-log.html")
.spec() +
"';frame.onload = function() { document.title = 'loaded'; };" +
"document.body.appendChild(frame)"));
EXPECT_EQ(expected_title, title_watcher->WaitAndGetTitle());
// Verify that the referrer policy was honored and the main page's origin was
// send as referrer.
content::RenderFrameHost* frame = content::FrameMatchingPredicate(
tab->GetPrimaryPage(),
base::BindRepeating(&content::FrameIsChildOfMainFrame));
std::string title = content::EvalJs(frame, "document.title").ExtractString();
EXPECT_EQ("Referrer is " + https_server_.GetURL("/").spec(), title);
// Reload the iframe.
expected_title = u"reset";
title_watcher = std::make_unique<content::TitleWatcher>(tab, expected_title);
EXPECT_TRUE(content::ExecJs(tab, "document.title = 'reset'"));
EXPECT_EQ(expected_title, title_watcher->WaitAndGetTitle());
frame = content::FrameMatchingPredicate(
tab->GetPrimaryPage(),
base::BindRepeating(&content::FrameIsChildOfMainFrame));
expected_title = u"loaded";
title_watcher = std::make_unique<content::TitleWatcher>(tab, expected_title);
EXPECT_TRUE(content::ExecJs(frame, "location.reload()"));
EXPECT_EQ(expected_title, title_watcher->WaitAndGetTitle());
frame = content::FrameMatchingPredicate(
tab->GetPrimaryPage(),
base::BindRepeating(&content::FrameIsChildOfMainFrame));
// Verify that the full url of the iframe was used as referrer.
title = content::EvalJs(frame, "document.title").ExtractString();
EXPECT_EQ(
"Referrer is " + embedded_test_server()
->GetURL("/referrer_policy/referrer-policy-log.html")
.spec(),
title);
}
// Origin When Cross-Origin
IN_PROC_BROWSER_TEST_F(ReferrerPolicyTest,
HttpLeftClickHTTPSRedirectToHTTPOriginWhenCrossOrigin) {
RunReferrerTest(
network::mojom::ReferrerPolicy::kOriginWhenCrossOrigin, START_ON_HTTPS,
REGULAR_LINK, SERVER_REDIRECT_FROM_HTTPS_TO_HTTP,
WindowOpenDisposition::CURRENT_TAB, blink::WebMouseEvent::Button::kLeft,
EXPECT_ORIGIN_AS_REFERRER);
}
IN_PROC_BROWSER_TEST_F(ReferrerPolicyTest,
HttpLeftClickRedirectToHTTPSOriginWhenCrossOrigin) {
RunReferrerTest(
network::mojom::ReferrerPolicy::kOriginWhenCrossOrigin, START_ON_HTTP,
REGULAR_LINK, SERVER_REDIRECT_FROM_HTTP_TO_HTTPS,
WindowOpenDisposition::CURRENT_TAB, blink::WebMouseEvent::Button::kLeft,
EXPECT_ORIGIN_AS_REFERRER);
}
IN_PROC_BROWSER_TEST_F(ReferrerPolicyTest,
HttpLeftClickRedirectToHTTPOriginWhenCrossOrigin) {
RunReferrerTest(network::mojom::ReferrerPolicy::kOriginWhenCrossOrigin,
START_ON_HTTP, REGULAR_LINK,
SERVER_REDIRECT_FROM_HTTP_TO_HTTP,
WindowOpenDisposition::CURRENT_TAB,
blink::WebMouseEvent::Button::kLeft, EXPECT_FULL_REFERRER);
}
// Same origin
IN_PROC_BROWSER_TEST_F(ReferrerPolicyTest,
HttpLeftClickHTTPRedirectToHTTPSameOrigin) {
RunReferrerTest(network::mojom::ReferrerPolicy::kSameOrigin, START_ON_HTTP,
REGULAR_LINK, SERVER_REDIRECT_FROM_HTTP_TO_HTTP,
WindowOpenDisposition::CURRENT_TAB,
blink::WebMouseEvent::Button::kLeft, EXPECT_FULL_REFERRER);
}
IN_PROC_BROWSER_TEST_F(ReferrerPolicyTest,
HttpLeftClickHTTPRedirectToHTTPSSameOrigin) {
RunReferrerTest(network::mojom::ReferrerPolicy::kSameOrigin, START_ON_HTTPS,
REGULAR_LINK, SERVER_REDIRECT_FROM_HTTPS_TO_HTTP,
WindowOpenDisposition::CURRENT_TAB,
blink::WebMouseEvent::Button::kLeft, EXPECT_EMPTY_REFERRER);
}
// Strict origin
IN_PROC_BROWSER_TEST_F(ReferrerPolicyTest,
HttpLeftClickHTTPRedirectToHTTPStrictOrigin) {
RunReferrerTest(network::mojom::ReferrerPolicy::kStrictOrigin, START_ON_HTTP,
REGULAR_LINK, SERVER_REDIRECT_FROM_HTTP_TO_HTTP,
WindowOpenDisposition::CURRENT_TAB,
blink::WebMouseEvent::Button::kLeft,
EXPECT_ORIGIN_AS_REFERRER);
}
IN_PROC_BROWSER_TEST_F(ReferrerPolicyTest,
HttpLeftClickHTTPSRedirectToHTTPStrictOrigin) {
RunReferrerTest(network::mojom::ReferrerPolicy::kStrictOrigin, START_ON_HTTPS,
REGULAR_LINK, SERVER_REDIRECT_FROM_HTTPS_TO_HTTP,
WindowOpenDisposition::CURRENT_TAB,
blink::WebMouseEvent::Button::kLeft, EXPECT_EMPTY_REFERRER);
}
// Parameters for testing functionality imposing ad-hoc restrictions
// on the behavior of referrers, for instance absolute caps like
// "never send referrers" (as of writing, features::kNoReferrers)
// or "on cross-origin requests, never send more than the initiator's
// origin" (features::kCapReferrerToOriginOnCrossOrigin).
//
// These tests assume a default policy of no-referrer-when-downgrade.
struct ReferrerOverrideParams {
std::optional<base::test::FeatureRef> feature_to_enable;
network::mojom::ReferrerPolicy baseline_policy;
network::mojom::ReferrerPolicy expected_policy;
ReferrerPolicyTest::ExpectedReferrer same_origin_nav, // HTTP -> HTTP
cross_origin_nav, // HTTP -> HTTP
cross_origin_downgrade_nav, // HTTPS -> HTTP, cross-origin
same_origin_to_cross_origin_redirect,
cross_origin_to_same_origin_redirect, same_origin_subresource,
same_origin_to_cross_origin_subresource_redirect;
} kReferrerOverrideParams[] = {
{.feature_to_enable = features::kNoReferrers,
.baseline_policy = network::mojom::ReferrerPolicy::kAlways,
// The renderer's "have we completely disabled referrers?"
// implementation resets requests' referrer policies to kNever when
// it excises their referrers.
.expected_policy = network::mojom::ReferrerPolicy::kNever,
.same_origin_nav = ReferrerPolicyTest::EXPECT_EMPTY_REFERRER,
.cross_origin_nav = ReferrerPolicyTest::EXPECT_EMPTY_REFERRER,
.cross_origin_downgrade_nav = ReferrerPolicyTest::EXPECT_EMPTY_REFERRER,
.same_origin_to_cross_origin_redirect =
ReferrerPolicyTest::EXPECT_EMPTY_REFERRER,
.cross_origin_to_same_origin_redirect =
ReferrerPolicyTest::EXPECT_EMPTY_REFERRER,
.same_origin_subresource = ReferrerPolicyTest::EXPECT_EMPTY_REFERRER,
.same_origin_to_cross_origin_subresource_redirect =
ReferrerPolicyTest::EXPECT_EMPTY_REFERRER},
{
.feature_to_enable = net::features::kCapReferrerToOriginOnCrossOrigin,
.baseline_policy = network::mojom::ReferrerPolicy::kAlways,
// Applying the cap doesn't change the "referrer policy"
// attribute of a request
.expected_policy = network::mojom::ReferrerPolicy::kAlways,
.same_origin_nav = ReferrerPolicyTest::EXPECT_FULL_REFERRER,
.cross_origin_nav = ReferrerPolicyTest::EXPECT_ORIGIN_AS_REFERRER,
.cross_origin_downgrade_nav =
ReferrerPolicyTest::EXPECT_ORIGIN_AS_REFERRER,
.same_origin_to_cross_origin_redirect =
ReferrerPolicyTest::EXPECT_ORIGIN_AS_REFERRER,
// Referrer policies get applied to whatever the current referrer is:
// in the case of a cross-origin -> same-origin redirect, we already
// will have truncated the referrer to the initiating origin
.cross_origin_to_same_origin_redirect =
ReferrerPolicyTest::EXPECT_ORIGIN_AS_REFERRER,
.same_origin_subresource = ReferrerPolicyTest::EXPECT_FULL_REFERRER,
.same_origin_to_cross_origin_subresource_redirect =
ReferrerPolicyTest::EXPECT_ORIGIN_AS_REFERRER,
},
{
.baseline_policy = network::mojom::ReferrerPolicy::kDefault,
// kDefault gets resolved into a concrete policy when making requests
.expected_policy =
network::mojom::ReferrerPolicy::kStrictOriginWhenCrossOrigin,
.same_origin_nav = ReferrerPolicyTest::EXPECT_FULL_REFERRER,
.cross_origin_nav = ReferrerPolicyTest::EXPECT_ORIGIN_AS_REFERRER,
.cross_origin_downgrade_nav = ReferrerPolicyTest::EXPECT_EMPTY_REFERRER,
.same_origin_to_cross_origin_redirect =
ReferrerPolicyTest::EXPECT_ORIGIN_AS_REFERRER,
.cross_origin_to_same_origin_redirect =
ReferrerPolicyTest::EXPECT_ORIGIN_AS_REFERRER,
.same_origin_subresource = ReferrerPolicyTest::EXPECT_FULL_REFERRER,
.same_origin_to_cross_origin_subresource_redirect =
ReferrerPolicyTest::EXPECT_ORIGIN_AS_REFERRER,
}};
class ReferrerOverrideTest
: public ReferrerPolicyTest,
public ::testing::WithParamInterface<ReferrerOverrideParams> {
public:
ReferrerOverrideTest() {
if (GetParam().feature_to_enable) {
scoped_feature_list_.InitAndEnableFeature(
*GetParam().feature_to_enable.value());
}
}
protected:
// Test that the correct referrer is sent along with
// a subresource request.
// Parameter semantics are the same as for
// ReferrerPolicyTest::RunReferrerTest.
void RunSubresourceTest(StartOnProtocol start_protocol,
RedirectType redirect,
network::mojom::ReferrerPolicy baseline_policy,
ExpectedReferrer expectation) {
GURL image_url;
switch (redirect) {
case NO_REDIRECT:
image_url = embedded_test_server()->GetURL("/referrer_policy/logo.gif");
break;
case HTTPS_NO_REDIRECT:
image_url = https_server_.GetURL("/referrer_policy/logo.gif");
break;
case SERVER_REDIRECT_FROM_HTTPS_TO_HTTP:
image_url = https_server_.GetURL(
std::string("/server-redirect?") +
embedded_test_server()->GetURL("/referrer_policy/logo.gif").spec());
break;
case SERVER_REDIRECT_FROM_HTTP_TO_HTTP:
image_url = embedded_test_server()->GetURL(
std::string("/server-redirect?") +
embedded_test_server()->GetURL("/referrer_policy/logo.gif").spec());
break;
case SERVER_REDIRECT_FROM_HTTP_TO_HTTPS:
image_url = embedded_test_server()->GetURL(
std::string("/server-redirect?") +
https_server_.GetURL("/referrer_policy/logo.gif").spec());
break;
}
std::string relative_url =
std::string("/referrer_policy/referrer-policy-subresource.html?") +
"policy=" + content::ReferrerPolicyToString(baseline_policy) +
"&redirect=" + image_url.spec();
auto* start_server = start_protocol == START_ON_HTTPS
? &https_server_
: embedded_test_server();
const GURL start_url = start_server->GetURL(relative_url);
content::WebContents* tab =
browser()->tab_strip_model()->GetActiveWebContents();
base::ReleasableAutoLock lock(&check_on_requests_lock_);
check_on_requests_ = RequestCheck{"", "/referrer_policy/logo.gif"};
switch (expectation) {
case ReferrerPolicyTest::EXPECT_EMPTY_REFERRER:
check_on_requests_->expected_spec = "";
break;
case ReferrerPolicyTest::EXPECT_FULL_REFERRER:
check_on_requests_->expected_spec = start_url.spec();
break;
case ReferrerPolicyTest::EXPECT_ORIGIN_AS_REFERRER:
check_on_requests_->expected_spec = start_url.GetWithEmptyPath().spec();
break;
}
lock.Release();
// set by referrer-policy-subresource.html JS after the embedded image loads
std::u16string expected_title(u"loaded");
std::unique_ptr<content::TitleWatcher> title_watcher(
new content::TitleWatcher(tab, expected_title));
ASSERT_TRUE(ui_test_utils::NavigateToURL(browser(), start_url));
// Wait for the page to load; during the load, since check_on_requests_ is
// nonempty, OnServerIncomingRequest will validate the referrers.
EXPECT_EQ(expected_title, title_watcher->WaitAndGetTitle());
}
private:
base::test::ScopedFeatureList scoped_feature_list_;
};
INSTANTIATE_TEST_SUITE_P(
WithOverrideParams,
ReferrerOverrideTest,
::testing::ValuesIn(kReferrerOverrideParams),
[](const ::testing::TestParamInfo<ReferrerOverrideParams>& info)
-> std::string {
if (info.param.feature_to_enable) {
return base::StringPrintf("Param%s",
info.param.feature_to_enable.value()->name);
}
return "NoFeature";
});
IN_PROC_BROWSER_TEST_P(ReferrerOverrideTest, SameOriginNavigation) {
RunReferrerTest(GetParam().baseline_policy, START_ON_HTTP, REGULAR_LINK,
NO_REDIRECT, WindowOpenDisposition::CURRENT_TAB,
blink::WebMouseEvent::Button::kNoButton,
GetParam().same_origin_nav, GetParam().expected_policy);
}
IN_PROC_BROWSER_TEST_P(ReferrerOverrideTest, CrossOriginNavigation) {
RunReferrerTest(GetParam().baseline_policy, START_ON_HTTP, REGULAR_LINK,
HTTPS_NO_REDIRECT, WindowOpenDisposition::CURRENT_TAB,
blink::WebMouseEvent::Button::kNoButton,
GetParam().cross_origin_nav, GetParam().expected_policy);
}
IN_PROC_BROWSER_TEST_P(ReferrerOverrideTest,
CrossOriginNavigationBrowserInitiated) {
RunReferrerTest(GetParam().baseline_policy, START_ON_HTTP, REGULAR_LINK,
HTTPS_NO_REDIRECT, WindowOpenDisposition::CURRENT_TAB,
blink::WebMouseEvent::Button::kLeft,
GetParam().cross_origin_nav, GetParam().expected_policy,
BROWSER_INITIATED);
}
IN_PROC_BROWSER_TEST_P(ReferrerOverrideTest, CrossOriginDowngradeNavigation) {
RunReferrerTest(GetParam().baseline_policy, START_ON_HTTPS, REGULAR_LINK,
NO_REDIRECT, WindowOpenDisposition::CURRENT_TAB,
blink::WebMouseEvent::Button::kNoButton,
GetParam().cross_origin_downgrade_nav,
GetParam().expected_policy);
}
IN_PROC_BROWSER_TEST_P(ReferrerOverrideTest, CrossOriginRedirect) {
RunReferrerTest(GetParam().baseline_policy, START_ON_HTTP, REGULAR_LINK,
SERVER_REDIRECT_FROM_HTTP_TO_HTTPS,
WindowOpenDisposition::CURRENT_TAB,
blink::WebMouseEvent::Button::kNoButton,
GetParam().same_origin_to_cross_origin_redirect,
GetParam().expected_policy);
}
IN_PROC_BROWSER_TEST_P(ReferrerOverrideTest, CrossOriginToSameOriginRedirect) {
RunReferrerTest(GetParam().baseline_policy, START_ON_HTTP, REGULAR_LINK,
SERVER_REDIRECT_FROM_HTTPS_TO_HTTP,
WindowOpenDisposition::CURRENT_TAB,
blink::WebMouseEvent::Button::kNoButton,
GetParam().cross_origin_to_same_origin_redirect,
GetParam().expected_policy);
}
IN_PROC_BROWSER_TEST_P(ReferrerOverrideTest, SameOriginSubresource) {
RunSubresourceTest(START_ON_HTTP, NO_REDIRECT, GetParam().baseline_policy,
GetParam().same_origin_subresource);
}
IN_PROC_BROWSER_TEST_P(ReferrerOverrideTest,
SameOriginToCrossOriginSubresourceRedirect) {
RunSubresourceTest(
START_ON_HTTP, SERVER_REDIRECT_FROM_HTTP_TO_HTTPS,
GetParam().baseline_policy,
GetParam().same_origin_to_cross_origin_subresource_redirect);
}
// Most of the functionality of the referrer-cap flag is covered by
// ReferrerOverrideTest; these couple additional tests test the flag's
// interaction with other referrer policies
class ReferrerPolicyCapReferrerToOriginOnCrossOriginTest
: public ReferrerPolicyTest {
public:
ReferrerPolicyCapReferrerToOriginOnCrossOriginTest() {
scoped_feature_list_.InitAndEnableFeature(
net::features::kCapReferrerToOriginOnCrossOrigin);
}
private:
base::test::ScopedFeatureList scoped_feature_list_;
};
// Test that capping referrer granularity at origin on cross-origin requests
// correctly defers to a more restrictive referrer policy on a
// cross-origin navigation.
IN_PROC_BROWSER_TEST_F(ReferrerPolicyCapReferrerToOriginOnCrossOriginTest,
HonorsMoreRestrictivePolicyOnNavigation) {
RunReferrerTest(network::mojom::ReferrerPolicy::kSameOrigin, START_ON_HTTPS,
REGULAR_LINK, NO_REDIRECT /*direct navigation x-origin*/,
WindowOpenDisposition::CURRENT_TAB,
blink::WebMouseEvent::Button::kLeft, EXPECT_EMPTY_REFERRER);
}
// Test that capping referrer granularity at origin on cross-origin requests
// correctly defers to a more restrictive referrer policy on a
// cross-origin redirect.
IN_PROC_BROWSER_TEST_F(ReferrerPolicyCapReferrerToOriginOnCrossOriginTest,
HonorsMoreRestrictivePolicyOnRedirect) {
RunReferrerTest(network::mojom::ReferrerPolicy::kStrictOrigin, START_ON_HTTPS,
REGULAR_LINK, SERVER_REDIRECT_FROM_HTTPS_TO_HTTP,
WindowOpenDisposition::CURRENT_TAB,
blink::WebMouseEvent::Button::kLeft, EXPECT_EMPTY_REFERRER);
}
// Test that, when the cross-origin referrer cap is on but we also have the
// "no referrers at all" pref set, we send no referrer at all on cross-origin
// requests.
IN_PROC_BROWSER_TEST_F(ReferrerPolicyCapReferrerToOriginOnCrossOriginTest,
RespectsNoReferrerPref) {
browser()->profile()->GetPrefs()->SetBoolean(prefs::kEnableReferrers, false);
browser()
->profile()
->GetDefaultStoragePartition()
->FlushNetworkInterfaceForTesting();
RunReferrerTest(network::mojom::ReferrerPolicy::kAlways, START_ON_HTTPS,
REGULAR_LINK, NO_REDIRECT, WindowOpenDisposition::CURRENT_TAB,
blink::WebMouseEvent::Button::kLeft, EXPECT_EMPTY_REFERRER,
// when the pref is set, the renderer sets the referrer policy
// to the kNever on outgoing requests at the same time
// it removes referrers
network::mojom::ReferrerPolicy::kNever);
}
|