summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/service-workers/service-worker/installing.https.html
blob: 0f257b6aba4f3d65802e7d7f8a7503d6c6aedd42 (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
<!DOCTYPE html>
<title>ServiceWorker: navigator.serviceWorker.installing</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="resources/test-helpers.sub.js"></script>
<body>
<script>

const SCRIPT = 'resources/empty-worker.js';
const SCOPE = 'resources/blank.html';

// "installing" is set
promise_test(async t => {

  t.add_cleanup(async() => {
    if (frame)
      frame.remove();
    if (registration)
      await registration.unregister();
  });

  await service_worker_unregister(t, SCOPE);
  const frame = await with_iframe(SCOPE);
  const registration =
      await navigator.serviceWorker.register(SCRIPT, {scope: SCOPE});
  const container = frame.contentWindow.navigator.serviceWorker;
  assert_equals(container.controller, null, 'controller');
  assert_equals(registration.active, null, 'registration.active');
  assert_equals(registration.waiting, null, 'registration.waiting');
  assert_equals(registration.installing.scriptURL, normalizeURL(SCRIPT),
                'registration.installing.scriptURL');
  // FIXME: Add a test for a frame created after installation.
  // Should the existing frame ("frame") block activation?
}, 'installing is set');

// Tests that The ServiceWorker objects returned from installing attribute getter
// that represent the same service worker are the same objects.
promise_test(async t => {
  const registration1 =
      await service_worker_unregister_and_register(t, SCRIPT, SCOPE);
  const registration2 = await navigator.serviceWorker.getRegistration(SCOPE);
  assert_equals(registration1.installing, registration2.installing,
                'ServiceWorkerRegistration.installing should return the ' +
                'same object');
  await registration1.unregister();
}, 'The ServiceWorker objects returned from installing attribute getter that ' +
   'represent the same service worker are the same objects');
</script>