summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/service-workers/service-worker/register-wait-forever-in-install-worker.https.html
blob: e23f9f4fc8e3807ad60c90b055f74c38d383c24d (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
<!DOCTYPE html>
<title>Service Worker: Register wait-forever-in-install-worker</title>
<script src="/resources/testharness.js"></script>
<script src="resources/testharness-helpers.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="resources/test-helpers.sub.js"></script>
<script>

promise_test(function(t) {
    var bad_script = 'resources/wait-forever-in-install-worker.js';
    var good_script = 'resources/empty-worker.js';
    var scope = 'resources/wait-forever-in-install-worker';
    var other_scope = 'resources/wait-forever-in-install-worker-other';
    var registration;
    var registerPromise;

    return navigator.serviceWorker.register(bad_script, {scope: scope})
      .then(function(r) {
          registration = r;
          assert_equals(registration.installing.scriptURL,
                        normalizeURL(bad_script));

          // This register job should not start until the first
          // register for the same scope completes.
          registerPromise =
            navigator.serviceWorker.register(good_script, {scope: scope});

          // In order to test that the above register does not complete
          // we will perform a register() on a different scope.  The
          // assumption here is that the previous register call would
          // have completed in the same timeframe if it was able to do
          // so.
          return navigator.serviceWorker.register(good_script,
                                                  {scope: other_scope});
        })
      .then(function(swr) {
          return swr.unregister();
        })
      .then(function() {
          assert_equals(registration.installing.scriptURL,
                        normalizeURL(bad_script));
          registration.installing.postMessage('STOP_WAITING');
          return registerPromise;
        })
      .then(function(swr) {
          assert_equals(registration.installing.scriptURL,
                        normalizeURL(good_script));
          return wait_for_state(t, registration.installing, 'activated');
        })
      .then(function() {
          return service_worker_unregister_and_done(t, scope);
        })
  }, 'register worker that calls waitUntil with a promise that never ' +
     'resolves in oninstall');

</script>