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
|
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
* You can obtain one at http://mozilla.org/MPL/2.0/. */
let { EventEmitter } = ChromeUtils.importESModule(
"resource://gre/modules/EventEmitter.sys.mjs"
);
const { setTimeout } = ChromeUtils.importESModule(
"resource://gre/modules/Timer.sys.mjs"
);
const {
DEFAULT_UNLOAD_TIMEOUT,
getUnloadTimeoutMultiplier,
ProgressListener,
waitForInitialNavigationCompleted,
} = ChromeUtils.importESModule(
"chrome://remote/content/shared/Navigate.sys.mjs"
);
const LOAD_FLAG_ERROR_PAGE = 0x10000;
const CURRENT_URI = Services.io.newURI("http://foo.bar/");
const INITIAL_URI = Services.io.newURI("about:blank");
const TARGET_URI = Services.io.newURI("http://foo.cheese/");
const TARGET_URI_ERROR_PAGE = Services.io.newURI("doesnotexist://");
const TARGET_URI_WITH_HASH = Services.io.newURI("http://foo.cheese/#foo");
const TARGET_URI_FROM_NAVIGATION_COMMITTED = Services.io.newURI(
"http://foo.cheese/#bar"
);
function wait(time) {
// eslint-disable-next-line mozilla/no-arbitrary-setTimeout
return new Promise(resolve => setTimeout(resolve, time));
}
class MockRequest {
constructor(uri) {
this.originalURI = uri;
}
QueryInterface = ChromeUtils.generateQI(["nsIRequest", "nsIChannel"]);
}
class MockWebProgress {
constructor(browsingContext) {
this.browsingContext = browsingContext;
this.documentRequest = null;
this.isLoadingDocument = false;
this.listener = null;
this.loadType = 0;
this.progressListenerRemoved = false;
}
addProgressListener(listener) {
if (this.listener) {
throw new Error("Cannot register listener twice");
}
this.listener = listener;
}
removeProgressListener(listener) {
if (listener === this.listener) {
this.listener = null;
this.progressListenerRemoved = true;
} else {
throw new Error("Unknown listener");
}
}
sendLocationChange(options = {}) {
const { flag = 0 } = options;
this.documentRequest = null;
if (flag & Ci.nsIWebProgressListener.LOCATION_CHANGE_SAME_DOCUMENT) {
this.browsingContext.updateURI(TARGET_URI_WITH_HASH);
} else if (flag & Ci.nsIWebProgressListener.LOCATION_CHANGE_ERROR_PAGE) {
this.browsingContext.updateURI(TARGET_URI_ERROR_PAGE, true);
}
this.listener?.onLocationChange(
this,
this.documentRequest,
this.browsingContext.currentURI,
flag
);
return new Promise(executeSoon);
}
sendStartState(options = {}) {
const { coop = false, isInitial = false } = options;
if (coop) {
this.browsingContext = new MockTopContext(this);
}
if (!this.browsingContext.currentWindowGlobal) {
this.browsingContext.currentWindowGlobal = {};
}
this.browsingContext.currentWindowGlobal.isInitialDocument = isInitial;
this.isLoadingDocument = true;
this.loadType = 0;
const uri = isInitial ? INITIAL_URI : TARGET_URI;
this.documentRequest = new MockRequest(uri);
this.listener?.onStateChange(
this,
this.documentRequest,
Ci.nsIWebProgressListener.STATE_START,
0
);
return new Promise(executeSoon);
}
sendStopState(options = {}) {
const { flag = 0, loadType = 0 } = options;
this.browsingContext.currentURI = this.documentRequest.originalURI;
this.isLoadingDocument = false;
this.documentRequest = null;
this.listener?.onStateChange(
this,
this.documentRequest,
Ci.nsIWebProgressListener.STATE_STOP,
flag
);
if (loadType & LOAD_FLAG_ERROR_PAGE) {
this.loadType = 0x10000;
return this.sendLocationChange({
flag: Ci.nsIWebProgressListener.LOCATION_CHANGE_ERROR_PAGE,
});
}
return new Promise(executeSoon);
}
}
class MockTopContext {
constructor(webProgress = null) {
this.currentURI = CURRENT_URI;
this.currentWindowGlobal = {
isInitialDocument: true,
documentURI: CURRENT_URI,
};
this.id = 7;
this.top = this;
this.webProgress = webProgress || new MockWebProgress(this);
}
updateURI(uri, isError = false) {
this.currentURI = uri;
if (isError) {
this.currentWindowGlobal.documentURI = "about:neterror?e=errorMessage";
} else {
this.currentWindowGlobal.documentURI = uri;
}
}
}
add_task(
async function test_waitForInitialNavigation_initialDocumentNoWindowGlobal() {
const browsingContext = new MockTopContext();
const webProgress = browsingContext.webProgress;
// In some cases there might be no window global yet.
delete browsingContext.currentWindowGlobal;
ok(!webProgress.isLoadingDocument, "Document is not loading");
const navigated = waitForInitialNavigationCompleted(webProgress);
await webProgress.sendStartState({ isInitial: true });
ok(
!(await hasPromiseResolved(navigated)),
"waitForInitialNavigationCompleted has not resolved yet"
);
await webProgress.sendStopState();
const { currentURI, targetURI } = await navigated;
ok(!webProgress.isLoadingDocument, "Document is not loading");
ok(
webProgress.browsingContext.currentWindowGlobal.isInitialDocument,
"Is initial document"
);
equal(
currentURI.spec,
INITIAL_URI.spec,
"Expected current URI has been set"
);
equal(targetURI.spec, INITIAL_URI.spec, "Expected target URI has been set");
}
);
add_task(
async function test_waitForInitialNavigation_initialDocumentNotLoaded() {
const browsingContext = new MockTopContext();
const webProgress = browsingContext.webProgress;
ok(!webProgress.isLoadingDocument, "Document is not loading");
const navigated = waitForInitialNavigationCompleted(webProgress);
await webProgress.sendStartState({ isInitial: true });
ok(
!(await hasPromiseResolved(navigated)),
"waitForInitialNavigationCompleted has not resolved yet"
);
await webProgress.sendStopState();
const { currentURI, targetURI } = await navigated;
ok(!webProgress.isLoadingDocument, "Document is not loading");
ok(
webProgress.browsingContext.currentWindowGlobal.isInitialDocument,
"Is initial document"
);
equal(
currentURI.spec,
INITIAL_URI.spec,
"Expected current URI has been set"
);
equal(targetURI.spec, INITIAL_URI.spec, "Expected target URI has been set");
}
);
add_task(
async function test_waitForInitialNavigation_initialDocumentLoadingAndNoAdditionalLoad() {
const browsingContext = new MockTopContext();
const webProgress = browsingContext.webProgress;
await webProgress.sendStartState({ isInitial: true });
ok(webProgress.isLoadingDocument, "Document is loading");
const navigated = waitForInitialNavigationCompleted(webProgress);
ok(
!(await hasPromiseResolved(navigated)),
"waitForInitialNavigationCompleted has not resolved yet"
);
await webProgress.sendStopState();
const { currentURI, targetURI } = await navigated;
ok(!webProgress.isLoadingDocument, "Document is not loading");
ok(
webProgress.browsingContext.currentWindowGlobal.isInitialDocument,
"Is initial document"
);
equal(
currentURI.spec,
INITIAL_URI.spec,
"Expected current URI has been set"
);
equal(targetURI.spec, INITIAL_URI.spec, "Expected target URI has been set");
}
);
add_task(
async function test_waitForInitialNavigation_initialDocumentFinishedLoadingNoAdditionalLoad() {
const browsingContext = new MockTopContext();
const webProgress = browsingContext.webProgress;
await webProgress.sendStartState({ isInitial: true });
await webProgress.sendStopState();
ok(!webProgress.isLoadingDocument, "Document is not loading");
const navigated = waitForInitialNavigationCompleted(webProgress);
ok(
!(await hasPromiseResolved(navigated)),
"waitForInitialNavigationCompleted has not resolved yet"
);
const { currentURI, targetURI } = await navigated;
ok(!webProgress.isLoadingDocument, "Document is not loading");
ok(
webProgress.browsingContext.currentWindowGlobal.isInitialDocument,
"Is initial document"
);
equal(
currentURI.spec,
INITIAL_URI.spec,
"Expected current URI has been set"
);
equal(targetURI.spec, INITIAL_URI.spec, "Expected target URI has been set");
}
);
add_task(
async function test_waitForInitialNavigation_initialDocumentLoadingAndAdditionalLoad() {
const browsingContext = new MockTopContext();
const webProgress = browsingContext.webProgress;
await webProgress.sendStartState({ isInitial: true });
ok(webProgress.isLoadingDocument, "Document is loading");
const navigated = waitForInitialNavigationCompleted(webProgress);
ok(
!(await hasPromiseResolved(navigated)),
"waitForInitialNavigationCompleted has not resolved yet"
);
await webProgress.sendStopState();
await wait(100);
await webProgress.sendStartState({ isInitial: false });
await webProgress.sendStopState();
const { currentURI, targetURI } = await navigated;
ok(!webProgress.isLoadingDocument, "Document is not loading");
ok(
!webProgress.browsingContext.currentWindowGlobal.isInitialDocument,
"Is not initial document"
);
equal(
currentURI.spec,
TARGET_URI.spec,
"Expected current URI has been set"
);
equal(targetURI.spec, TARGET_URI.spec, "Expected target URI has been set");
}
);
add_task(
async function test_waitForInitialNavigation_initialDocumentFinishedLoadingAndAdditionalLoad() {
const browsingContext = new MockTopContext();
const webProgress = browsingContext.webProgress;
await webProgress.sendStartState({ isInitial: true });
await webProgress.sendStopState();
ok(!webProgress.isLoadingDocument, "Document is not loading");
const navigated = waitForInitialNavigationCompleted(webProgress);
ok(
!(await hasPromiseResolved(navigated)),
"waitForInitialNavigationCompleted has not resolved yet"
);
await wait(100);
await webProgress.sendStartState({ isInitial: false });
await webProgress.sendStopState();
const { currentURI, targetURI } = await navigated;
ok(!webProgress.isLoadingDocument, "Document is not loading");
ok(
!webProgress.browsingContext.currentWindowGlobal.isInitialDocument,
"Is not initial document"
);
equal(
currentURI.spec,
TARGET_URI.spec,
"Expected current URI has been set"
);
equal(targetURI.spec, TARGET_URI.spec, "Expected target URI has been set");
}
);
add_task(
async function test_waitForInitialNavigation_notInitialDocumentNotLoading() {
const browsingContext = new MockTopContext();
const webProgress = browsingContext.webProgress;
ok(!webProgress.isLoadingDocument, "Document is not loading");
const navigated = waitForInitialNavigationCompleted(webProgress);
await webProgress.sendStartState({ isInitial: false });
ok(
!(await hasPromiseResolved(navigated)),
"waitForInitialNavigationCompleted has not resolved yet"
);
await webProgress.sendStopState();
const { currentURI, targetURI } = await navigated;
ok(!webProgress.isLoadingDocument, "Document is not loading");
ok(
!browsingContext.currentWindowGlobal.isInitialDocument,
"Is not initial document"
);
equal(
currentURI.spec,
TARGET_URI.spec,
"Expected current URI has been set"
);
equal(targetURI.spec, TARGET_URI.spec, "Expected target URI has been set");
}
);
add_task(
async function test_waitForInitialNavigation_notInitialDocumentAlreadyLoading() {
const browsingContext = new MockTopContext();
const webProgress = browsingContext.webProgress;
await webProgress.sendStartState({ isInitial: false });
ok(webProgress.isLoadingDocument, "Document is loading");
const navigated = waitForInitialNavigationCompleted(webProgress);
ok(
!(await hasPromiseResolved(navigated)),
"waitForInitialNavigationCompleted has not resolved yet"
);
await webProgress.sendStopState();
const { currentURI, targetURI } = await navigated;
ok(!webProgress.isLoadingDocument, "Document is not loading");
ok(
!browsingContext.currentWindowGlobal.isInitialDocument,
"Is not initial document"
);
equal(
currentURI.spec,
TARGET_URI.spec,
"Expected current URI has been set"
);
equal(targetURI.spec, TARGET_URI.spec, "Expected target URI has been set");
}
);
add_task(
async function test_waitForInitialNavigation_notInitialDocumentFinishedLoading() {
const browsingContext = new MockTopContext();
const webProgress = browsingContext.webProgress;
await webProgress.sendStartState({ isInitial: false });
await webProgress.sendStopState();
ok(!webProgress.isLoadingDocument, "Document is not loading");
const { currentURI, targetURI } =
await waitForInitialNavigationCompleted(webProgress);
ok(!webProgress.isLoadingDocument, "Document is not loading");
ok(
!webProgress.browsingContext.currentWindowGlobal.isInitialDocument,
"Is not initial document"
);
equal(
currentURI.spec,
TARGET_URI.spec,
"Expected current URI has been set"
);
equal(targetURI.spec, TARGET_URI.spec, "Expected target URI has been set");
}
);
add_task(async function test_waitForInitialNavigation_resolveWhenStarted() {
const browsingContext = new MockTopContext();
const webProgress = browsingContext.webProgress;
await webProgress.sendStartState({ isInitial: true });
ok(webProgress.isLoadingDocument, "Document is already loading");
const { currentURI, targetURI } = await waitForInitialNavigationCompleted(
webProgress,
{
resolveWhenStarted: true,
}
);
ok(webProgress.isLoadingDocument, "Document is still loading");
ok(
webProgress.browsingContext.currentWindowGlobal.isInitialDocument,
"Is initial document"
);
equal(currentURI.spec, CURRENT_URI.spec, "Expected current URI has been set");
equal(targetURI.spec, INITIAL_URI.spec, "Expected target URI has been set");
});
add_task(async function test_waitForInitialNavigation_crossOrigin() {
const browsingContext = new MockTopContext();
const webProgress = browsingContext.webProgress;
ok(!webProgress.isLoadingDocument, "Document is not loading");
const navigated = waitForInitialNavigationCompleted(webProgress);
await webProgress.sendStartState({ coop: true });
ok(
!(await hasPromiseResolved(navigated)),
"waitForInitialNavigationCompleted has not resolved yet"
);
await webProgress.sendStopState();
const { currentURI, targetURI } = await navigated;
notEqual(
browsingContext,
webProgress.browsingContext,
"Got new browsing context"
);
ok(!webProgress.isLoadingDocument, "Document is not loading");
ok(
!webProgress.browsingContext.currentWindowGlobal.isInitialDocument,
"Is not initial document"
);
equal(currentURI.spec, TARGET_URI.spec, "Expected current URI has been set");
equal(targetURI.spec, TARGET_URI.spec, "Expected target URI has been set");
});
add_task(async function test_waitForInitialNavigation_unloadTimeout_default() {
const browsingContext = new MockTopContext();
const webProgress = browsingContext.webProgress;
// Stop the navigation on an initial page which is not loading anymore.
// This situation happens with new tabs on Android, even though they are on
// the initial document, they will not start another navigation on their own.
await webProgress.sendStartState({ isInitial: true });
await webProgress.sendStopState();
ok(!webProgress.isLoadingDocument, "Document is not loading");
const navigated = waitForInitialNavigationCompleted(webProgress);
// Start a timer longer than the timeout which will be used by
// waitForInitialNavigationCompleted, and check that navigated resolves first.
const waitForMoreThanDefaultTimeout = wait(
DEFAULT_UNLOAD_TIMEOUT * 1.5 * getUnloadTimeoutMultiplier()
);
await Promise.race([navigated, waitForMoreThanDefaultTimeout]);
ok(
await hasPromiseResolved(navigated),
"waitForInitialNavigationCompleted has resolved"
);
ok(!webProgress.isLoadingDocument, "Document is not loading");
ok(
webProgress.browsingContext.currentWindowGlobal.isInitialDocument,
"Document is still on the initial document"
);
});
add_task(async function test_waitForInitialNavigation_unloadTimeout_longer() {
const browsingContext = new MockTopContext();
const webProgress = browsingContext.webProgress;
// Stop the navigation on an initial page which is not loading anymore.
// This situation happens with new tabs on Android, even though they are on
// the initial document, they will not start another navigation on their own.
await webProgress.sendStartState({ isInitial: true });
await webProgress.sendStopState();
ok(!webProgress.isLoadingDocument, "Document is not loading");
const navigated = waitForInitialNavigationCompleted(webProgress, {
unloadTimeout: DEFAULT_UNLOAD_TIMEOUT * 3,
});
// Start a timer longer than the default timeout of the Navigate module.
// However here we used a custom timeout, so we expect that the navigation
// will not be done yet by the time this timer is done.
const waitForMoreThanDefaultTimeout = wait(
DEFAULT_UNLOAD_TIMEOUT * 1.5 * getUnloadTimeoutMultiplier()
);
await Promise.race([navigated, waitForMoreThanDefaultTimeout]);
// The promise should not have resolved because we didn't reached the custom
// timeout which is 3 times the default one.
ok(
!(await hasPromiseResolved(navigated)),
"waitForInitialNavigationCompleted has not resolved yet"
);
// The navigation should eventually resolve once we reach the custom timeout.
await navigated;
ok(!webProgress.isLoadingDocument, "Document is not loading");
ok(
webProgress.browsingContext.currentWindowGlobal.isInitialDocument,
"Document is still on the initial document"
);
});
add_task(async function test_ProgressListener_expectNavigation() {
const browsingContext = new MockTopContext();
const webProgress = browsingContext.webProgress;
const progressListener = new ProgressListener(webProgress, {
expectNavigation: true,
unloadTimeout: 10,
});
const navigated = progressListener.start();
// Wait for unloadTimeout to finish in case it started
await wait(30);
ok(!(await hasPromiseResolved(navigated)), "Listener has not resolved yet");
await webProgress.sendStartState();
await webProgress.sendStopState();
ok(await hasPromiseResolved(navigated), "Listener has resolved");
});
add_task(
async function test_ProgressListener_expectNavigation_initialDocumentFinishedLoading() {
const browsingContext = new MockTopContext();
const webProgress = browsingContext.webProgress;
const progressListener = new ProgressListener(webProgress, {
expectNavigation: true,
unloadTimeout: 10,
});
const navigated = progressListener.start();
ok(!(await hasPromiseResolved(navigated)), "Listener has not resolved yet");
await webProgress.sendStartState({ isInitial: true });
await webProgress.sendStopState();
// Wait for unloadTimeout to finish in case it started
await wait(30);
ok(!(await hasPromiseResolved(navigated)), "Listener has not resolved yet");
await webProgress.sendStartState();
await webProgress.sendStopState();
ok(await hasPromiseResolved(navigated), "Listener has resolved");
}
);
add_task(async function test_ProgressListener_isStarted() {
const browsingContext = new MockTopContext();
const webProgress = browsingContext.webProgress;
const progressListener = new ProgressListener(webProgress);
ok(!progressListener.isStarted);
progressListener.start();
ok(progressListener.isStarted);
progressListener.stop();
ok(!progressListener.isStarted);
});
add_task(async function test_ProgressListener_notWaitForExplicitStart() {
// Create a webprogress and start it before creating the progress listener.
const browsingContext = new MockTopContext();
const webProgress = browsingContext.webProgress;
await webProgress.sendStartState();
// Create the progress listener for a webprogress already in a navigation.
const progressListener = new ProgressListener(webProgress, {
waitForExplicitStart: false,
});
const navigated = progressListener.start();
// Send stop state to complete the initial navigation
await webProgress.sendStopState();
ok(
await hasPromiseResolved(navigated),
"Listener has resolved after initial navigation"
);
});
add_task(async function test_ProgressListener_waitForExplicitStart() {
// Create a webprogress and start it before creating the progress listener.
const browsingContext = new MockTopContext();
const webProgress = browsingContext.webProgress;
await webProgress.sendStartState();
// Create the progress listener for a webprogress already in a navigation.
const progressListener = new ProgressListener(webProgress, {
waitForExplicitStart: true,
});
const navigated = progressListener.start();
// Send stop state to complete the initial navigation
await webProgress.sendStopState();
ok(
!(await hasPromiseResolved(navigated)),
"Listener has not resolved after initial navigation"
);
// Start a new navigation
await webProgress.sendStartState();
ok(
!(await hasPromiseResolved(navigated)),
"Listener has not resolved after starting new navigation"
);
// Finish the new navigation
await webProgress.sendStopState();
ok(
await hasPromiseResolved(navigated),
"Listener resolved after finishing the new navigation"
);
});
add_task(async function test_invalid_resolveWhenCommitted() {
// Create a webprogress and start it before creating the progress listener.
const browsingContext = new MockTopContext();
const webProgress = browsingContext.webProgress;
await webProgress.sendStartState();
Assert.throws(
() =>
new ProgressListener(webProgress, {
resolveWhenCommitted: true,
resolveWhenStarted: true,
navigationManager: {},
}),
/Cannot use both resolveWhenStarted and resolveWhenCommitted/,
"Expected error was returned"
);
Assert.throws(
() =>
new ProgressListener(webProgress, {
resolveWhenCommitted: true,
navigationManager: null,
}),
/Cannot use resolveWhenCommitted without a navigationManager/,
"Expected error was returned"
);
});
class MockNavigationManager extends EventEmitter {}
add_task(async function test_ProgressListener_resolveWhenCommitted() {
// Create a webprogress and start it before creating the progress listener.
const browsingContext = new MockTopContext();
const webProgress = browsingContext.webProgress;
await webProgress.sendStartState();
const mockNavigationManager = new MockNavigationManager();
// Create the progress listener for a webprogress already in a navigation.
const progressListener = new ProgressListener(webProgress, {
resolveWhenCommitted: true,
navigationManager: mockNavigationManager,
});
// Setup two navigation ids, and start the progress listener with the first
// one.
const navigationId1 = "navigationId1";
const navigationId2 = "navigationId2";
const navigated = progressListener.start(navigationId1);
// Start a new navigation
await webProgress.sendStartState();
ok(
!(await hasPromiseResolved(navigated)),
"Listener has not resolved after navigation has only started"
);
// Emit an unexpected navigation-committed for the other navigation id.
mockNavigationManager.emit("navigation-committed", {
navigationId: navigationId2,
url: TARGET_URI_FROM_NAVIGATION_COMMITTED.spec,
});
ok(
!(await hasPromiseResolved(navigated)),
"Listener has not resolved after an unexpected navigation-committed"
);
notEqual(
progressListener.targetURI.spec,
TARGET_URI_FROM_NAVIGATION_COMMITTED.spec,
"Expected target URI has not been set from unexpected navigation-committed"
);
// Emit the expected navigation-committed event.
mockNavigationManager.emit("navigation-committed", {
navigationId: navigationId1,
url: TARGET_URI_FROM_NAVIGATION_COMMITTED.spec,
});
ok(
await hasPromiseResolved(navigated),
"Listener has resolved after receiving the correct navigation-committed"
);
equal(
progressListener.targetURI.spec,
TARGET_URI_FROM_NAVIGATION_COMMITTED.spec,
"Expected target URI has been set from navigation-committed"
);
});
add_task(
async function test_ProgressListener_waitForExplicitStartAndResolveWhenStarted() {
// Create a webprogress and start it before creating the progress listener.
const browsingContext = new MockTopContext();
const webProgress = browsingContext.webProgress;
await webProgress.sendStartState();
// Create the progress listener for a webprogress already in a navigation.
const progressListener = new ProgressListener(webProgress, {
resolveWhenStarted: true,
waitForExplicitStart: true,
});
const navigated = progressListener.start();
// Send stop state to complete the initial navigation
await webProgress.sendStopState();
ok(
!(await hasPromiseResolved(navigated)),
"Listener has not resolved after initial navigation"
);
// Start a new navigation
await webProgress.sendStartState();
ok(
await hasPromiseResolved(navigated),
"Listener resolved after starting the new navigation"
);
}
);
add_task(
async function test_ProgressListener_resolveWhenNavigatingInsideDocument() {
const browsingContext = new MockTopContext();
const webProgress = browsingContext.webProgress;
const progressListener = new ProgressListener(webProgress);
const navigated = progressListener.start();
ok(!(await hasPromiseResolved(navigated)), "Listener has not resolved");
// Send hash change location change notification to complete the navigation
await webProgress.sendLocationChange({
flag: Ci.nsIWebProgressListener.LOCATION_CHANGE_SAME_DOCUMENT,
});
ok(await hasPromiseResolved(navigated), "Listener has resolved");
const { currentURI, targetURI } = progressListener;
equal(
currentURI.spec,
TARGET_URI_WITH_HASH.spec,
"Expected current URI has been set"
);
equal(
targetURI.spec,
TARGET_URI_WITH_HASH.spec,
"Expected target URI has been set"
);
}
);
add_task(async function test_ProgressListener_ignoreCacheError() {
const browsingContext = new MockTopContext();
const webProgress = browsingContext.webProgress;
const progressListener = new ProgressListener(webProgress);
const navigated = progressListener.start();
ok(!(await hasPromiseResolved(navigated)), "Listener has not resolved");
await webProgress.sendStartState();
await webProgress.sendStopState({
flag: Cr.NS_ERROR_PARSED_DATA_CACHED,
});
ok(await hasPromiseResolved(navigated), "Listener has resolved");
});
add_task(async function test_ProgressListener_navigationRejectedOnErrorPage() {
const browsingContext = new MockTopContext();
const webProgress = browsingContext.webProgress;
const progressListener = new ProgressListener(webProgress, {
waitForExplicitStart: false,
});
const navigated = progressListener.start();
await webProgress.sendStartState();
await webProgress.sendLocationChange({
flag:
Ci.nsIWebProgressListener.LOCATION_CHANGE_SAME_DOCUMENT |
Ci.nsIWebProgressListener.LOCATION_CHANGE_ERROR_PAGE,
});
ok(
await hasPromiseRejected(navigated),
"Listener has rejected in location change for error page"
);
});
add_task(
async function test_ProgressListener_navigationRejectedOnStopStateErrorPage() {
const browsingContext = new MockTopContext();
const webProgress = browsingContext.webProgress;
const progressListener = new ProgressListener(webProgress, {
waitForExplicitStart: false,
});
const navigated = progressListener.start();
await webProgress.sendStartState();
await webProgress.sendStopState({
flag: Cr.NS_ERROR_MALWARE_URI,
loadType: LOAD_FLAG_ERROR_PAGE,
});
ok(
await hasPromiseRejected(navigated),
"Listener has rejected in stop state for erroneous navigation"
);
}
);
add_task(
async function test_ProgressListener_navigationRejectedOnStopStateAndAborted() {
const browsingContext = new MockTopContext();
const webProgress = browsingContext.webProgress;
for (const flag of [Cr.NS_BINDING_ABORTED, Cr.NS_ERROR_ABORT]) {
const progressListener = new ProgressListener(webProgress, {
waitForExplicitStart: false,
});
const navigated = progressListener.start();
await webProgress.sendStartState();
await webProgress.sendStopState({ flag });
ok(
await hasPromiseRejected(navigated),
"Listener has rejected in stop state for erroneous navigation"
);
}
}
);
add_task(async function test_ProgressListener_stopIfStarted() {
const browsingContext = new MockTopContext();
const webProgress = browsingContext.webProgress;
const progressListener = new ProgressListener(webProgress);
const navigated = progressListener.start();
progressListener.stopIfStarted();
ok(!(await hasPromiseResolved(navigated)), "Listener has not resolved");
await webProgress.sendStartState();
progressListener.stopIfStarted();
ok(await hasPromiseResolved(navigated), "Listener has resolved");
});
add_task(async function test_ProgressListener_stopIfStarted_alreadyStarted() {
// Create an already navigating browsing context.
const browsingContext = new MockTopContext();
const webProgress = browsingContext.webProgress;
await webProgress.sendStartState();
// Create a progress listener which accepts already ongoing navigations.
const progressListener = new ProgressListener(webProgress, {
waitForExplicitStart: false,
});
const navigated = progressListener.start();
// stopIfStarted should stop the listener because of the ongoing navigation.
progressListener.stopIfStarted();
ok(await hasPromiseResolved(navigated), "Listener has resolved");
});
add_task(
async function test_ProgressListener_stopIfStarted_alreadyStarted_waitForExplicitStart() {
// Create an already navigating browsing context.
const browsingContext = new MockTopContext();
const webProgress = browsingContext.webProgress;
await webProgress.sendStartState();
// Create a progress listener which rejects already ongoing navigations.
const progressListener = new ProgressListener(webProgress, {
waitForExplicitStart: true,
});
const navigated = progressListener.start();
// stopIfStarted will not stop the listener for the existing navigation.
progressListener.stopIfStarted();
ok(!(await hasPromiseResolved(navigated)), "Listener has not resolved");
// stopIfStarted will stop the listener when called after starting a new
// navigation.
await webProgress.sendStartState();
progressListener.stopIfStarted();
ok(await hasPromiseResolved(navigated), "Listener has resolved");
}
);
|