summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/service-workers/service-worker/claim-worker-fetch.https.html
blob: 7cb26c742b97d3d768e01ec09adb1ceeca99dc86 (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
<!doctype html>
<meta charset=utf-8>
<title></title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="resources/test-helpers.sub.js"></script>
<body>
<script>

promise_test((t) => {
  return runTest(t, 'resources/claim-worker-fetch-iframe.html');
}, 'fetch() in Worker should be intercepted after the client is claimed.');

promise_test((t) => {
  return runTest(t, 'resources/claim-nested-worker-fetch-iframe.html');
}, 'fetch() in nested Worker should be intercepted after the client is claimed.');

promise_test((t) => {
  return runTest(t, 'resources/claim-blob-url-worker-fetch-iframe.html');
}, 'fetch() in blob URL Worker should be intercepted after the client is claimed.');

promise_test((t) => {
  return runTest(t, 'resources/nested-blob-url-workers.html');
}, 'fetch() in nested blob URL Worker created from a blob URL Worker should be intercepted after the client is claimed.');

promise_test((t) => {
  return runTest(t, 'resources/nested-worker-created-from-blob-url-worker.html');
}, 'fetch() in nested Worker created from a blob URL Worker should be intercepted after the client is claimed.');

promise_test((t) => {
  return runTest(t, 'resources/nested-blob-url-worker-created-from-worker.html');
}, 'fetch() in nested blob URL Worker created from a Worker should be intercepted after the client is claimed.');

async function runTest(t, iframe_url) {
  const resource = 'simple.txt';
  const scope = 'resources/';
  const script = 'resources/claim-worker.js';

  // Create the test iframe with a dedicated worker.
  const frame = await with_iframe(iframe_url);
  t.add_cleanup(_ => frame.remove());

  // Check the controller and test with fetch in the worker.
  assert_equals(frame.contentWindow.navigator.controller,
                undefined, 'Should have no controller.');
  {
    const response_text = await frame.contentWindow.fetch_in_worker(resource);
    assert_equals(response_text, 'a simple text file\n',
                  'fetch() should not be intercepted.');
  }

  // Register a service worker.
  const reg = await service_worker_unregister_and_register(t, script, scope);
  t.add_cleanup(_ => reg.unregister());
  await wait_for_state(t, reg.installing, 'activated');

  // Let the service worker claim the iframe and the worker.
  const channel = new MessageChannel();
  const saw_message = new Promise(function(resolve) {
    channel.port1.onmessage = t.step_func(function(e) {
      assert_equals(e.data, 'PASS', 'Worker call to claim() should fulfill.');
      resolve();
    });
  });
  reg.active.postMessage({port: channel.port2}, [channel.port2]);
  await saw_message;

  // Check the controller and test with fetch in the worker.
  const reg2 =
    await frame.contentWindow.navigator.serviceWorker.getRegistration(scope);
  assert_equals(frame.contentWindow.navigator.serviceWorker.controller,
                reg2.active, 'Test iframe should be claimed.');

  {
    // TODO(horo): Check the worker's navigator.seviceWorker.controller.
    const response_text = await frame.contentWindow.fetch_in_worker(resource);
    assert_equals(response_text, 'Intercepted!',
                  'fetch() in the worker should be intercepted.');
  }
}

</script>
</body>