summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/service-workers/service-worker/unregister-then-register-new-script.https.html
blob: d046423e0c29c082c22c64c865ccb38a6a40adac (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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<!DOCTYPE html>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="resources/test-helpers.sub.js"></script>
<script>
var worker_url = 'resources/empty-worker.js';

promise_test(async function(t) {
  const scope = 'resources/scope/unregister-then-register-new-script-that-exists';
  const registration = await service_worker_unregister_and_register(t, worker_url, scope);
  t.add_cleanup(() => registration.unregister());

  const newWorkerURL = worker_url + '?new';
  await wait_for_state(t, registration.installing, 'activated');

  const iframe = await with_iframe(scope);
  t.add_cleanup(() => iframe.remove());

  await registration.unregister();

  const newRegistration = await navigator.serviceWorker.register(newWorkerURL, { scope });
  t.add_cleanup(() => newRegistration.unregister());

  assert_equals(
    registration.installing,
    null,
    'before activated registration.installing'
  );
  assert_equals(
    registration.waiting,
    null,
    'before activated registration.waiting'
  );
  assert_equals(
    registration.active.scriptURL,
    normalizeURL(worker_url),
    'before activated registration.active'
  );
  assert_equals(
    newRegistration.installing.scriptURL,
    normalizeURL(newWorkerURL),
    'before activated newRegistration.installing'
  );
  assert_equals(
    newRegistration.waiting,
    null,
    'before activated newRegistration.waiting'
  );
  assert_equals(
    newRegistration.active,
    null,
    'before activated newRegistration.active'
  );
  iframe.remove();

  await wait_for_state(t, newRegistration.installing, 'activated');

  assert_equals(
    newRegistration.installing,
    null,
    'after activated newRegistration.installing'
  );
  assert_equals(
    newRegistration.waiting,
    null,
    'after activated newRegistration.waiting'
  );
  assert_equals(
    newRegistration.active.scriptURL,
    normalizeURL(newWorkerURL),
    'after activated newRegistration.active'
  );

  const newIframe = await with_iframe(scope);
  t.add_cleanup(() => newIframe.remove());

  assert_equals(
    newIframe.contentWindow.navigator.serviceWorker.controller.scriptURL,
    normalizeURL(newWorkerURL),
    'the new worker should control a new document'
  );
}, 'Registering a new script URL while an unregistered registration is in use');

promise_test(async function(t) {
  const scope = 'resources/scope/unregister-then-register-new-script-that-404s';
  const registration = await service_worker_unregister_and_register(t, worker_url, scope);
  t.add_cleanup(() => registration.unregister());

  await wait_for_state(t, registration.installing, 'activated');

  const iframe = await with_iframe(scope);
  t.add_cleanup(() => iframe.remove());

  await registration.unregister();

  await promise_rejects_js(
    t, TypeError,
    navigator.serviceWorker.register('this-will-404', { scope })
  );

  assert_equals(registration.installing, null, 'registration.installing');
  assert_equals(registration.waiting, null, 'registration.waiting');
  assert_equals(registration.active.scriptURL, normalizeURL(worker_url), 'registration.active');

  const newIframe = await with_iframe(scope);
  t.add_cleanup(() => newIframe.remove());

  assert_equals(newIframe.contentWindow.navigator.serviceWorker.controller, null, 'Document should not be controlled');
}, 'Registering a new script URL that 404s does not resurrect unregistered registration');

promise_test(async function(t) {
  const scope = 'resources/scope/unregister-then-register-reject-install-worker';
  const registration = await service_worker_unregister_and_register(t, worker_url, scope);
  t.add_cleanup(() => registration.unregister());

  await wait_for_state(t, registration.installing, 'activated');

  const iframe = await with_iframe(scope);
  t.add_cleanup(() => iframe.remove());

  await registration.unregister();

  const newRegistration = await navigator.serviceWorker.register(
    'resources/reject-install-worker.js', { scope }
  );
  t.add_cleanup(() => newRegistration.unregister());

  await wait_for_state(t, newRegistration.installing, 'redundant');

  assert_equals(registration.installing, null, 'registration.installing');
  assert_equals(registration.waiting, null, 'registration.waiting');
  assert_equals(registration.active.scriptURL, normalizeURL(worker_url),
                'registration.active');
  assert_not_equals(registration, newRegistration, 'New registration is different');
}, 'Registering a new script URL that fails to install does not resurrect unregistered registration');
</script>