summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/service-workers/service-worker/navigation-redirect-resolution.https.html
blob: 59e1cafec3484a87fbe1f4ba31cdb2e7d3fb960d (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
<!DOCTYPE html>
<title>Service Worker: Navigation Redirect Resolution</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="resources/test-helpers.sub.js"></script>
<body>
<script>

function make_absolute(url) {
  return new URL(url, location).toString();
}

const script = 'resources/fetch-rewrite-worker.js';

function redirect_result_test(scope, expected_url, description) {
  promise_test(async t => {
    const registration = await service_worker_unregister_and_register(
          t, script, scope);
      t.add_cleanup(() => {
        return service_worker_unregister(t, scope);
      })
      await wait_for_state(t, registration.installing, 'activated');

      // The navigation to |scope| will be resolved by a fetch to |redirect_url|
      // which returns a relative Location header. If it is resolved relative to
      // |scope|, the result will be navigate-redirect-resolution/blank.html. If
      // relative to |redirect_url|, it will be resources/blank.html. The latter
      // is correct.
      const iframe = await with_iframe(scope);
      t.add_cleanup(() => { iframe.remove(); });
      assert_equals(iframe.contentWindow.location.href,
                    make_absolute(expected_url));
  }, description);
}

// |redirect_url| serves a relative redirect to resources/blank.html.
const redirect_url = 'resources/redirect.py?Redirect=blank.html';

// |scope_base| does not exist but will be replaced with a fetch of
// |redirect_url| by fetch-rewrite-worker.js.
const scope_base = 'resources/subdir/navigation-redirect-resolution?' +
    'redirect-mode=manual&url=' +
    encodeURIComponent(make_absolute(redirect_url));

// When the Service Worker forwards the result of |redirect_url| as an
// opaqueredirect response, the redirect uses the response's URL list as the
// base URL, not the request.
redirect_result_test(scope_base, 'resources/blank.html',
                     'test relative opaqueredirect');

// The response's base URL should be preserved across CacheStorage and clone.
redirect_result_test(scope_base + '&cache=1', 'resources/blank.html',
                     'test relative opaqueredirect with CacheStorage');
redirect_result_test(scope_base + '&clone=1', 'resources/blank.html',
                     'test relative opaqueredirect with clone');

</script>
</body>