summaryrefslogtreecommitdiffstats
path: root/dom/serviceworkers/test/test_force_refresh.html
blob: 69da7b7de31bc8a19a0cd07ffe24cc77a0e6866d (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
<!--
  Any copyright is dedicated to the Public Domain.
  http://creativecommons.org/publicdomain/zero/1.0/
-->
<!DOCTYPE HTML>
<html>
<head>
  <title>Bug 982726 - Test service worker post message </title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>
<p id="display"></p>
<div id="content" style="display: none"></div>
<pre id="test"></pre>
<script class="testbody" type="text/javascript">
  /**
   *
   */
  let iframe;
  let registration;

  function start() {
    return new Promise(resolve => {
      const content = document.getElementById("content");
      ok(content, "Parent exists.");

      iframe = document.createElement("iframe");
      iframe.setAttribute("src", "sw_clients/refresher_compressed.html");

      /*
       * The initial iframe must be the _uncached_ version, which means its
       * load must happen before the Service Worker's `activate` event.
       * Rather than `waitUntil`-ing the Service Worker's `install` event
       * until the load finishes (more concurrency, but involves coordinating
       * `postMessage`s), just ensure the load finishes before registering
       * the Service Worker (which is simpler).
       */
      iframe.onload = resolve;

      content.appendChild(iframe);
    }).then(async () => {
      /*
       * There's no need _here_ to explicitly wait for this Service Worker to be
       * "activated"; this test will progress when the "READY"/"READY_CACHED"
       * messages are received from the iframe, and the iframe will only send
       * those messages once the Service Worker is "activated" (by chaining on
       * its `navigator.serviceWorker.ready` promise).
       */
      registration = await navigator.serviceWorker.register(
        "force_refresh_worker.js", { scope: "./sw_clients/" });
    });
  }

  function unregister() {
    return registration.unregister().then(function(result) {
      ok(result, "Unregister should return true.");
    }, function(e) {
      dump("Unregistering the SW failed with " + e + "\n");
    });
  }

  function testForceRefresh(swr) {
    return new Promise(function(res, rej) {
      var count = 0;
      var cachedCount = 0;
      window.onmessage = function(e) {
        if (e.data === "READY") {
          count += 1;
          if (count == 2) {
            is(cachedCount, 1, "should have received cached message before " +
                               "second non-cached message");
            res();
          }
          iframe.contentWindow.postMessage("REFRESH", "*");
        } else if (e.data === "READY_CACHED") {
          cachedCount += 1;
          is(count, 1, "should have received non-cached message before " +
                       "cached message");
          iframe.contentWindow.postMessage("FORCE_REFRESH", "*");
        }
      }
    }).then(() => document.getElementById("content").removeChild(iframe));
  }

  function runTest() {
    start()
      .then(testForceRefresh)
      .then(unregister)
      .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.caches.enabled", true],
  ]}, runTest);
</script>
</pre>
</body>
</html>