summaryrefslogtreecommitdiffstats
path: root/browser/base/content/test/permissions/browser_permissions_handling_user_input.js
blob: 94b69c499879dd1c29a3afd2099844452833e24a (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
/* Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

const ORIGIN = "https://example.com";
const PERMISSIONS_PAGE =
  getRootDirectory(gTestPath).replace("chrome://mochitests/content", ORIGIN) +
  "permissions.html";

function assertShown(task) {
  return BrowserTestUtils.withNewTab(
    PERMISSIONS_PAGE,
    async function (browser) {
      let popupshown = BrowserTestUtils.waitForEvent(
        PopupNotifications.panel,
        "popupshown"
      );

      await SpecialPowers.spawn(browser, [], task);

      await popupshown;

      ok(true, "Notification permission prompt was shown");
    }
  );
}

function assertNotShown(task) {
  return BrowserTestUtils.withNewTab(
    PERMISSIONS_PAGE,
    async function (browser) {
      let popupshown = BrowserTestUtils.waitForEvent(
        PopupNotifications.panel,
        "popupshown"
      );

      await SpecialPowers.spawn(browser, [], task);

      let sawPrompt = await Promise.race([
        popupshown.then(() => true),
        // eslint-disable-next-line mozilla/no-arbitrary-setTimeout
        new Promise(c => setTimeout(() => c(false), 1000)),
      ]);

      is(sawPrompt, false, "Notification permission prompt was not shown");
    }
  );
}

// Tests that notification permissions are automatically denied without user interaction.
add_task(async function testNotificationPermission() {
  Services.prefs.setBoolPref(
    "dom.webnotifications.requireuserinteraction",
    true
  );

  // First test that when user interaction is required, requests
  // with user interaction will show the permission prompt.

  await assertShown(function () {
    content.document.notifyUserGestureActivation();
    content.document.getElementById("desktop-notification").click();
  });

  await assertShown(function () {
    content.document.notifyUserGestureActivation();
    content.document.getElementById("push").click();
  });

  // Now test that requests without user interaction will fail.

  await assertNotShown(function () {
    content.postMessage("push", "*");
  });

  await assertNotShown(async function () {
    let response = await content.Notification.requestPermission();
    is(response, "default", "The request was automatically denied");
  });

  Services.prefs.setBoolPref(
    "dom.webnotifications.requireuserinteraction",
    false
  );

  // Finally test that those requests will show a prompt again
  // if the pref has been set to false.

  await assertShown(function () {
    content.postMessage("push", "*");
  });

  await assertShown(function () {
    content.Notification.requestPermission();
  });

  Services.prefs.clearUserPref("dom.webnotifications.requireuserinteraction");
});