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
|
// 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.
#ifdef UNSAFE_BUFFERS_BUILD
// TODO(crbug.com/390223051): Remove C-library calls to fix the errors.
#pragma allow_unsafe_libc_calls
#endif
#include "base/command_line.h"
#include "base/functional/bind.h"
#include "base/run_loop.h"
#include "base/strings/utf_string_conversions.h"
#include "build/build_config.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/browser_commands.h"
#include "chrome/browser/ui/browser_list.h"
#include "chrome/browser/ui/tabs/tab_strip_model.h"
#include "chrome/common/chrome_switches.h"
#include "chrome/test/base/in_process_browser_test.h"
#include "chrome/test/base/ui_test_utils.h"
#include "components/embedder_support/switches.h"
#include "components/javascript_dialogs/app_modal_dialog_controller.h"
#include "components/javascript_dialogs/app_modal_dialog_view.h"
#include "content/public/browser/browser_task_traits.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/browser/render_frame_host.h"
#include "content/public/browser/web_contents.h"
#include "content/public/common/content_switches.h"
#include "content/public/test/browser_test.h"
#include "content/public/test/browser_test_utils.h"
#include "content/public/test/test_navigation_observer.h"
#include "net/dns/mock_host_resolver.h"
#include "net/test/embedded_test_server/embedded_test_server.h"
#include "third_party/blink/public/common/features.h"
using content::BrowserThread;
const char NOLISTENERS_HTML[] =
"<html><head><title>nolisteners</title></head><body></body></html>";
const char UNLOAD_HTML[] =
"<html><head><title>unload</title></head><body>"
"<script>window.onunload=function(e){}</script></body></html>";
const char BEFORE_UNLOAD_HTML[] =
"<html><head><title>beforeunload</title></head><body>"
"<script>window.onbeforeunload=function(e){"
"setTimeout('document.title=\"cancelled\"', 0);return 'foo'}</script>"
"</body></html>";
const char INNER_FRAME_WITH_FOCUS_HTML[] =
"<html><head><title>innerframewithfocus</title></head><body>"
"<script>window.onbeforeunload=function(e){return 'foo'}</script>"
"<iframe src=\"data:text/html,<html><head><script>window.onload="
"function(){document.getElementById('box').focus()}</script>"
"<body><input id='box'></input></body></html>\"></iframe>"
"</body></html>";
const char INFINITE_UNLOAD_HTML[] =
"<html><head><title>infiniteunload</title></head><body>"
"<script>window.onunload=function(e){while(true){}}</script>"
"</body></html>";
const char INFINITE_BEFORE_UNLOAD_HTML[] =
"<html><head><title>infinitebeforeunload</title></head><body>"
"<script>window.onbeforeunload=function(e){while(true){}}</script>"
"</body></html>";
const char INFINITE_UNLOAD_ALERT_HTML[] =
"<html><head><title>infiniteunloadalert</title></head><body>"
"<script>window.onunload=function(e){"
"while(true){}"
"alert('foo');"
"}</script></body></html>";
const char INFINITE_BEFORE_UNLOAD_ALERT_HTML[] =
"<html><head><title>infinitebeforeunloadalert</title></head><body>"
"<script>window.onbeforeunload=function(e){"
"while(true){}"
"alert('foo');"
"}</script></body></html>";
const char TWO_SECOND_UNLOAD_ALERT_HTML[] =
"<html><head><title>twosecondunloadalert</title></head><body>"
"<script>window.onunload=function(e){"
"var start = new Date().getTime();"
"while(new Date().getTime() - start < 2000){}"
"alert('foo');"
"}</script></body></html>";
const char TWO_SECOND_BEFORE_UNLOAD_ALERT_HTML[] =
"<html><head><title>twosecondbeforeunloadalert</title></head><body>"
"<script>window.onbeforeunload=function(e){"
"var start = new Date().getTime();"
"while(new Date().getTime() - start < 2000){}"
"alert('foo');"
"}</script></body></html>";
const char CLOSE_TAB_WHEN_OTHER_TAB_HAS_LISTENER[] =
"<html><head><title>only_one_unload</title></head>"
"<script>"
"function openPopup() {"
" var w = window.open('about:blank');"
" w.document.write('<html><head><title>popup</title></head></body>');"
"}"
"</script>"
"<body onclick='openPopup()' onbeforeunload='return;'>"
"</body></html>";
class UnloadResults {
public:
UnloadResults() : successes_(0), aborts_(0) {}
void AddSuccess(const base::FilePath&) { successes_++; }
void AddAbort(const base::FilePath&) { aborts_++; }
void AddError(const base::FilePath&) {
ADD_FAILURE() << "AddError should not be called.";
}
int get_successes() { return successes_; }
int get_aborts() { return aborts_; }
private:
int successes_;
int aborts_;
};
class UnloadTest : public InProcessBrowserTest {
public:
void SetUpCommandLine(base::CommandLine* command_line) override {
const testing::TestInfo* const test_info =
testing::UnitTest::GetInstance()->current_test_info();
if (strstr(test_info->name(), "BrowserCloseTabWhenOtherTabHasListener") !=
nullptr) {
command_line->AppendSwitch(embedder_support::kDisablePopupBlocking);
} else if (strstr(test_info->name(), "BrowserTerminateBeforeUnload") !=
nullptr) {
#if BUILDFLAG(IS_POSIX)
DisableSIGTERMHandling();
#endif
}
}
void SetUpOnMainThread() override {
host_resolver()->AddRule("*", "127.0.0.1");
}
void CheckTitle(const char* expected_title, bool wait = false) {
auto* web_contents = browser()->tab_strip_model()->GetActiveWebContents();
std::u16string expected = base::ASCIIToUTF16(expected_title);
std::u16string actual;
if (wait)
actual = content::TitleWatcher(web_contents, expected).WaitAndGetTitle();
else
actual = web_contents->GetTitle();
EXPECT_EQ(expected, actual);
}
void NavigateToDataURL(const char* html_content, const char* expected_title) {
ASSERT_TRUE(ui_test_utils::NavigateToURL(
browser(), GURL(std::string("data:text/html,") + html_content)));
CheckTitle(expected_title);
}
void NavigateToNolistenersFileTwice() {
ASSERT_TRUE(embedded_test_server()->Start());
GURL url(embedded_test_server()->GetURL("/title2.html"));
ASSERT_TRUE(ui_test_utils::NavigateToURL(browser(), url));
CheckTitle("Title Of Awesomeness");
ASSERT_TRUE(ui_test_utils::NavigateToURL(browser(), url));
CheckTitle("Title Of Awesomeness");
}
// Navigates to a URL asynchronously, then again synchronously. The first
// load is purposely async to test the case where the user loads another
// page without waiting for the first load to complete.
void NavigateToNolistenersFileTwiceAsync() {
ASSERT_TRUE(embedded_test_server()->Start());
GURL url(embedded_test_server()->GetURL("/title2.html"));
ui_test_utils::NavigateToURLWithDisposition(
browser(), url, WindowOpenDisposition::CURRENT_TAB, 0);
ASSERT_TRUE(ui_test_utils::NavigateToURL(browser(), url));
CheckTitle("Title Of Awesomeness");
}
void LoadUrlAndQuitBrowser(const char* html_content,
const char* expected_title) {
NavigateToDataURL(html_content, expected_title);
CloseBrowserSynchronously(browser());
}
// If |accept| is true, simulates user clicking OK, otherwise simulates
// clicking Cancel.
void ClickModalDialogButton(bool accept) {
javascript_dialogs::AppModalDialogController* dialog =
ui_test_utils::WaitForAppModalDialog();
if (accept)
dialog->view()->AcceptAppModalDialog();
else
dialog->view()->CancelAppModalDialog();
}
void PrepareForDialog(Browser* browser) {
for (int i = 0; i < browser->tab_strip_model()->count(); i++) {
content::PrepContentsForBeforeUnloadTest(
browser->tab_strip_model()->GetWebContentsAt(i));
}
}
void CloseBrowsersVerifyUnloadSuccess(bool force) {
UnloadResults unload_results;
BrowserList::CloseAllBrowsersWithProfile(
browser()->profile(),
base::BindRepeating(&UnloadResults::AddSuccess,
base::Unretained(&unload_results)),
base::BindRepeating(&UnloadResults::AddAbort,
base::Unretained(&unload_results)),
force);
ui_test_utils::WaitForBrowserToClose();
EXPECT_EQ(1, unload_results.get_successes());
EXPECT_EQ(0, unload_results.get_aborts());
}
// The test harness cannot close the window automatically, because it requires
// confirmation. We close the window manually instead.
void ManuallyCloseWindow() {
chrome::CloseWindow(browser());
ClickModalDialogButton(true);
ui_test_utils::WaitForBrowserToClose();
}
const std::string GenerateDataURL(std::string listener_html,
bool is_onbeforeunload = true) {
std::string listener =
is_onbeforeunload
? "window.onbeforeunload=function(event){"
"setTimeout('document.title=\"cancelled\"', "
"0);" +
listener_html + "}"
: "window.addEventListener('beforeunload', function(event){"
"setTimeout('document.title=\"cancelled\"', "
"0);" +
listener_html + "})";
std::string result =
"<html><head><title>beforeunload</title></head><body>"
"<script>" +
listener +
"</script>"
"</body></html>";
return result;
}
private:
base::test::ScopedFeatureList scoped_feature_list;
};
// Navigate to a page with an infinite unload handler.
// Then two async crosssite requests to ensure
// we don't get confused and think we're closing the tab.
//
// This test is flaky on the valgrind UI bots. http://crbug.com/39057
IN_PROC_BROWSER_TEST_F(UnloadTest, CrossSiteInfiniteUnloadAsync) {
// Tests makes no sense in single-process mode since the renderer is hung.
if (base::CommandLine::ForCurrentProcess()->HasSwitch(
switches::kSingleProcess))
return;
NavigateToDataURL(INFINITE_UNLOAD_HTML, "infiniteunload");
// Must navigate to a non-data URL to trigger cross-site codepath.
NavigateToNolistenersFileTwiceAsync();
}
// Navigate to a page with an infinite unload handler.
// Then two sync crosssite requests to ensure
// we correctly nav to each one.
IN_PROC_BROWSER_TEST_F(UnloadTest, CrossSiteInfiniteUnloadSync) {
// Tests makes no sense in single-process mode since the renderer is hung.
if (base::CommandLine::ForCurrentProcess()->HasSwitch(
switches::kSingleProcess))
return;
NavigateToDataURL(INFINITE_UNLOAD_HTML, "infiniteunload");
// Must navigate to a non-data URL to trigger cross-site codepath.
NavigateToNolistenersFileTwice();
}
// Navigate to a page with an infinite beforeunload handler.
// Then two two async crosssite requests to ensure
// we don't get confused and think we're closing the tab.
// This test is flaky on the valgrind UI bots. http://crbug.com/39057 and
// http://crbug.com/86469
IN_PROC_BROWSER_TEST_F(UnloadTest, CrossSiteInfiniteBeforeUnloadAsync) {
// Tests makes no sense in single-process mode since the renderer is hung.
if (base::CommandLine::ForCurrentProcess()->HasSwitch(
switches::kSingleProcess))
return;
NavigateToDataURL(INFINITE_BEFORE_UNLOAD_HTML, "infinitebeforeunload");
// Must navigate to a non-data URL to trigger cross-site codepath.
NavigateToNolistenersFileTwiceAsync();
}
// Navigate to a page with an infinite beforeunload handler.
// Then two two sync crosssite requests to ensure
// we correctly nav to each one.
// Flaky on Win, Linux, and Mac; http://crbug.com/462671.
IN_PROC_BROWSER_TEST_F(UnloadTest, DISABLED_CrossSiteInfiniteBeforeUnloadSync) {
// Tests makes no sense in single-process mode since the renderer is hung.
if (base::CommandLine::ForCurrentProcess()->HasSwitch(
switches::kSingleProcess))
return;
NavigateToDataURL(INFINITE_BEFORE_UNLOAD_HTML, "infinitebeforeunload");
// Must navigate to a non-data URL to trigger cross-site codepath.
NavigateToNolistenersFileTwice();
}
// Tests closing the browser on a page with no unload listeners registered.
IN_PROC_BROWSER_TEST_F(UnloadTest, BrowserCloseNoUnloadListeners) {
LoadUrlAndQuitBrowser(NOLISTENERS_HTML, "nolisteners");
}
// Tests closing the browser on a page with an unload listener registered.
// Test marked as flaky in http://crbug.com/51698
IN_PROC_BROWSER_TEST_F(UnloadTest, DISABLED_BrowserCloseUnload) {
LoadUrlAndQuitBrowser(UNLOAD_HTML, "unload");
}
// Tests closing the browser with a beforeunload handler and clicking
// OK in the beforeunload confirm dialog.
IN_PROC_BROWSER_TEST_F(UnloadTest, BrowserCloseBeforeUnloadOK) {
NavigateToDataURL(BEFORE_UNLOAD_HTML, "beforeunload");
PrepareForDialog(browser());
chrome::CloseWindow(browser());
ClickModalDialogButton(true);
ui_test_utils::WaitForBrowserToClose();
}
// Tests closing the browser with a beforeunload handler and clicking
// CANCEL in the beforeunload confirm dialog.
// If this test flakes, reopen http://crbug.com/123110
IN_PROC_BROWSER_TEST_F(UnloadTest, BrowserCloseBeforeUnloadCancel) {
NavigateToDataURL(BEFORE_UNLOAD_HTML, "beforeunload");
PrepareForDialog(browser());
chrome::CloseWindow(browser());
// We wait for the title to change after cancelling the closure of browser
// window, to ensure that in-flight IPCs from the renderer reach the browser.
// Otherwise the browser won't put up the beforeunload dialog because it's
// waiting for an ack from the renderer.
std::u16string expected_title = u"cancelled";
content::TitleWatcher title_watcher(
browser()->tab_strip_model()->GetActiveWebContents(), expected_title);
ClickModalDialogButton(false);
ASSERT_EQ(expected_title, title_watcher.WaitAndGetTitle());
ManuallyCloseWindow();
}
// Tests closing the browser by BrowserList::CloseAllBrowsersWithProfile,
// on a page with no unload listeners registered.
IN_PROC_BROWSER_TEST_F(UnloadTest, BrowserListCloseNoUnloadListeners) {
NavigateToDataURL(NOLISTENERS_HTML, "nolisteners");
CloseBrowsersVerifyUnloadSuccess(false);
}
// Tests closing the browser by BrowserList::CloseAllBrowsersWithProfile, with a
// beforeunload handler and clicking Leave in the beforeunload confirm dialog.
IN_PROC_BROWSER_TEST_F(UnloadTest, BrowserListCloseBeforeUnloadOK) {
NavigateToDataURL(BEFORE_UNLOAD_HTML, "beforeunload");
PrepareForDialog(browser());
UnloadResults unload_results;
BrowserList::CloseAllBrowsersWithProfile(
browser()->profile(),
base::BindRepeating(&UnloadResults::AddSuccess,
base::Unretained(&unload_results)),
base::BindRepeating(&UnloadResults::AddAbort,
base::Unretained(&unload_results)),
false);
ClickModalDialogButton(true);
ui_test_utils::WaitForBrowserToClose();
EXPECT_EQ(1, unload_results.get_successes());
EXPECT_EQ(0, unload_results.get_aborts());
}
IN_PROC_BROWSER_TEST_F(UnloadTest, BrowserListForceCloseNoUnloadListeners) {
NavigateToDataURL(NOLISTENERS_HTML, "nolisteners");
CloseBrowsersVerifyUnloadSuccess(true);
}
IN_PROC_BROWSER_TEST_F(UnloadTest, BrowserListForceCloseWithBeforeUnload) {
NavigateToDataURL(BEFORE_UNLOAD_HTML, "beforeunload");
CloseBrowsersVerifyUnloadSuccess(true);
}
// Tests closing the browser by BrowserList::CloseAllBrowsersWithProfile, with a
// beforeunload handler and clicking Stay in the beforeunload confirm dialog.
// TODO(crbug.com/40241736): Flaky on Mac.
#if BUILDFLAG(IS_MAC)
#define MAYBE_BrowserListCloseBeforeUnloadCancel \
DISABLED_BrowserListCloseBeforeUnloadCancel
#else
#define MAYBE_BrowserListCloseBeforeUnloadCancel \
BrowserListCloseBeforeUnloadCancel
#endif
IN_PROC_BROWSER_TEST_F(UnloadTest, MAYBE_BrowserListCloseBeforeUnloadCancel) {
NavigateToDataURL(BEFORE_UNLOAD_HTML, "beforeunload");
PrepareForDialog(browser());
UnloadResults unload_results;
BrowserList::CloseAllBrowsersWithProfile(
browser()->profile(),
base::BindRepeating(&UnloadResults::AddSuccess,
base::Unretained(&unload_results)),
base::BindRepeating(&UnloadResults::AddAbort,
base::Unretained(&unload_results)),
false);
// We wait for the title to change after cancelling the closure of browser
// window, to ensure that in-flight IPCs from the renderer reach the browser.
// Otherwise the browser won't put up the beforeunload dialog because it's
// waiting for an ack from the renderer.
std::u16string expected_title = u"cancelled";
content::TitleWatcher title_watcher(
browser()->tab_strip_model()->GetActiveWebContents(), expected_title);
ClickModalDialogButton(false);
ASSERT_EQ(expected_title, title_watcher.WaitAndGetTitle());
EXPECT_EQ(0, unload_results.get_successes());
EXPECT_EQ(1, unload_results.get_aborts());
ManuallyCloseWindow();
}
// Tests double calls to BrowserList::CloseAllBrowsersWithProfile, with a
// beforeunload handler and clicking Leave in the beforeunload confirm dialog.
IN_PROC_BROWSER_TEST_F(UnloadTest, BrowserListDoubleCloseBeforeUnloadOK) {
NavigateToDataURL(BEFORE_UNLOAD_HTML, "beforeunload");
PrepareForDialog(browser());
UnloadResults unload_results;
BrowserList::CloseAllBrowsersWithProfile(
browser()->profile(),
base::BindRepeating(&UnloadResults::AddSuccess,
base::Unretained(&unload_results)),
base::BindRepeating(&UnloadResults::AddAbort,
base::Unretained(&unload_results)),
false);
BrowserList::CloseAllBrowsersWithProfile(
browser()->profile(),
base::BindRepeating(&UnloadResults::AddSuccess,
base::Unretained(&unload_results)),
base::BindRepeating(&UnloadResults::AddAbort,
base::Unretained(&unload_results)),
false);
ClickModalDialogButton(true);
ui_test_utils::WaitForBrowserToClose();
EXPECT_EQ(1, unload_results.get_successes());
EXPECT_EQ(0, unload_results.get_aborts());
}
// Tests double calls to BrowserList::CloseAllBrowsersWithProfile, with a
// beforeunload handler and clicking Stay in the beforeunload confirm dialog.
IN_PROC_BROWSER_TEST_F(UnloadTest, BrowserListDoubleCloseBeforeUnloadCancel) {
NavigateToDataURL(BEFORE_UNLOAD_HTML, "beforeunload");
PrepareForDialog(browser());
UnloadResults unload_results;
BrowserList::CloseAllBrowsersWithProfile(
browser()->profile(),
base::BindRepeating(&UnloadResults::AddSuccess,
base::Unretained(&unload_results)),
base::BindRepeating(&UnloadResults::AddAbort,
base::Unretained(&unload_results)),
false);
BrowserList::CloseAllBrowsersWithProfile(
browser()->profile(),
base::BindRepeating(&UnloadResults::AddSuccess,
base::Unretained(&unload_results)),
base::BindRepeating(&UnloadResults::AddAbort,
base::Unretained(&unload_results)),
false);
// We wait for the title to change after cancelling the closure of browser
// window, to ensure that in-flight IPCs from the renderer reach the browser.
// Otherwise the browser won't put up the beforeunload dialog because it's
// waiting for an ack from the renderer.
std::u16string expected_title = u"cancelled";
content::TitleWatcher title_watcher(
browser()->tab_strip_model()->GetActiveWebContents(), expected_title);
ClickModalDialogButton(false);
ASSERT_EQ(expected_title, title_watcher.WaitAndGetTitle());
EXPECT_EQ(0, unload_results.get_successes());
EXPECT_EQ(1, unload_results.get_aborts());
ManuallyCloseWindow();
}
// Tests closing the browser by BrowserList::CloseAllBrowsersWithProfile, with
// a null success callback, a beforeunload handler and clicking Leave in the
// beforeunload confirm dialog. The test succeed if no crash happens.
IN_PROC_BROWSER_TEST_F(UnloadTest, BrowserListCloseBeforeUnloadNullCallbackOk) {
NavigateToDataURL(BEFORE_UNLOAD_HTML, "beforeunload");
PrepareForDialog(browser());
UnloadResults unload_results;
BrowserList::CloseAllBrowsersWithProfile(browser()->profile(),
BrowserList::CloseCallback(),
BrowserList::CloseCallback(), false);
ClickModalDialogButton(true);
ui_test_utils::WaitForBrowserToClose();
}
// Tests closing the browser by BrowserList::CloseAllBrowsersWithProfile, with
// a null failure callback, a beforeunload handler and clicking Stay in the
// beforeunload confirm dialog. The test succeed if no crash happens.
IN_PROC_BROWSER_TEST_F(UnloadTest,
BrowserListCloseBeforeUnloadNullCallbackCancel) {
NavigateToDataURL(BEFORE_UNLOAD_HTML, "beforeunload");
PrepareForDialog(browser());
UnloadResults unload_results;
BrowserList::CloseAllBrowsersWithProfile(browser()->profile(),
BrowserList::CloseCallback(),
BrowserList::CloseCallback(), false);
// We wait for the title to change after cancelling the closure of browser
// window, to ensure that in-flight IPCs from the renderer reach the browser.
// Otherwise the browser won't put up the beforeunload dialog because it's
// waiting for an ack from the renderer.
std::u16string expected_title = u"cancelled";
content::TitleWatcher title_watcher(
browser()->tab_strip_model()->GetActiveWebContents(), expected_title);
ClickModalDialogButton(false);
ASSERT_EQ(expected_title, title_watcher.WaitAndGetTitle());
ManuallyCloseWindow();
}
// Tests terminating the browser with a beforeunload handler.
// Currently only ChromeOS shuts down gracefully.
#if BUILDFLAG(IS_CHROMEOS)
IN_PROC_BROWSER_TEST_F(UnloadTest, BrowserTerminateBeforeUnload) {
NavigateToDataURL(BEFORE_UNLOAD_HTML, "beforeunload");
EXPECT_EQ(kill(base::GetCurrentProcessHandle(), SIGTERM), 0);
}
#endif
// Tests closing the browser and clicking OK in the beforeunload confirm dialog
// if an inner frame has the focus.
// If this flakes, use http://crbug.com/32615 and http://crbug.com/45675
IN_PROC_BROWSER_TEST_F(UnloadTest, BrowserCloseWithInnerFocusedFrame) {
NavigateToDataURL(INNER_FRAME_WITH_FOCUS_HTML, "innerframewithfocus");
PrepareForDialog(browser());
ManuallyCloseWindow();
}
// Tests closing the browser with a beforeunload handler that takes forever
// by running an infinite loop.
IN_PROC_BROWSER_TEST_F(UnloadTest, BrowserCloseInfiniteBeforeUnload) {
LoadUrlAndQuitBrowser(INFINITE_BEFORE_UNLOAD_HTML, "infinitebeforeunload");
}
// Tests closing the browser on a page with an unload listener registered where
// the unload handler has an infinite loop.
IN_PROC_BROWSER_TEST_F(UnloadTest, BrowserCloseInfiniteUnload) {
// Tests makes no sense in single-process mode since the renderer is hung.
if (base::CommandLine::ForCurrentProcess()->HasSwitch(
switches::kSingleProcess))
return;
LoadUrlAndQuitBrowser(INFINITE_UNLOAD_HTML, "infiniteunload");
}
// Tests closing the browser on a page with an unload listener registered where
// the unload handler has an infinite loop followed by an alert.
// If this flakes, use http://crbug.com/86469
IN_PROC_BROWSER_TEST_F(UnloadTest, BrowserCloseInfiniteUnloadAlert) {
// Tests makes no sense in single-process mode since the renderer is hung.
if (base::CommandLine::ForCurrentProcess()->HasSwitch(
switches::kSingleProcess))
return;
LoadUrlAndQuitBrowser(INFINITE_UNLOAD_ALERT_HTML, "infiniteunloadalert");
}
// Tests closing the browser with a beforeunload handler that hangs then
// pops up an alert.
// If this flakes, use http://crbug.com/78803 and http://crbug.com/86469.
IN_PROC_BROWSER_TEST_F(UnloadTest,
DISABLED_BrowserCloseInfiniteBeforeUnloadAlert) {
// Tests makes no sense in single-process mode since the renderer is hung.
if (base::CommandLine::ForCurrentProcess()->HasSwitch(
switches::kSingleProcess))
return;
LoadUrlAndQuitBrowser(INFINITE_BEFORE_UNLOAD_ALERT_HTML,
"infinitebeforeunloadalert");
}
// Tests closing the browser on a page with an unload listener registered where
// the unload handler has an 2 second long loop followed by an alert.
IN_PROC_BROWSER_TEST_F(UnloadTest, BrowserCloseTwoSecondUnloadAlert) {
LoadUrlAndQuitBrowser(TWO_SECOND_UNLOAD_ALERT_HTML, "twosecondunloadalert");
}
// Tests closing the browser with a beforeunload handler that takes
// two seconds to run then pops up an alert.
IN_PROC_BROWSER_TEST_F(UnloadTest, BrowserCloseTwoSecondBeforeUnloadAlert) {
LoadUrlAndQuitBrowser(TWO_SECOND_BEFORE_UNLOAD_ALERT_HTML,
"twosecondbeforeunloadalert");
}
// Tests that if there's a renderer process with two tabs, one of which has an
// unload handler, and the other doesn't, the tab that doesn't have an unload
// handler can be closed.
// If this flakes, see http://crbug.com/45162, http://crbug.com/45281 and
// http://crbug.com/86769.
IN_PROC_BROWSER_TEST_F(UnloadTest, BrowserCloseTabWhenOtherTabHasListener) {
NavigateToDataURL(CLOSE_TAB_WHEN_OTHER_TAB_HAS_LISTENER, "only_one_unload");
// Simulate a click to force user_gesture to true; if we don't, the resulting
// popup will be constrained, which isn't what we want to test.
ui_test_utils::TabAddedWaiter tab_add(browser());
content::SimulateMouseClick(
browser()->tab_strip_model()->GetActiveWebContents(), 0,
blink::WebMouseEvent::Button::kLeft);
tab_add.Wait();
// Need to wait for the title, because the initial page (about:blank) can stop
// loading before the click handler calls document.write.
CheckTitle("popup", true);
content::WebContentsDestroyedWatcher destroyed_watcher(
browser()->tab_strip_model()->GetActiveWebContents());
chrome::CloseTab(browser());
destroyed_watcher.Wait();
CheckTitle("only_one_unload");
}
// Tests that visibilitychange is only dispatched once on tab close.
IN_PROC_BROWSER_TEST_F(UnloadTest, VisibilityChangeOnlyDispatchedOnce) {
EXPECT_TRUE(embedded_test_server()->Start());
// Start on a.com and open a popup to another page in a.com.
GURL opener_url(embedded_test_server()->GetURL("a.com", "/title1.html"));
ASSERT_TRUE(ui_test_utils::NavigateToURL(browser(), opener_url));
content::WebContents* opener_contents =
browser()->tab_strip_model()->GetActiveWebContents();
GURL popup_url(embedded_test_server()->GetURL("a.com", "/title2.html"));
content::TestNavigationObserver popup_observer(nullptr);
popup_observer.StartWatchingNewWebContents();
EXPECT_TRUE(
ExecJs(opener_contents, "window.open('" + popup_url.spec() + "');"));
popup_observer.Wait();
ASSERT_EQ(2, browser()->tab_strip_model()->count());
content::WebContents* popup_contents =
browser()->tab_strip_model()->GetActiveWebContents();
ASSERT_NE(opener_contents, popup_contents);
content::RenderFrameHost* popup_rfh = popup_contents->GetPrimaryMainFrame();
// In the popup, add a visibilitychange handler that ensures we only see the
// visibilitychange event fired once on tab close.
EXPECT_TRUE(ExecJs(popup_rfh, R"(
localStorage.setItem('visibilitychange_storage', 'not_dispatched');
var dispatched_visibilitychange = false;
document.onvisibilitychange = function(e) {
if (dispatched_visibilitychange) {
// We shouldn't dispatch visibilitychange more than once.
localStorage.setItem('visibilitychange_storage',
'dispatched_more_than_once');
} else if (document.visibilityState != 'hidden') {
// We should dispatch the event when the visibilityState is
// 'hidden'.
localStorage.setItem('visibilitychange_storage', 'not_hidden');
} else {
localStorage.setItem('visibilitychange_storage',
'dispatched_once');
}
dispatched_visibilitychange = true;
})"));
// Close the popup.
content::WebContentsDestroyedWatcher destroyed_watcher(popup_contents);
EXPECT_TRUE(ExecJs(popup_contents, "window.close();"));
destroyed_watcher.Wait();
// Check that we've only dispatched visibilitychange once.
EXPECT_EQ("dispatched_once",
EvalJs(opener_contents,
"localStorage.getItem('visibilitychange_storage')"));
}
IN_PROC_BROWSER_TEST_F(UnloadTest, BrowserListForceCloseAfterNormalClose) {
NavigateToDataURL(BEFORE_UNLOAD_HTML, "beforeunload");
UnloadResults unload_results;
BrowserList::CloseAllBrowsersWithProfile(
browser()->profile(),
base::BindRepeating(&UnloadResults::AddSuccess,
base::Unretained(&unload_results)),
base::BindRepeating(&UnloadResults::AddAbort,
base::Unretained(&unload_results)),
false);
BrowserList::CloseAllBrowsersWithProfile(
browser()->profile(),
base::BindRepeating(&UnloadResults::AddSuccess,
base::Unretained(&unload_results)),
base::BindRepeating(&UnloadResults::AddAbort,
base::Unretained(&unload_results)),
true);
ui_test_utils::WaitForBrowserToClose();
EXPECT_EQ(1, unload_results.get_successes());
EXPECT_EQ(0, unload_results.get_aborts());
}
// Tests that a cross-site iframe runs its beforeunload handler when closing
// the browser. See https://crbug.com/853021.
IN_PROC_BROWSER_TEST_F(UnloadTest, BrowserCloseWithCrossSiteIframe) {
ASSERT_TRUE(embedded_test_server()->Start());
// Navigate to a page with an iframe.
GURL main_url(embedded_test_server()->GetURL("a.com", "/iframe.html"));
ASSERT_TRUE(ui_test_utils::NavigateToURL(browser(), main_url));
// Navigate iframe cross-site.
GURL frame_url(embedded_test_server()->GetURL("b.com", "/title1.html"));
content::WebContents* web_contents =
browser()->tab_strip_model()->GetActiveWebContents();
EXPECT_TRUE(NavigateIframeToURL(web_contents, "test", frame_url));
// Install a dialog-showing beforeunload handler in the iframe.
content::RenderFrameHost* child =
ChildFrameAt(web_contents->GetPrimaryMainFrame(), 0);
EXPECT_TRUE(ExecJs(child, "window.onbeforeunload = () => { return 'x' };"));
// Close the browser and make sure the beforeunload dialog is shown and can
// be clicked.
PrepareForDialog(browser());
ManuallyCloseWindow();
}
// Tests that a same-site iframe runs its beforeunload handler when closing the
// browser. See https://crbug.com/1010456.
IN_PROC_BROWSER_TEST_F(UnloadTest, BrowserCloseWithSameSiteIframe) {
ASSERT_TRUE(embedded_test_server()->Start());
// Navigate to a page with a same-site iframe.
GURL main_url(embedded_test_server()->GetURL("a.com", "/iframe.html"));
ASSERT_TRUE(ui_test_utils::NavigateToURL(browser(), main_url));
content::WebContents* web_contents =
browser()->tab_strip_model()->GetActiveWebContents();
content::RenderFrameHost* child =
ChildFrameAt(web_contents->GetPrimaryMainFrame(), 0);
EXPECT_EQ(child->GetSiteInstance(),
web_contents->GetPrimaryMainFrame()->GetSiteInstance());
// Install a dialog-showing beforeunload handler in the iframe.
EXPECT_TRUE(ExecJs(child, "window.onbeforeunload = () => { return 'x' };"));
// Close the browser and make sure the beforeunload dialog is shown and can
// be clicked.
PrepareForDialog(browser());
ManuallyCloseWindow();
}
// Tests closing the browser with onbeforeunload handler and
// event.preventDefault() will prompt confirmation dialog
IN_PROC_BROWSER_TEST_F(UnloadTest, OnBeforeUnloadCancelByPreventDefault) {
std::string html =
GenerateDataURL("event.preventDefault()", /*is_onbeforeunload=*/true);
NavigateToDataURL(html.c_str(), "beforeunload");
PrepareForDialog(browser());
chrome::CloseWindow(browser());
// We wait for the title to change after cancelling the closure of browser
// window, to ensure that in-flight IPCs from the renderer reach the browser.
// Otherwise the browser won't put up the beforeunload dialog because it's
// waiting for an ack from the renderer.
std::u16string expected_title = u"cancelled";
content::TitleWatcher title_watcher(
browser()->tab_strip_model()->GetActiveWebContents(), expected_title);
ClickModalDialogButton(false);
ASSERT_EQ(expected_title, title_watcher.WaitAndGetTitle());
ManuallyCloseWindow();
}
// Tests closing the browser with onbeforeunload handler and
// setting returnValue will prompt confirmation dialog
IN_PROC_BROWSER_TEST_F(UnloadTest, OnBeforeUnloadCancelByReturnValue) {
std::string html = GenerateDataURL("event.returnValue = 'hello world'",
/*is_onbeforeunload=*/true);
NavigateToDataURL(html.c_str(), "beforeunload");
PrepareForDialog(browser());
chrome::CloseWindow(browser());
// We wait for the title to change after cancelling the closure of browser
// window, to ensure that in-flight IPCs from the renderer reach the browser.
// Otherwise the browser won't put up the beforeunload dialog because it's
// waiting for an ack from the renderer.
std::u16string expected_title = u"cancelled";
content::TitleWatcher title_watcher(
browser()->tab_strip_model()->GetActiveWebContents(), expected_title);
ClickModalDialogButton(false);
ASSERT_EQ(expected_title, title_watcher.WaitAndGetTitle());
ManuallyCloseWindow();
}
// Tests closing the browser with onbeforeunload handler and
// setting returnValue empty string will not prompt confirmation dialog
IN_PROC_BROWSER_TEST_F(UnloadTest, OnBeforeUnloadCancelByReturnValueEmpty) {
std::string html = GenerateDataURL("event.returnValue = ''",
/*is_onbeforeunload=*/true);
NavigateToDataURL(html.c_str(), "beforeunload");
CloseBrowsersVerifyUnloadSuccess(false);
}
// Tests closing the browser with onbeforeunload handler and
// having return value will prompt confirmation dialog
IN_PROC_BROWSER_TEST_F(UnloadTest, OnBeforeUnloadCancelByReturn) {
std::string html =
GenerateDataURL("return 'hello world'", /*is_onbeforeunload=*/true);
NavigateToDataURL(html.c_str(), "beforeunload");
PrepareForDialog(browser());
chrome::CloseWindow(browser());
// We wait for the title to change after cancelling the closure of browser
// window, to ensure that in-flight IPCs from the renderer reach the browser.
// Otherwise the browser won't put up the beforeunload dialog because it's
// waiting for an ack from the renderer.
std::u16string expected_title = u"cancelled";
content::TitleWatcher title_watcher(
browser()->tab_strip_model()->GetActiveWebContents(), expected_title);
ClickModalDialogButton(false);
ASSERT_EQ(expected_title, title_watcher.WaitAndGetTitle());
ManuallyCloseWindow();
}
// Tests closing the browser with onbeforeunload handler and
// returning empty string will prompt confirmation dialog
IN_PROC_BROWSER_TEST_F(UnloadTest, OnBeforeUnloadCancelByReturnEmpty) {
std::string html = GenerateDataURL("return ''",
/*is_onbeforeunload=*/true);
NavigateToDataURL(html.c_str(), "beforeunload");
PrepareForDialog(browser());
chrome::CloseWindow(browser());
// We wait for the title to change after cancelling the closure of browser
// window, to ensure that in-flight IPCs from the renderer reach the browser.
// Otherwise the browser won't put up the beforeunload dialog because it's
// waiting for an ack from the renderer.
std::u16string expected_title = u"cancelled";
content::TitleWatcher title_watcher(
browser()->tab_strip_model()->GetActiveWebContents(), expected_title);
ClickModalDialogButton(false);
ASSERT_EQ(expected_title, title_watcher.WaitAndGetTitle());
ManuallyCloseWindow();
}
// Tests closing the browser with addEventListener('beforeunload') handler and
// event.preventDefault() will prompt confirmation dialog
IN_PROC_BROWSER_TEST_F(UnloadTest, BeforeUnloadListenerCancelByPreventDefault) {
std::string html =
GenerateDataURL("event.preventDefault()", /*is_onbeforeunload=*/false);
NavigateToDataURL(html.c_str(), "beforeunload");
PrepareForDialog(browser());
chrome::CloseWindow(browser());
// We wait for the title to change after cancelling the closure of browser
// window, to ensure that in-flight IPCs from the renderer reach the browser.
// Otherwise the browser won't put up the beforeunload dialog because it's
// waiting for an ack from the renderer.
std::u16string expected_title = u"cancelled";
content::TitleWatcher title_watcher(
browser()->tab_strip_model()->GetActiveWebContents(), expected_title);
ClickModalDialogButton(false);
ASSERT_EQ(expected_title, title_watcher.WaitAndGetTitle());
ManuallyCloseWindow();
}
// Tests closing the browser with addEventListener('beforeunload') handler and
// setting returnValue will prompt confirmation dialog
IN_PROC_BROWSER_TEST_F(UnloadTest, BeforeUnloadListenerCancelByReturnValue) {
std::string html = GenerateDataURL("event.returnValue = 'hello world'",
/*is_onbeforeunload=*/false);
NavigateToDataURL(html.c_str(), "beforeunload");
PrepareForDialog(browser());
chrome::CloseWindow(browser());
// We wait for the title to change after cancelling the closure of browser
// window, to ensure that in-flight IPCs from the renderer reach the browser.
// Otherwise the browser won't put up the beforeunload dialog because it's
// waiting for an ack from the renderer.
std::u16string expected_title = u"cancelled";
content::TitleWatcher title_watcher(
browser()->tab_strip_model()->GetActiveWebContents(), expected_title);
ClickModalDialogButton(false);
ASSERT_EQ(expected_title, title_watcher.WaitAndGetTitle());
ManuallyCloseWindow();
}
// Tests closing the browser with addEventListener('beforeunload') handler and
// setting returnValue empty string will not prompt confirmation dialog
IN_PROC_BROWSER_TEST_F(UnloadTest,
BeforeUnloadListenerCancelByReturnValueEmpty) {
std::string html = GenerateDataURL("event.returnValue = ''",
/*is_onbeforeunload=*/false);
NavigateToDataURL(html.c_str(), "beforeunload");
CloseBrowsersVerifyUnloadSuccess(false);
}
// Tests closing the browser with addEventListener('beforeunload') handler and
// having return value will _not_ prompt confirmation dialog
// TODO(crbug.com/41368941) Change this test if spec changes
IN_PROC_BROWSER_TEST_F(UnloadTest, BeforeUnloadListenerCancelByReturn) {
std::string html =
GenerateDataURL("return 'hello world'", /*is_onbeforeunload=*/false);
NavigateToDataURL(html.c_str(), "beforeunload");
CloseBrowsersVerifyUnloadSuccess(false);
}
// Tests closing the browser with addEventListener('beforeunload') handler and
// returning empty string will not prompt confirmation dialog
IN_PROC_BROWSER_TEST_F(UnloadTest, BeforeUnloadListenerCancelByReturnEmpty) {
std::string html = GenerateDataURL("return ''",
/*is_onbeforeunload=*/false);
NavigateToDataURL(html.c_str(), "beforeunload");
CloseBrowsersVerifyUnloadSuccess(false);
}
// TODO(ojan): Add tests for unload/beforeunload that have multiple tabs
// and multiple windows.
|