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
|
// 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 "content/public/browser/back_forward_cache.h"
#include <string>
#include <string_view>
#include "base/strings/stringprintf.h"
#include "base/strings/utf_string_conversions.h"
#include "build/build_config.h"
#include "chrome/browser/extensions/extension_action_runner.h"
#include "chrome/browser/extensions/extension_browsertest.h"
#include "chrome/browser/extensions/tab_helper.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/test/base/ui_test_utils.h"
#include "components/back_forward_cache/back_forward_cache_disable.h"
#include "content/public/browser/render_frame_host.h"
#include "content/public/browser/web_contents.h"
#include "content/public/common/content_features.h"
#include "content/public/test/back_forward_cache_util.h"
#include "content/public/test/browser_test.h"
#include "content/public/test/prerender_test_util.h"
#include "content/public/test/test_utils.h"
#include "extensions/browser/api/messaging/message_service.h"
#include "extensions/common/extension.h"
#include "extensions/common/manifest_constants.h"
#include "net/dns/mock_host_resolver.h"
#include "third_party/blink/public/common/features.h"
#include "third_party/blink/public/common/scheduler/web_scheduler_tracked_feature.h"
#include "third_party/blink/public/mojom/navigation/renderer_eviction_reason.mojom-shared.h"
namespace extensions {
using testing::Values;
using ContextType = extensions::browser_test_util::ContextType;
class ExtensionBackForwardCacheBrowserTest
: public ExtensionBrowserTest,
public ::testing::WithParamInterface<ContextType> {
public:
ExtensionBackForwardCacheBrowserTest() : ExtensionBrowserTest(GetParam()) {
feature_list_.InitWithFeaturesAndParameters(
content::GetDefaultEnabledBackForwardCacheFeaturesForTesting(
{{features::kBackForwardCache, {}}}),
content::GetDefaultDisabledBackForwardCacheFeaturesForTesting());
}
void SetUpOnMainThread() override {
host_resolver()->AddRule("*", "127.0.0.1");
ExtensionBrowserTest::SetUpOnMainThread();
}
content::RenderFrameHost* current_main_frame_host() {
return web_contents()->GetPrimaryMainFrame();
}
void RunChromeRuntimeConnectTest() {
const Extension* extension =
LoadExtension(test_data_dir_.AppendASCII("back_forward_cache")
.AppendASCII("content_script"));
ASSERT_TRUE(extension);
ASSERT_TRUE(embedded_test_server()->Start());
GURL url_a(embedded_test_server()->GetURL("a.com", "/title1.html"));
GURL url_b(embedded_test_server()->GetURL("b.com", "/title1.html"));
// 1) Navigate to A.
content::RenderFrameHostWrapper render_frame_host_a(
ui_test_utils::NavigateToURL(browser(), url_a));
std::u16string expected_title = u"connected";
content::TitleWatcher title_watcher(
browser()->tab_strip_model()->GetActiveWebContents(), expected_title);
std::string action = base::StringPrintf(
R"HTML(
var p = chrome.runtime.connect('%s');
p.onMessage.addListener((m) => {document.title = m; });
)HTML",
extension->id().c_str());
EXPECT_TRUE(ExecJs(render_frame_host_a.get(), action));
// 2) Wait for the message port to be connected.
EXPECT_EQ(expected_title, title_watcher.WaitAndGetTitle());
// Expect that a channel is open.
EXPECT_EQ(1u, MessageService::Get(profile())->GetChannelCountForTest());
// 3) Navigate to B.
ASSERT_TRUE(ui_test_utils::NavigateToURL(browser(), url_b));
// Expect that `render_frame_host_a` is cached.
EXPECT_EQ(render_frame_host_a->GetLifecycleState(),
content::RenderFrameHost::LifecycleState::kInBackForwardCache);
// The channel should close.
EXPECT_EQ(0u, MessageService::Get(profile())->GetChannelCountForTest());
// 4) Go back to A.
content::WebContents* web_contents =
browser()->tab_strip_model()->GetActiveWebContents();
web_contents->GetController().GoBack();
EXPECT_TRUE(WaitForLoadStop(web_contents));
}
void ExpectTitleChangeSuccess(const Extension& extension, const char* title) {
const std::string script = base::StringPrintf(R"(
chrome.tabs.executeScript({
code: "document.title='%s'"
});
)",
title);
ExecuteScriptInBackgroundPageNoWait(extension.id(), script);
content::WebContents* web_contents =
browser()->tab_strip_model()->GetActiveWebContents();
std::u16string title16(base::UTF8ToUTF16(title));
content::TitleWatcher title_watcher(web_contents, title16);
EXPECT_EQ(title16, title_watcher.WaitAndGetTitle());
}
void ExpectTitleChangeFail(const Extension& extension) {
static constexpr char kScript[] =
R"(
chrome.tabs.executeScript({code: "document.title='fail'"},
() => {
if (chrome.runtime.lastError) {
chrome.test.sendScriptResult(
chrome.runtime.lastError.message);
} else {
chrome.test.sendScriptResult("Unexpected success");
}
});
)";
EXPECT_EQ(manifest_errors::kCannotAccessPage,
ExecuteScriptInBackgroundPage(extension.id(), kScript));
std::u16string title;
ASSERT_TRUE(ui_test_utils::GetCurrentTabTitle(browser(), &title));
EXPECT_NE(u"fail", title);
}
content::WebContents* web_contents() const {
return browser()->tab_strip_model()->GetActiveWebContents();
}
protected:
base::HistogramTester histogram_tester_;
private:
base::test::ScopedFeatureList feature_list_;
};
// These tests use chrome.tabs.executeScript, so the SW versions of the tests
// must still be run with MV2. See crbug.com/332328868.
INSTANTIATE_TEST_SUITE_P(EventPage,
ExtensionBackForwardCacheBrowserTest,
Values(ContextType::kEventPage));
INSTANTIATE_TEST_SUITE_P(ServiceWorker,
ExtensionBackForwardCacheBrowserTest,
Values(ContextType::kServiceWorkerMV2));
IN_PROC_BROWSER_TEST_P(ExtensionBackForwardCacheBrowserTest, ScriptAllowed) {
ASSERT_TRUE(LoadExtension(test_data_dir_.AppendASCII("back_forward_cache")
.AppendASCII("content_script")));
ASSERT_TRUE(embedded_test_server()->Start());
GURL url_a(embedded_test_server()->GetURL("a.com", "/title1.html"));
GURL url_b(embedded_test_server()->GetURL("b.com", "/title1.html"));
// 1) Navigate to A.
content::RenderFrameHostWrapper render_frame_host_a(
ui_test_utils::NavigateToURL(browser(), url_a));
// 2) Navigate to B.
content::RenderFrameHostWrapper render_frame_host_b(
ui_test_utils::NavigateToURL(browser(), url_b));
// Ensure that `render_frame_host_a` is in the cache.
EXPECT_FALSE(render_frame_host_a.IsDestroyed());
EXPECT_NE(render_frame_host_a.get(), render_frame_host_b.get());
EXPECT_EQ(render_frame_host_a->GetLifecycleState(),
content::RenderFrameHost::LifecycleState::kInBackForwardCache);
}
IN_PROC_BROWSER_TEST_P(ExtensionBackForwardCacheBrowserTest, CSSAllowed) {
ASSERT_TRUE(LoadExtension(test_data_dir_.AppendASCII("back_forward_cache")
.AppendASCII("content_css")));
ASSERT_TRUE(embedded_test_server()->Start());
GURL url_a(embedded_test_server()->GetURL("a.com", "/title1.html"));
GURL url_b(embedded_test_server()->GetURL("b.com", "/title1.html"));
// 1) Navigate to A.
content::RenderFrameHostWrapper render_frame_host_a(
ui_test_utils::NavigateToURL(browser(), url_a));
// 2) Navigate to B.
content::RenderFrameHostWrapper render_frame_host_b(
ui_test_utils::NavigateToURL(browser(), url_b));
// Ensure that `render_frame_host_a` is in the cache.
EXPECT_FALSE(render_frame_host_a.IsDestroyed());
EXPECT_NE(render_frame_host_a.get(), render_frame_host_b.get());
EXPECT_EQ(render_frame_host_a->GetLifecycleState(),
content::RenderFrameHost::LifecycleState::kInBackForwardCache);
}
IN_PROC_BROWSER_TEST_P(ExtensionBackForwardCacheBrowserTest,
UnloadExtensionFlushCache) {
ASSERT_TRUE(embedded_test_server()->Start());
GURL url_a(embedded_test_server()->GetURL("a.com", "/title1.html"));
GURL url_b(embedded_test_server()->GetURL("b.com", "/title1.html"));
// Load the extension so we can unload it later.
const Extension* extension =
LoadExtension(test_data_dir_.AppendASCII("back_forward_cache")
.AppendASCII("content_css"));
ASSERT_TRUE(extension);
// 1) Navigate to A.
content::RenderFrameHostWrapper render_frame_host_a(
ui_test_utils::NavigateToURL(browser(), url_a));
// 2) Navigate to B.
content::RenderFrameHostWrapper render_frame_host_b(
ui_test_utils::NavigateToURL(browser(), url_b));
// Ensure that `render_frame_host_a` is in the cache.
EXPECT_FALSE(render_frame_host_a.IsDestroyed());
EXPECT_NE(render_frame_host_a.get(), render_frame_host_b.get());
EXPECT_EQ(render_frame_host_a->GetLifecycleState(),
content::RenderFrameHost::LifecycleState::kInBackForwardCache);
// Now unload the extension after something is in the cache.
UnloadExtension(extension->id());
// Expect that `render_frame_host_a` is destroyed as it should be cleared from
// the cache.
EXPECT_TRUE(render_frame_host_a.WaitUntilRenderFrameDeleted());
}
IN_PROC_BROWSER_TEST_P(ExtensionBackForwardCacheBrowserTest,
LoadExtensionFlushCache) {
ASSERT_TRUE(embedded_test_server()->Start());
GURL url_a(embedded_test_server()->GetURL("a.com", "/title1.html"));
GURL url_b(embedded_test_server()->GetURL("b.com", "/title1.html"));
// 1) Navigate to A.
content::RenderFrameHostWrapper render_frame_host_a(
ui_test_utils::NavigateToURL(browser(), url_a));
// 2) Navigate to B.
content::RenderFrameHostWrapper render_frame_host_b(
ui_test_utils::NavigateToURL(browser(), url_b));
// Ensure that `render_frame_host_a` is in the cache.
EXPECT_FALSE(render_frame_host_a.IsDestroyed());
EXPECT_NE(render_frame_host_a.get(), render_frame_host_b.get());
EXPECT_EQ(render_frame_host_a->GetLifecycleState(),
content::RenderFrameHost::LifecycleState::kInBackForwardCache);
// Now load the extension after something is in the cache.
ASSERT_TRUE(LoadExtension(test_data_dir_.AppendASCII("back_forward_cache")
.AppendASCII("content_css")));
// Expect that `render_frame_host_a` is destroyed as it should be cleared from
// the cache.
EXPECT_TRUE(render_frame_host_a.WaitUntilRenderFrameDeleted());
}
// Test if the chrome.runtime.connect API is called, the page is prevented from
// entering bfcache.
IN_PROC_BROWSER_TEST_P(ExtensionBackForwardCacheBrowserTest,
ChromeRuntimeConnectUsage) {
RunChromeRuntimeConnectTest();
}
// Test that we correctly clear the bfcache disable reasons on a same-origin
// cross document navigation for a document with an active channel, allowing
// the frame to be bfcached subsequently.
IN_PROC_BROWSER_TEST_P(ExtensionBackForwardCacheBrowserTest,
ChromeRuntimeConnectUsageInIframeWithIframeNavigation) {
const Extension* extension =
LoadExtension(test_data_dir_.AppendASCII("back_forward_cache")
.AppendASCII("content_script"));
ASSERT_TRUE(extension);
ASSERT_TRUE(embedded_test_server()->Start());
GURL url_a = embedded_test_server()->GetURL("a.com", "/iframe.html");
GURL url_b(embedded_test_server()->GetURL("b.com", "/title1.html"));
// 1) Navigate to A.
content::RenderFrameHostWrapper primary_render_frame_host(
ui_test_utils::NavigateToURL(browser(), url_a));
std::u16string expected_title = u"connected";
content::TitleWatcher title_watcher(
browser()->tab_strip_model()->GetActiveWebContents(), expected_title);
content::RenderFrameHost* child =
ChildFrameAt(primary_render_frame_host.get(), 0);
std::string action = base::StringPrintf(
R"HTML(
var p = chrome.runtime.connect('%s');
p.onMessage.addListener((m) => {window.top.document.title = m; });
)HTML",
extension->id().c_str());
ASSERT_TRUE(ExecJs(child, action));
// 2) Wait for the message port to be connected.
EXPECT_EQ(expected_title, title_watcher.WaitAndGetTitle());
// Expect that a channel is open.
EXPECT_EQ(1u, MessageService::Get(profile())->GetChannelCountForTest());
// 3) Navigate the iframe.
GURL iframe_url = embedded_test_server()->GetURL("a.com", "/title2.html");
EXPECT_TRUE(NavigateToURLFromRenderer(child, iframe_url));
EXPECT_EQ(0u, MessageService::Get(profile())->GetChannelCountForTest());
// 4) Navigate to B.
ASSERT_TRUE(ui_test_utils::NavigateToURL(browser(), url_b));
// 5) Expect that A is in the back forward cache.
EXPECT_FALSE(primary_render_frame_host.IsDestroyed());
EXPECT_EQ(primary_render_frame_host->GetLifecycleState(),
content::RenderFrameHost::LifecycleState::kInBackForwardCache);
}
// Test that the page can enter BFCache with an active channel created from the
// iframe.
IN_PROC_BROWSER_TEST_P(
ExtensionBackForwardCacheBrowserTest,
ChromeRuntimeConnectUsageInIframeWithoutIframeNavigation) {
const Extension* extension =
LoadExtension(test_data_dir_.AppendASCII("back_forward_cache")
.AppendASCII("content_script"));
ASSERT_TRUE(extension);
ASSERT_TRUE(embedded_test_server()->Start());
GURL url_a = embedded_test_server()->GetURL("a.com", "/iframe.html");
GURL url_b(embedded_test_server()->GetURL("b.com", "/title1.html"));
// 1) Navigate to A.
content::RenderFrameHostWrapper primary_render_frame_host(
ui_test_utils::NavigateToURL(browser(), url_a));
std::u16string expected_title = u"connected";
content::TitleWatcher title_watcher(
browser()->tab_strip_model()->GetActiveWebContents(), expected_title);
content::RenderFrameHost* child =
ChildFrameAt(primary_render_frame_host.get(), 0);
std::string action = base::StringPrintf(
R"JS(
var p = chrome.runtime.connect('%s');
p.onMessage.addListener((m) => {window.top.document.title = m; });
)JS",
extension->id().c_str());
ASSERT_TRUE(ExecJs(child, action));
// 2) Wait for the message port to be connected.
EXPECT_EQ(expected_title, title_watcher.WaitAndGetTitle());
// Expect that a channel is open.
EXPECT_EQ(1u, MessageService::Get(profile())->GetChannelCountForTest());
// 3) Navigate to B, and the channel is closed.
ASSERT_TRUE(ui_test_utils::NavigateToURL(browser(), url_b));
EXPECT_EQ(0u, MessageService::Get(profile())->GetChannelCountForTest());
// 4) Expect that A is in the back forward cache.
EXPECT_FALSE(primary_render_frame_host.IsDestroyed());
EXPECT_EQ(primary_render_frame_host->GetLifecycleState(),
content::RenderFrameHost::LifecycleState::kInBackForwardCache);
}
// Test that the page can enter BFCache with an active channel that's created
// from the extension background with two receivers from different frames.
IN_PROC_BROWSER_TEST_P(ExtensionBackForwardCacheBrowserTest,
ChromeTabsConnectWithMultipleReceivers) {
const Extension* extension =
LoadExtension(test_data_dir_.AppendASCII("back_forward_cache")
.AppendASCII("content_script_all_frames"));
ASSERT_TRUE(extension);
ASSERT_TRUE(embedded_test_server()->Start());
GURL url_a(embedded_test_server()->GetURL("a.com", "/iframe.html"));
GURL url_b(embedded_test_server()->GetURL("b.com", "/title1.html"));
// 1) Navigate to A.
content::RenderFrameHostWrapper primary_render_frame_host(
ui_test_utils::NavigateToURL(browser(), url_a));
// 2) Create channel from the extension background.
static constexpr char kScript[] =
R"JS(
var p;
var countConnected = 0;
chrome.tabs.query({}, (t) => {
p = chrome.tabs.connect(t[0].id);
p.onMessage.addListener(
(m) => {
if (m == 'connected') {
countConnected++;
if (countConnected == 2) {
chrome.test.sendScriptResult('connected twice');
}
}
});
});
)JS";
// The background should receives two "connected" messages from different
// frames.
EXPECT_EQ("connected twice",
ExecuteScriptInBackgroundPage(extension->id(), kScript));
// Even though there are two ports from the receiver end, there is still one
// channel.
EXPECT_EQ(1u, MessageService::Get(profile())->GetChannelCountForTest());
// 3) Navigate to B.
ASSERT_TRUE(ui_test_utils::NavigateToURL(browser(), url_b));
// 4) Expect that A is in the back forward cache.
EXPECT_EQ(primary_render_frame_host->GetLifecycleState(),
content::RenderFrameHost::LifecycleState::kInBackForwardCache);
EXPECT_EQ(0u, MessageService::Get(profile())->GetChannelCountForTest());
}
// Test if the chrome.runtime.sendMessage API is called, the page is allowed
// to enter the bfcache.
IN_PROC_BROWSER_TEST_P(ExtensionBackForwardCacheBrowserTest,
ChromeRuntimeSendMessageUsage) {
const Extension* extension =
LoadExtension(test_data_dir_.AppendASCII("back_forward_cache")
.AppendASCII("content_script"));
ASSERT_TRUE(extension);
ASSERT_TRUE(embedded_test_server()->Start());
GURL url_a(embedded_test_server()->GetURL("a.com", "/title1.html"));
GURL url_b(embedded_test_server()->GetURL("b.com", "/title1.html"));
// 1) Navigate to A.
content::RenderFrameHostWrapper render_frame_host_a(
ui_test_utils::NavigateToURL(browser(), url_a));
std::u16string expected_title = u"sent";
content::TitleWatcher title_watcher(
browser()->tab_strip_model()->GetActiveWebContents(), expected_title);
static constexpr char kAction[] =
R"HTML(
chrome.runtime.sendMessage('%s', 'some message',
() => { document.title = 'sent'});
)HTML";
EXPECT_TRUE(ExecJs(render_frame_host_a.get(),
base::StringPrintf(kAction, extension->id().c_str())));
// 2) Wait until the sendMessage has completed.
EXPECT_EQ(expected_title, title_watcher.WaitAndGetTitle());
// Expect that no channel is open.
EXPECT_EQ(0u, MessageService::Get(profile())->GetChannelCountForTest());
// 3) Navigate to B.
ASSERT_TRUE(ui_test_utils::NavigateToURL(browser(), url_b));
// 4) Expect that A is in the back forward cache.
EXPECT_EQ(render_frame_host_a->GetLifecycleState(),
content::RenderFrameHost::LifecycleState::kInBackForwardCache);
// 5) Ensure that the runtime.onConnect listener in the restored page still
// works.
static constexpr char kScript[] =
R"HTML(
var p;
chrome.tabs.query({}, (t) => {
p = chrome.tabs.connect(t[0].id);
p.onMessage.addListener(
(m) => {chrome.test.sendScriptResult(m)}
);
});
)HTML";
EXPECT_EQ("connected",
ExecuteScriptInBackgroundPage(extension->id(), kScript));
}
// Test if the chrome.runtime.connect is called then disconnected, the page is
// allowed to enter the bfcache.
IN_PROC_BROWSER_TEST_P(ExtensionBackForwardCacheBrowserTest,
ChromeRuntimeConnectDisconnect) {
const Extension* extension =
LoadExtension(test_data_dir_.AppendASCII("back_forward_cache")
.AppendASCII("content_script"));
ASSERT_TRUE(extension);
ASSERT_TRUE(embedded_test_server()->Start());
GURL url_a(embedded_test_server()->GetURL("a.com", "/title1.html"));
GURL url_b(embedded_test_server()->GetURL("b.com", "/title1.html"));
// 1) Navigate to A.
content::RenderFrameHostWrapper render_frame_host_a(
ui_test_utils::NavigateToURL(browser(), url_a));
std::u16string expected_title = u"connected";
auto title_watcher = std::make_unique<content::TitleWatcher>(
browser()->tab_strip_model()->GetActiveWebContents(), expected_title);
std::string action = base::StringPrintf(
R"HTML(
var p = chrome.runtime.connect('%s');
p.onMessage.addListener((m) => {document.title = m; });
)HTML",
extension->id().c_str());
EXPECT_TRUE(ExecJs(render_frame_host_a.get(), action));
// 2) Wait for the message port to be connected.
EXPECT_EQ(expected_title, title_watcher->WaitAndGetTitle());
expected_title = u"disconnect";
title_watcher = std::make_unique<content::TitleWatcher>(
browser()->tab_strip_model()->GetActiveWebContents(), expected_title);
EXPECT_TRUE(ExecJs(render_frame_host_a.get(),
R"HTML(
p.onDisconnect.addListener((m) => {document.title = 'disconnect';});
p.postMessage('disconnect');
)HTML"));
EXPECT_EQ(expected_title, title_watcher->WaitAndGetTitle());
// Expect that the channel is closed.
EXPECT_EQ(0u, MessageService::Get(profile())->GetChannelCountForTest());
// 3) Navigate to B.
ASSERT_TRUE(ui_test_utils::NavigateToURL(browser(), url_b));
// 4) Expect that A is in the back forward cache.
EXPECT_EQ(render_frame_host_a->GetLifecycleState(),
content::RenderFrameHost::LifecycleState::kInBackForwardCache);
}
// Test if the chrome.tabs.connect is called and then the page is navigated,
// the page is allowed to enter the bfcache, but if the extension tries to send
// it a message the page will be evicted.
IN_PROC_BROWSER_TEST_P(ExtensionBackForwardCacheBrowserTest,
ChromeTabsConnect) {
const Extension* extension =
LoadExtension(test_data_dir_.AppendASCII("back_forward_cache")
.AppendASCII("content_script"));
ASSERT_TRUE(extension);
ASSERT_TRUE(embedded_test_server()->Start());
GURL url_a(embedded_test_server()->GetURL("a.com", "/title1.html"));
GURL url_b(embedded_test_server()->GetURL("b.com", "/title1.html"));
// 1) Navigate to A.
content::RenderFrameHostWrapper render_frame_host_a(
ui_test_utils::NavigateToURL(browser(), url_a));
std::u16string expected_title = u"connected";
static constexpr char kScript[] =
R"HTML(
chrome.tabs.query({}, (t) => {
p = chrome.tabs.connect(t[0].id);
// Save a "global" reference to the port so it can be used by the test
// later.
port = p;
p.onMessage.addListener(
(m) => {chrome.test.sendScriptResult(m)}
);
});
)HTML";
EXPECT_EQ("connected",
ExecuteScriptInBackgroundPage(extension->id(), kScript));
// Expect that a channel is open.
EXPECT_EQ(1u, MessageService::Get(profile())->GetChannelCountForTest());
// 3) Navigate to B.
ASSERT_TRUE(ui_test_utils::NavigateToURL(browser(), url_b));
// Expect that `render_frame_host_a` is cached, and the channel is closed.
EXPECT_EQ(render_frame_host_a->GetLifecycleState(),
content::RenderFrameHost::LifecycleState::kInBackForwardCache);
EXPECT_EQ(0u, MessageService::Get(profile())->GetChannelCountForTest());
}
// Test that after caching and restoring a page, long-lived ports still work.
IN_PROC_BROWSER_TEST_P(ExtensionBackForwardCacheBrowserTest,
ChromeTabsConnectChannelWorksAfterRestore) {
const Extension* extension =
LoadExtension(test_data_dir_.AppendASCII("back_forward_cache")
.AppendASCII("content_script"));
ASSERT_TRUE(extension);
ASSERT_TRUE(embedded_test_server()->Start());
GURL url_a(embedded_test_server()->GetURL("a.com", "/title1.html"));
GURL url_b(embedded_test_server()->GetURL("b.com", "/title1.html"));
// 1) Navigate to A.
content::RenderFrameHostWrapper render_frame_host_a(
ui_test_utils::NavigateToURL(browser(), url_a));
std::u16string expected_title_connected = u"connected";
content::TitleWatcher title_watcher_connected(
browser()->tab_strip_model()->GetActiveWebContents(),
expected_title_connected);
EXPECT_EQ(MessageService::Get(profile())->GetChannelCountForTest(), 0u);
std::string action = base::StringPrintf(
R"HTML(
var p = chrome.runtime.connect('%s');
p.onMessage.addListener((m) => {
document.title = m;
});
)HTML",
extension->id().c_str());
ASSERT_TRUE(ExecJs(render_frame_host_a.get(), action));
// 2) Wait for the message port to be connected.
EXPECT_EQ(expected_title_connected,
title_watcher_connected.WaitAndGetTitle());
EXPECT_EQ(MessageService::Get(profile())->GetChannelCountForTest(), 1u);
// 3) Navigate to B.
ASSERT_TRUE(ui_test_utils::NavigateToURL(browser(), url_b));
EXPECT_EQ(MessageService::Get(profile())->GetChannelCountForTest(), 0u);
// Expect that `render_frame_host_a` is cached.
EXPECT_EQ(render_frame_host_a->GetLifecycleState(),
content::RenderFrameHost::LifecycleState::kInBackForwardCache);
// 4) Navigate back to A.
content::WebContents* web_contents =
browser()->tab_strip_model()->GetActiveWebContents();
web_contents->GetController().GoBack();
ASSERT_TRUE(WaitForLoadStop(web_contents));
// Verify that `render_frame_host_a` is the active frame again.
EXPECT_TRUE(render_frame_host_a->GetLifecycleState() ==
content::RenderFrameHost::LifecycleState::kActive);
}
// Test if the chrome.tabs.connect is called then disconnected, the page is
// allowed to enter the bfcache.
IN_PROC_BROWSER_TEST_P(ExtensionBackForwardCacheBrowserTest,
ChromeTabsConnectDisconnect) {
const Extension* extension =
LoadExtension(test_data_dir_.AppendASCII("back_forward_cache")
.AppendASCII("content_script"));
ASSERT_TRUE(extension);
ASSERT_TRUE(embedded_test_server()->Start());
GURL url_a(embedded_test_server()->GetURL("a.com", "/title1.html"));
GURL url_b(embedded_test_server()->GetURL("b.com", "/title1.html"));
// 1) Navigate to A.
content::RenderFrameHostWrapper render_frame_host_a(
ui_test_utils::NavigateToURL(browser(), url_a));
std::u16string expected_title = u"connected";
static constexpr char kScript[] =
R"HTML(
var p;
chrome.tabs.query({}, (t) => {
p = chrome.tabs.connect(t[0].id);
p.onMessage.addListener(
(m) => {chrome.test.sendScriptResult(m)}
);
});
)HTML";
EXPECT_EQ("connected",
ExecuteScriptInBackgroundPage(extension->id(), kScript));
static constexpr char kDisconnectScript[] =
R"HTML(
p.postMessage('disconnect');
p.onDisconnect.addListener(() => {
chrome.test.sendScriptResult('disconnect')
});
)HTML";
EXPECT_EQ("disconnect",
ExecuteScriptInBackgroundPage(extension->id(), kDisconnectScript));
// 3) Navigate to B.
ASSERT_TRUE(ui_test_utils::NavigateToURL(browser(), url_b));
// 4) Expect that A is in the back forward cache.
EXPECT_EQ(render_frame_host_a->GetLifecycleState(),
content::RenderFrameHost::LifecycleState::kInBackForwardCache);
}
// Test that the extension background receives `disconnect` event if the
// channel is closed after the page enters BFCache.
IN_PROC_BROWSER_TEST_P(ExtensionBackForwardCacheBrowserTest,
ExtensionBackgroundOnDisconnectEvent) {
const Extension* extension = LoadExtension(
test_data_dir_.AppendASCII("back_forward_cache")
.AppendASCII("content_script_with_background_disconnect_listener"));
ASSERT_TRUE(extension);
ASSERT_TRUE(embedded_test_server()->Start());
GURL url_a(embedded_test_server()->GetURL("a.com", "/title1.html"));
GURL url_b(embedded_test_server()->GetURL("b.com", "/title1.html"));
// 1) Navigate to A.
content::RenderFrameHostWrapper rfh(
ui_test_utils::NavigateToURL(browser(), url_a));
std::u16string expected_title = u"connected";
content::TitleWatcher title_watcher(
browser()->tab_strip_model()->GetActiveWebContents(), expected_title);
std::string connectScript = base::StringPrintf(
R"JS(
var p = chrome.runtime.connect('%s');
p.onMessage.addListener((m) => {document.title = m; });
)JS",
extension->id().c_str());
ASSERT_TRUE(ExecJs(rfh.get(), connectScript));
// 2) Wait for the message port to be connected.
ASSERT_EQ(expected_title, title_watcher.WaitAndGetTitle());
// Expect that a channel is open.
EXPECT_EQ(1u, MessageService::Get(profile())->GetChannelCountForTest());
// 3) Navigate to B, and the channel is closed.
ASSERT_TRUE(ui_test_utils::NavigateToURL(browser(), url_b));
EXPECT_EQ(0u, MessageService::Get(profile())->GetChannelCountForTest());
// 4) Expect that A is in the back forward cache.
ASSERT_FALSE(rfh.IsDestroyed());
EXPECT_EQ(rfh->GetLifecycleState(),
content::RenderFrameHost::LifecycleState::kInBackForwardCache);
// 5) Expect that the `disconnect` event is dispatched to the background.
constexpr char kCheckDisconnectCountScript[] =
R"JS(chrome.test.sendScriptResult(disconnectCount))JS";
EXPECT_EQ(1, ExecuteScriptInBackgroundPage(extension->id(),
kCheckDisconnectCountScript));
}
// Tests sending a message to all frames does not send it to back-forward
// cached frames.
IN_PROC_BROWSER_TEST_P(ExtensionBackForwardCacheBrowserTest,
MessageSentToAllFramesDoesNotSendToBackForwardCache) {
const Extension* extension = extension =
LoadExtension(test_data_dir_.AppendASCII("back_forward_cache")
.AppendASCII("background_page"));
ASSERT_TRUE(extension);
ASSERT_TRUE(embedded_test_server()->Start());
GURL url_a(embedded_test_server()->GetURL("a.com", "/title2.html"));
GURL url_b(embedded_test_server()->GetURL("b.com", "/title1.html"));
// 1) Navigate to A.
content::RenderFrameHostWrapper render_frame_host_a(
ui_test_utils::NavigateToURL(browser(), url_a));
// 2) Navigate to B.
content::RenderFrameHostWrapper render_frame_host_b(
ui_test_utils::NavigateToURL(browser(), url_b));
// Ensure that `render_frame_host_a` is in the cache.
ASSERT_FALSE(render_frame_host_a.IsDestroyed());
EXPECT_EQ(render_frame_host_a->GetLifecycleState(),
content::RenderFrameHost::LifecycleState::kInBackForwardCache);
std::u16string expected_title = u"foo";
auto title_watcher = std::make_unique<content::TitleWatcher>(
browser()->tab_strip_model()->GetActiveWebContents(), expected_title);
static constexpr char kScript[] =
R"HTML(
chrome.tabs.executeScript({allFrames: true, code: "document.title='foo'"})
)HTML";
ASSERT_TRUE(ExecuteScriptInBackgroundPageNoWait(extension->id(), kScript));
EXPECT_EQ(expected_title, title_watcher->WaitAndGetTitle());
// `render_frame_host_a` should still be in the cache.
ASSERT_FALSE(render_frame_host_a.IsDestroyed());
EXPECT_EQ(render_frame_host_a->GetLifecycleState(),
content::RenderFrameHost::LifecycleState::kInBackForwardCache);
// Expect the original title when going back to A.
expected_title = u"Title Of Awesomeness";
title_watcher = std::make_unique<content::TitleWatcher>(
browser()->tab_strip_model()->GetActiveWebContents(), expected_title);
// Go back to A.
content::WebContents* web_contents =
browser()->tab_strip_model()->GetActiveWebContents();
web_contents->GetController().GoBack();
EXPECT_TRUE(WaitForLoadStop(web_contents));
EXPECT_EQ(expected_title, title_watcher->WaitAndGetTitle());
// `render_frame_host_b` should still be in the cache.
ASSERT_FALSE(render_frame_host_b.IsDestroyed());
EXPECT_EQ(render_frame_host_b->GetLifecycleState(),
content::RenderFrameHost::LifecycleState::kInBackForwardCache);
// Now go forward to B, and expect that it is what was set before it
// went into the back forward cache.
expected_title = u"foo";
title_watcher = std::make_unique<content::TitleWatcher>(
browser()->tab_strip_model()->GetActiveWebContents(), expected_title);
web_contents->GetController().GoForward();
EXPECT_TRUE(WaitForLoadStop(web_contents));
EXPECT_EQ(expected_title, title_watcher->WaitAndGetTitle());
}
// Tests sending a message to specific frame that is in the back forward cache
// fails.
IN_PROC_BROWSER_TEST_P(ExtensionBackForwardCacheBrowserTest,
MessageSentToCachedIdFails) {
const Extension* extension = extension =
LoadExtension(test_data_dir_.AppendASCII("back_forward_cache")
.AppendASCII("background_page"));
ASSERT_TRUE(extension);
ASSERT_TRUE(embedded_test_server()->Start());
GURL url_a(embedded_test_server()->GetURL("a.com", "/iframe_blank.html"));
GURL url_b(embedded_test_server()->GetURL("b.com", "/title1.html"));
// 1) Navigate to A.
content::RenderFrameHostWrapper render_frame_host_a(
ui_test_utils::NavigateToURL(browser(), url_a));
content::RenderFrameHostWrapper iframe(
ChildFrameAt(render_frame_host_a.get(), 0));
ASSERT_TRUE(iframe.get());
// Cache the iframe's frame tree node id to send it a message later.
content::FrameTreeNodeId iframe_frame_tree_node_id =
iframe->GetFrameTreeNodeId();
// 2) Navigate to B.
content::RenderFrameHostWrapper render_frame_host_b(
ui_test_utils::NavigateToURL(browser(), url_b));
// Ensure that `render_frame_host_a` is in the cache.
EXPECT_FALSE(render_frame_host_a.IsDestroyed());
EXPECT_NE(render_frame_host_a.get(), render_frame_host_b.get());
EXPECT_EQ(render_frame_host_a->GetLifecycleState(),
content::RenderFrameHost::LifecycleState::kInBackForwardCache);
std::u16string expected_title = u"foo";
auto title_watcher = std::make_unique<content::TitleWatcher>(
browser()->tab_strip_model()->GetActiveWebContents(), expected_title);
static constexpr char kScript[] =
R"HTML(
chrome.tabs.executeScript({frameId: %d,
code: "document.title='foo'",
matchAboutBlank: true
}, (e) => {
chrome.test.sendScriptResult(chrome.runtime.lastError ? 'false'
: 'true')});
)HTML";
EXPECT_EQ("false", ExecuteScriptInBackgroundPage(
extension->id(),
base::StringPrintf(
kScript, iframe_frame_tree_node_id.value())));
// Go back to A.
content::WebContents* web_contents =
browser()->tab_strip_model()->GetActiveWebContents();
web_contents->GetController().GoBack();
EXPECT_TRUE(WaitForLoadStop(web_contents));
// Re-execute the script.
EXPECT_EQ("true", ExecuteScriptInBackgroundPage(
extension->id(),
base::StringPrintf(kScript,
iframe_frame_tree_node_id.value())));
}
// Test that running extensions message dispatching via a ScriptContext::ForEach
// for back forward cached pages causes eviction of that RenderFrameHost.
IN_PROC_BROWSER_TEST_P(ExtensionBackForwardCacheBrowserTest,
StorageCallbackEvicts) {
const Extension* extension = extension =
LoadExtension(test_data_dir_.AppendASCII("back_forward_cache")
.AppendASCII("content_script_storage"));
ASSERT_TRUE(extension);
ASSERT_TRUE(embedded_test_server()->Start());
GURL url_a(embedded_test_server()->GetURL("a.com", "/title1.html"));
GURL url_b(embedded_test_server()->GetURL("b.com", "/title2.html"));
// 1) Navigate to A and wait until the extension's content script has
// executed.
content::RenderFrameHostWrapper render_frame_host_a(
ui_test_utils::NavigateToURL(browser(), url_a));
// 2) Navigate to B. Ensure that |render_frame_host_a| is in back/forward
// cache.
ASSERT_TRUE(ui_test_utils::NavigateToURL(browser(), url_b));
EXPECT_EQ(render_frame_host_a->GetLifecycleState(),
content::RenderFrameHost::LifecycleState::kInBackForwardCache);
// Validate that the eviction due to JavaScript execution has not happened.
EXPECT_EQ(0, histogram_tester_.GetBucketCount(
"BackForwardCache.Eviction.Renderer",
blink::mojom::RendererEvictionReason::kJavaScriptExecution));
// 3) Navigate back to A and make sure that the callback is called after
// restore.
ASSERT_TRUE(HistoryGoBack(web_contents()));
// Check that the page was cached.
ASSERT_EQ(render_frame_host_a.get(), web_contents()->GetPrimaryMainFrame());
// Wait for the content script to run.
content::DOMMessageQueue dom_message_queue(web_contents());
std::string dom_message;
ASSERT_TRUE(dom_message_queue.WaitForMessage(&dom_message));
ASSERT_EQ("\"event handler ran\"", dom_message);
// Verify that the callback was called.
EXPECT_EQ("called", EvalJs(render_frame_host_a.get(),
"document.getElementById('callback').value;"));
}
// Test that ensures the origin restriction declared on the extension
// manifest.json is properly respected even when BFCache is involved.
IN_PROC_BROWSER_TEST_P(ExtensionBackForwardCacheBrowserTest, TabsOrigin) {
scoped_refptr<const Extension> extension =
LoadExtension(test_data_dir_.AppendASCII("back_forward_cache")
.AppendASCII("correct_origin"));
ASSERT_TRUE(extension);
ASSERT_TRUE(embedded_test_server()->Start());
GURL url_a(embedded_test_server()->GetURL("a.com", "/title1.html"));
GURL url_b(embedded_test_server()->GetURL("b.com", "/title1.html"));
// 1) Navigate to A.
content::RenderFrameHostWrapper render_frame_host_a(
ui_test_utils::NavigateToURL(browser(), url_a));
ExpectTitleChangeSuccess(*extension, "first nav");
// 2) Navigate to B.
ASSERT_TRUE(ui_test_utils::NavigateToURL(browser(), url_b));
// Ensure that `render_frame_host_a` is in the cache.
EXPECT_FALSE(render_frame_host_a.IsDestroyed());
EXPECT_EQ(render_frame_host_a->GetLifecycleState(),
content::RenderFrameHost::LifecycleState::kInBackForwardCache);
ExpectTitleChangeFail(*extension);
// 3) Go back to A.
content::WebContents* web_contents =
browser()->tab_strip_model()->GetActiveWebContents();
web_contents->GetController().GoBack();
EXPECT_TRUE(WaitForLoadStop(web_contents));
std::u16string title;
ASSERT_TRUE(ui_test_utils::GetCurrentTabTitle(browser(), &title));
ASSERT_EQ(title, u"first nav");
ExpectTitleChangeSuccess(*extension, "restore nav");
}
// Test that ensures the content scripts only execute once on a back/forward
// cached page.
IN_PROC_BROWSER_TEST_P(ExtensionBackForwardCacheBrowserTest,
ContentScriptsRunOnlyOnce) {
ASSERT_TRUE(LoadExtension(test_data_dir_.AppendASCII("back_forward_cache")
.AppendASCII("content_script_stages")));
ASSERT_TRUE(embedded_test_server()->Start());
GURL url_a(embedded_test_server()->GetURL("a.com", "/title1.html"));
GURL url_b(embedded_test_server()->GetURL("b.com", "/title1.html"));
std::u16string expected_title = u"document_idle";
content::TitleWatcher title_watcher(
browser()->tab_strip_model()->GetActiveWebContents(), expected_title);
// 1) Navigate to A.
content::RenderFrameHostWrapper render_frame_host_a(
ui_test_utils::NavigateToURL(browser(), url_a));
EXPECT_EQ(expected_title, title_watcher.WaitAndGetTitle());
// Verify that the content scripts have been run (the 'stage' element
// is created by the content script running at 'document_start" and
// populated whenever the content script run at 'document_start',
// 'document_end', or 'document_idle').
EXPECT_EQ("document_start/document_end/document_idle/page_show/",
EvalJs(render_frame_host_a.get(),
"document.getElementById('stage').value;"));
// 2) Navigate to B.
ASSERT_TRUE(ui_test_utils::NavigateToURL(browser(), url_b));
// Ensure that `render_frame_host_a` is in the cache.
EXPECT_FALSE(render_frame_host_a.IsDestroyed());
EXPECT_EQ(render_frame_host_a->GetLifecycleState(),
content::RenderFrameHost::LifecycleState::kInBackForwardCache);
// 3) Go back to A.
content::WebContents* web_contents =
browser()->tab_strip_model()->GetActiveWebContents();
web_contents->GetController().GoBack();
EXPECT_TRUE(WaitForLoadStop(web_contents));
// Verify that the content scripts have not run again and that the
// 'stage' element has the appended a page_hide/page_show to its list.
EXPECT_EQ(
"document_start/document_end/document_idle/page_show/page_hide/"
"page_show/",
EvalJs(render_frame_host_a.get(),
"document.getElementById('stage').value;"));
}
// Test that an activeTab permission temporarily granted to an extension for a
// page does not revive when the BFCache entry is restored.
IN_PROC_BROWSER_TEST_P(ExtensionBackForwardCacheBrowserTest,
ActiveTabPermissionRevoked) {
scoped_refptr<const Extension> extension =
LoadExtension(test_data_dir_.AppendASCII("back_forward_cache")
.AppendASCII("active_tab"));
ASSERT_TRUE(extension);
ASSERT_TRUE(embedded_test_server()->Start());
GURL url_a(embedded_test_server()->GetURL("a.com", "/title1.html"));
GURL url_b(embedded_test_server()->GetURL("b.com", "/title1.html"));
// 1) Navigate to A.
content::RenderFrameHostWrapper render_frame_host_a(
ui_test_utils::NavigateToURL(browser(), url_a));
// Grant the activeTab permission.
content::WebContents* web_contents =
browser()->tab_strip_model()->GetActiveWebContents();
ExtensionActionRunner::GetForWebContents(web_contents)
->RunAction(extension.get(), /* grant_tab_permissions=*/true);
ExpectTitleChangeSuccess(*extension, "changed_title");
// 2) Navigate to B.
ASSERT_TRUE(ui_test_utils::NavigateToURL(browser(), url_b));
// Ensure that `render_frame_host_a` is in the cache.
EXPECT_FALSE(render_frame_host_a.IsDestroyed());
EXPECT_EQ(render_frame_host_a->GetLifecycleState(),
content::RenderFrameHost::LifecycleState::kInBackForwardCache);
// Extension should no longer be able to change title, since the permission
// should be revoked with a cross-site navigation.
ExpectTitleChangeFail(*extension);
// 3) Go back to A.
web_contents->GetController().GoBack();
EXPECT_TRUE(WaitForLoadStop(web_contents));
// Extension should no longer be able to change title, since the permission
// should not revive with BFCache navigation to a.com.
ExpectTitleChangeFail(*extension);
}
class ExtensionBackForwardCacheWithPrerenderBrowserTest
: public ExtensionBackForwardCacheBrowserTest {
public:
ExtensionBackForwardCacheWithPrerenderBrowserTest()
: prerender_helper_(base::BindRepeating(
&ExtensionBackForwardCacheBrowserTest::web_contents,
base::Unretained(this))) {}
void SetUp() override {
prerender_helper_.RegisterServerRequestMonitor(embedded_test_server());
ExtensionBackForwardCacheBrowserTest::SetUp();
}
content::test::PrerenderTestHelper& prerender_helper() {
return prerender_helper_;
}
private:
content::test::PrerenderTestHelper prerender_helper_;
};
INSTANTIATE_TEST_SUITE_P(EventPage,
ExtensionBackForwardCacheWithPrerenderBrowserTest,
Values(ContextType::kEventPage));
INSTANTIATE_TEST_SUITE_P(ServiceWorker,
ExtensionBackForwardCacheWithPrerenderBrowserTest,
Values(ContextType::kServiceWorker));
// Test the extension message port created during prerendering won't be closed
// after the prerendered page is activated.
IN_PROC_BROWSER_TEST_P(ExtensionBackForwardCacheWithPrerenderBrowserTest,
PortIsStillOpenAfterPrerenderAndActivate) {
// This extension will automatically create a port from the content script.
// It's only registers on title2.html, the prerendered page from this test.
const Extension* extension =
LoadExtension(test_data_dir_.AppendASCII("back_forward_cache")
.AppendASCII("content_script_auto_connect"));
ASSERT_TRUE(extension);
ASSERT_TRUE(embedded_test_server()->Start());
base::HistogramTester histogram_tester;
GURL url_a(embedded_test_server()->GetURL("a.com", "/title1.html"));
// 1) Navigate to A.
content::RenderFrameHostWrapper render_frame_host_a(
ui_test_utils::NavigateToURL(browser(), url_a));
// 2) Start a prerender.
GURL prerender_url = embedded_test_server()->GetURL("a.com", "/title2.html");
prerender_helper().AddPrerender(prerender_url);
// 3) Activate.
content::TestActivationManager activation_manager(web_contents(),
prerender_url);
ASSERT_TRUE(
content::ExecJs(web_contents()->GetPrimaryMainFrame(),
content::JsReplace("location = $1", prerender_url)));
activation_manager.WaitForNavigationFinished();
EXPECT_TRUE(activation_manager.was_activated());
histogram_tester.ExpectUniqueSample(
"Prerender.Experimental.PrerenderHostFinalStatus.SpeculationRule",
/* PrerenderFinalStatus::kActivated */ 0, 1);
// The channel associated to the prerendered page should be open.
EXPECT_EQ(1u, MessageService::Get(profile())->GetChannelCountForTest());
}
} // namespace extensions
|