summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/service-workers/service-worker/registration-iframe.https.html
blob: ae39ddfea3e5186bdea4c6a1a5d9f0c7e6cbc212 (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
<!DOCTYPE html>
<meta charset="utf-8">
<title>Service Worker: Registration for iframe</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="resources/test-helpers.sub.js"></script>
<body>
<script>

// Set script url and scope url relative to the iframe's document's url. Assert
// the implementation parses the urls against the iframe's document's url.
async_test(function(t) {
  const url = 'resources/blank.html';
  const iframe_scope = 'registration-with-valid-scope';
  const scope = normalizeURL('resources/' + iframe_scope);
  const iframe_script = 'empty-worker.js';
  const script = normalizeURL('resources/' + iframe_script);
  var frame;
  var registration;

  service_worker_unregister(t, scope)
    .then(function() { return with_iframe(url); })
    .then(function(f) {
        frame = f;
        return frame.contentWindow.navigator.serviceWorker.register(
            iframe_script,
            { scope: iframe_scope });
      })
    .then(function(r) {
        registration = r;
        return wait_for_state(t, r.installing, 'activated');
      })
    .then(function() {
        assert_equals(registration.scope, scope,
                      'registration\'s scope must be parsed against the ' +
                      '"relevant global object"');
        assert_equals(registration.active.scriptURL, script,
                      'worker\'s scriptURL must be parsed against the ' +
                      '"relevant global object"');
        return registration.unregister();
      })
    .then(function() {
        frame.remove();
        t.done();
      })
    .catch(unreached_rejection(t));
  }, 'register method should use the "relevant global object" to parse its ' +
     'scriptURL and scope - normal case');

// Set script url and scope url relative to the parent frame's document's url.
// Assert the implementation throws a TypeError exception.
async_test(function(t) {
  const url = 'resources/blank.html';
  const iframe_scope = 'resources/registration-with-scope-to-non-existing-url';
  const scope = normalizeURL('resources/' + iframe_scope);
  const script = 'resources/empty-worker.js';
  var frame;
  var registration;

  service_worker_unregister(t, scope)
    .then(function() { return with_iframe(url); })
    .then(function(f) {
        frame = f;
        return frame.contentWindow.navigator.serviceWorker.register(
            script,
            { scope: iframe_scope });
      })
    .then(
      function() {
        assert_unreached('register() should reject');
      },
      function(e) {
        assert_equals(e.name, 'TypeError',
                      'register method with scriptURL and scope parsed to ' +
                      'nonexistent location should reject with TypeError');
        frame.remove();
        t.done();
      })
    .catch(unreached_rejection(t));
  }, 'register method should use the "relevant global object" to parse its ' +
     'scriptURL and scope - error case');

// Set the scope url to a non-subdirectory of the script url. Assert the
// implementation throws a SecurityError exception.
async_test(function(t) {
  const url = 'resources/blank.html';
  const scope = 'registration-with-disallowed-scope';
  const iframe_scope = '../' + scope;
  const script = 'empty-worker.js';
  var frame;
  var registration;

  service_worker_unregister(t, scope)
    .then(function() { return with_iframe(url); })
    .then(function(f) {
        frame = f;
        return frame.contentWindow.navigator.serviceWorker.register(
            script,
            { scope: iframe_scope });
      })
    .then(
      function() {
        assert_unreached('register() should reject');
      },
      function(e) {
        assert_equals(e.name, 'SecurityError',
                      'The scope set to a non-subdirectory of the scriptURL ' +
                      'should reject with SecurityError');
        frame.remove();
        t.done();
      })
    .catch(unreached_rejection(t));
  }, 'A scope url should start with the given script url');

</script>
</body>