summaryrefslogtreecommitdiffstats
path: root/dom/serviceworkers/test/test_openWindow.html
blob: 261927cc7530fa5836d0f28ef1343fe4849de34d (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
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=1172870
-->
<head>
  <title>Bug 1172870 - Test clients.openWindow</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <script type="text/javascript" src="/tests/dom/notification/test/mochitest/MockServices.js"></script>
  <script type="text/javascript" src="/tests/dom/notification/test/mochitest/NotificationTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1172870">Bug 1172870</a>
<p id="display"></p>
<div id="content" style="display: none">
</div>
<pre id="test">
</pre>
<script src="utils.js"></script>
<script type="text/javascript">
  SimpleTest.requestFlakyTimeout("Mock alert service dispatches show and click events.");

  function setup(ctx) {
    MockServices.register();

    return navigator.serviceWorker.register("openWindow_worker.js", {scope: "./"})
      .then(function(swr) {
        ok(swr, "Registration successful");
        ctx.registration = swr;
        return waitForState(swr.installing, 'activated', ctx);
      });
  }

  function setupMessageHandler(ctx) {
    return new Promise(function(res, rej) {
      navigator.serviceWorker.onmessage = function(event) {
        navigator.serviceWorker.onmessage = null;
        for (i = 0; i < event.data.length; i++) {
          ok(event.data[i].result, event.data[i].message);
        }
        res(ctx);
      }
    });
  }

  function testPopupNotAllowed(ctx) {
    var p = setupMessageHandler(ctx);
    ok(ctx.registration.active, "Worker is active.");
    ctx.registration.active.postMessage("testNoPopup");

    return p;
  }

  function testPopupAllowed(ctx) {
    var p = setupMessageHandler(ctx);
    ctx.registration.showNotification("testPopup");

    return p;
  }

  function checkNumberOfWindows(ctx) {
    return new Promise(function(res, rej) {
      navigator.serviceWorker.onmessage = function(event) {
        navigator.serviceWorker.onmessage = null;
        for (i = 0; i < event.data.length; i++) {
          ok(event.data[i].result, event.data[i].message);
        }
        res(ctx);
      }
      ctx.registration.active.postMessage("CHECK_NUMBER_OF_WINDOWS");
    });
  }

  function clear(ctx) {
    MockServices.unregister();

    return ctx.registration.unregister().then(function(result) {
      ctx.registration = null;
      ok(result, "Unregister was successful.");
    });
  }

  function runTest() {
    setup({})
      // Permission to allow popups persists for some time after a notification
      // click event, so the order here is important.
      .then(testPopupNotAllowed)
      .then(testPopupAllowed)
      .then(checkNumberOfWindows)
      .then(clear)
      .catch(function(e) {
        ok(false, "Some test failed with error " + e);
      }).then(SimpleTest.finish);
  }

  SimpleTest.waitForExplicitFinish();
  SpecialPowers.pushPrefEnv({"set": [
    ["dom.serviceWorkers.exemptFromPerDomainMax", true],
    ["dom.serviceWorkers.enabled", true],
    ["dom.serviceWorkers.testing.enabled", true],
    ["dom.webnotifications.serviceworker.enabled", true],
    ["notification.prompt.testing", true],
    ["dom.serviceWorkers.disable_open_click_delay", 1000],
    ["dom.serviceWorkers.idle_timeout", 299999],
    ["dom.serviceWorkers.idle_extended_timeout", 299999],
    ["dom.securecontext.allowlist", "mochi.test,example.com"],
  ]}, runTest);
</script>
</body>
</html>