summaryrefslogtreecommitdiffstats
path: root/toolkit/components/antitracking/test/browser/browser_storageAccess_TopLevel_Doorhanger.js
blob: e8d6ce9bb183e125e9b0d0394a11cf365b99a8f9 (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
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
Services.scriptloader.loadSubScript(
  "chrome://mochitests/content/browser/browser/modules/test/browser/head.js",
  this
);

async function cleanUp() {
  Services.perms.removeAll();
  await new Promise(resolve => {
    Services.clearData.deleteData(Ci.nsIClearDataService.CLEAR_ALL, value =>
      resolve()
    );
  });
}

add_task(async function testDoorhangerRequestStorageAccessUnderSite() {
  await SpecialPowers.pushPrefEnv({
    set: [
      ["dom.storage_access.enabled", true],
      ["dom.storage_access.forward_declared.enabled", true],
      ["dom.storage_access.prompt.testing", false],
      [
        "network.cookie.cookieBehavior",
        BEHAVIOR_REJECT_TRACKER_AND_PARTITION_FOREIGN,
      ],
      ["dom.storage_access.auto_grants", false],
      ["dom.storage_access.max_concurrent_auto_grants", 1],
    ],
  });
  let tab = await BrowserTestUtils.openNewForegroundTab({
    gBrowser,
    url: TEST_4TH_PARTY_PAGE,
  });
  let browser = tab.linkedBrowser;
  let permChanged = TestUtils.topicObserved("perm-changed", (subject, data) => {
    let result =
      subject
        .QueryInterface(Ci.nsIPermission)
        .type.startsWith("AllowStorageAccessRequest^") &&
      subject.principal.origin == new URL(TEST_TOP_PAGE).origin &&
      data == "added";
    return result;
  }).then(() => {
    ok(true, "Permission changed to add intermediate permission");
  });
  let shownPromise = BrowserTestUtils.waitForEvent(
    PopupNotifications.panel,
    "popupshown"
  ).then(_ => {
    ok(true, "Must display doorhanger from RequestStorageAccessUnderSite");
    return clickMainAction();
  });
  let sp = SpecialPowers.spawn(browser, [TEST_DOMAIN], async tp => {
    SpecialPowers.wrap(content.document).notifyUserGestureActivation();
    let p = content.document.requestStorageAccessUnderSite(tp);
    try {
      await p;
      ok(true, "Must resolve.");
    } catch {
      ok(false, "Must not reject.");
    }
  });

  await Promise.all([sp, shownPromise, permChanged]);
  await cleanUp();
  await BrowserTestUtils.removeTab(tab);
});

add_task(async function testNoDoorhangerCompleteStorageAccessRequestFromSite() {
  await SpecialPowers.pushPrefEnv({
    set: [
      ["dom.storage_access.enabled", true],
      ["dom.storage_access.forward_declared.enabled", true],
      [
        "network.cookie.cookieBehavior",
        BEHAVIOR_REJECT_TRACKER_AND_PARTITION_FOREIGN,
      ],
      ["dom.storage_access.prompt.testing", false],
      ["dom.storage_access.auto_grants", false],
      ["dom.storage_access.max_concurrent_auto_grants", 1],
    ],
  });
  let tab = await BrowserTestUtils.openNewForegroundTab({
    gBrowser,
    url: TEST_TOP_PAGE,
  });
  let browser = tab.linkedBrowser;
  let popupShown = false;
  // This promise is used to the absence of a doorhanger showing up.
  BrowserTestUtils.waitForEvent(PopupNotifications.panel, "popupshown")
    .then(_ => {
      // This will be called if a doorhanger is shown.
      ok(
        false,
        "Must not display doorhanger from CompleteStorageAccessRequestFromSite"
      );
      popupShown = true;
    })
    .catch(_ => {
      // This will be called when the test ends if a doorhanger is not shown
      ok(true, "It is expected for this popup to not show up.");
    });
  await SpecialPowers.spawn(browser, [TEST_4TH_PARTY_DOMAIN], async tp => {
    await SpecialPowers.pushPermissions([
      {
        type: "AllowStorageAccessRequest^http://example.com",
        allow: 1,
        context: content.document,
      },
    ]);
    SpecialPowers.wrap(content.document).notifyUserGestureActivation();
    let p = content.document.completeStorageAccessRequestFromSite(tp);
    try {
      await p;
      ok(true, "Must resolve.");
    } catch {
      ok(false, "Must not reject.");
    }
  });
  ok(!popupShown, "Must not have shown a popup during this test.");
  await cleanUp();
  await BrowserTestUtils.removeTab(tab);
});