summaryrefslogtreecommitdiffstats
path: root/browser/components/privatebrowsing/test/browser/browser_privatebrowsing_rememberprompt.js
blob: 7516c13564378546bd0be03d2e8c2ac712498cc4 (plain)
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
/* 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/. */

// This test makes sure that the geolocation prompt does not show a remember
// control inside the private browsing mode.

add_setup(async function () {
  await SpecialPowers.pushPrefEnv({
    set: [["dom.vr.always_support_vr", true]],
  });
});

add_task(async function test() {
  function checkPrompt(aURL, aName, aPrivateMode, aWindow) {
    return (async function () {
      aWindow.gBrowser.selectedTab = BrowserTestUtils.addTab(
        aWindow.gBrowser,
        aURL
      );
      await BrowserTestUtils.browserLoaded(aWindow.gBrowser.selectedBrowser);

      let notification = aWindow.PopupNotifications.getNotification(aName);

      // Wait until the notification is available.
      while (!notification) {
        await new Promise(resolve => {
          executeSoon(resolve);
        });
        notification = aWindow.PopupNotifications.getNotification(aName);
      }

      if (aPrivateMode) {
        // Make sure the notification is correctly displayed without a remember control
        ok(
          !notification.options.checkbox.show,
          "Secondary actions should not exist (always/never remember)"
        );
      } else {
        ok(
          notification.options.checkbox.show,
          "Secondary actions should exist (always/never remember)"
        );
      }
      notification.remove();

      aWindow.gBrowser.removeCurrentTab();
    })();
  }

  function checkPrivateBrowsingRememberPrompt(aURL, aName) {
    return (async function () {
      let win = await BrowserTestUtils.openNewBrowserWindow();
      let browser = win.gBrowser.selectedBrowser;
      BrowserTestUtils.loadURIString(browser, aURL);
      await BrowserTestUtils.browserLoaded(browser);

      await checkPrompt(aURL, aName, false, win);

      let privateWin = await BrowserTestUtils.openNewBrowserWindow({
        private: true,
      });
      let privateBrowser = privateWin.gBrowser.selectedBrowser;
      BrowserTestUtils.loadURIString(privateBrowser, aURL);
      await BrowserTestUtils.browserLoaded(privateBrowser);

      await checkPrompt(aURL, aName, true, privateWin);

      // Cleanup
      await BrowserTestUtils.closeWindow(win);
      await BrowserTestUtils.closeWindow(privateWin);
    })();
  }

  const geoTestPageURL =
    "https://example.com/browser/" +
    "browser/components/privatebrowsing/test/browser/browser_privatebrowsing_geoprompt_page.html";

  await checkPrivateBrowsingRememberPrompt(geoTestPageURL, "geolocation");

  const vrEnabled = Services.prefs.getBoolPref("dom.vr.enabled");

  if (vrEnabled) {
    const xrTestPageURL =
      "https://example.com/browser/" +
      "browser/components/privatebrowsing/test/browser/browser_privatebrowsing_xrprompt_page.html";

    await checkPrivateBrowsingRememberPrompt(xrTestPageURL, "xr");
  }
});