summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/service-workers/service-worker/fetch-frame-resource.https.html
blob: cc1dac472bca62db0fff25dcfda9bce9890a4658 (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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
<!DOCTYPE html>
<title>Service Worker: Fetch for the frame loading.</title>
<meta name=timeout content=long>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="resources/get-host-info.sub.js"></script>
<script src="resources/test-helpers.sub.js"></script>
<body>
<script>
var worker = 'resources/fetch-rewrite-worker.js';
var path = base_path() + 'resources/fetch-access-control.py';
var host_info = get_host_info();

if (window.testRunner) {
  testRunner.setCanOpenWindows();
}

function getLoadedObject(win, contentFunc, closeFunc) {
  return new Promise(function(resolve) {
      function done(contentString) {
        var result = null;
        // fetch-access-control.py returns a string like "report( <json> )".
        // Eval the returned string with a report functionto get the json
        // object.
        try {
          function report(obj) { result = obj };
          eval(contentString);
        } catch(e) {
          // just resolve null if we get unexpected page content
        }
        closeFunc(win);
        resolve(result);
      }

      // We can't catch the network error on window. So we use the timer.
      var timeout = setTimeout(function() {
          // Failure pages are considered cross-origin in some browsers.  This
          // means you cannot even .resolve() the window because the check for
          // the .then property will throw.  Instead, treat cross-origin
          // failure pages as the empty string which will fail to parse as the
          // expected json result.
          var content = '';
          try {
            content = contentFunc(win);
          } catch(e) {
            // use default empty string for cross-domain window
          }
          done(content);
        }, 10000);

      win.onload = function() {
          clearTimeout(timeout);
          var content = contentFunc(win);
          done(content);
        };
    });
}

function getLoadedFrameAsObject(frame) {
  return getLoadedObject(frame, function(f) {
      return f.contentDocument.body.textContent;
    }, function(f) {
      f.parentNode.removeChild(f);
    });
}

function getLoadedWindowAsObject(win) {
  return getLoadedObject(win, function(w) {
      return w.document.body.textContent
    }, function(w) {
      w.close();
    });
}

async_test(function(t) {
    var scope = 'resources/fetch-frame-resource/frame-basic';
    var frame;
    service_worker_unregister_and_register(t, worker, scope)
      .then(function(reg) {
          return wait_for_state(t, reg.installing, 'activated');
        })
      .then(function() {
          frame = document.createElement('iframe');
          frame.src =
            scope + '?url=' +
            encodeURIComponent(host_info['HTTPS_ORIGIN'] + path);
          document.body.appendChild(frame);
          return getLoadedFrameAsObject(frame);
        })
      .then(function(result) {
          assert_equals(
            result.jsonpResult,
            'success',
            'Basic type response could be loaded in the iframe.');
          frame.remove();
          return service_worker_unregister_and_done(t, scope);
        })
      .catch(unreached_rejection(t));
  }, 'Basic type response could be loaded in the iframe.');

async_test(function(t) {
    var scope = 'resources/fetch-frame-resource/frame-cors';
    var frame;
    service_worker_unregister_and_register(t, worker, scope)
      .then(function(reg) {
          return wait_for_state(t, reg.installing, 'activated');
        })
      .then(function() {
          frame = document.createElement('iframe');
          frame.src =
            scope + '?mode=cors&url=' +
            encodeURIComponent(host_info['HTTPS_REMOTE_ORIGIN'] + path +
                               '?ACAOrigin=' + host_info['HTTPS_ORIGIN']);
          document.body.appendChild(frame);
          return getLoadedFrameAsObject(frame);
        })
      .then(function(result) {
          assert_equals(
            result.jsonpResult,
            'success',
            'CORS type response could be loaded in the iframe.');
          frame.remove();
          return service_worker_unregister_and_done(t, scope);
        })
      .catch(unreached_rejection(t));
  }, 'CORS type response could be loaded in the iframe.');

async_test(function(t) {
    var scope = 'resources/fetch-frame-resource/frame-opaque';
    var frame;
    service_worker_unregister_and_register(t, worker, scope)
      .then(function(reg) {
          return wait_for_state(t, reg.installing, 'activated');
        })
      .then(function() {
          frame = document.createElement('iframe');
          frame.src =
            scope + '?mode=no-cors&url=' +
            encodeURIComponent(host_info['HTTPS_REMOTE_ORIGIN'] + path);
          document.body.appendChild(frame);
          return getLoadedFrameAsObject(frame);
        })
      .then(function(result) {
          assert_equals(
            result,
            null,
            'Opaque type response could not be loaded in the iframe.');
          frame.remove();
          return service_worker_unregister_and_done(t, scope);
        })
      .catch(unreached_rejection(t));
  }, 'Opaque type response could not be loaded in the iframe.');

async_test(function(t) {
    var scope = 'resources/fetch-frame-resource/window-basic';
    service_worker_unregister_and_register(t, worker, scope)
      .then(function(reg) {
          return wait_for_state(t, reg.installing, 'activated');
        })
      .then(function() {
          var win = window.open(
            scope + '?url=' +
            encodeURIComponent(host_info['HTTPS_ORIGIN'] + path));
          return getLoadedWindowAsObject(win);
        })
      .then(function(result) {
          assert_equals(
            result.jsonpResult,
            'success',
            'Basic type response could be loaded in the new window.');
          return service_worker_unregister_and_done(t, scope);
        })
      .catch(unreached_rejection(t));
  }, 'Basic type response could be loaded in the new window.');

async_test(function(t) {
    var scope = 'resources/fetch-frame-resource/window-cors';
    service_worker_unregister_and_register(t, worker, scope)
      .then(function(reg) {
          return wait_for_state(t, reg.installing, 'activated');
        })
      .then(function() {
          var win = window.open(
            scope + '?mode=cors&url=' +
            encodeURIComponent(host_info['HTTPS_REMOTE_ORIGIN'] + path +
                               '?ACAOrigin=' + host_info['HTTPS_ORIGIN']));
          return getLoadedWindowAsObject(win);
        })
      .then(function(result) {
          assert_equals(
            result.jsonpResult,
            'success',
            'CORS type response could be loaded in the new window.');
          return service_worker_unregister_and_done(t, scope);
        })
      .catch(unreached_rejection(t));
  }, 'CORS type response could be loaded in the new window.');

async_test(function(t) {
    var scope = 'resources/fetch-frame-resource/window-opaque';
    service_worker_unregister_and_register(t, worker, scope)
      .then(function(reg) {
          return wait_for_state(t, reg.installing, 'activated');
        })
      .then(function() {
          var win = window.open(
            scope + '?mode=no-cors&url=' +
            encodeURIComponent(host_info['HTTPS_REMOTE_ORIGIN'] + path));
          return getLoadedWindowAsObject(win);
        })
      .then(function(result) {
          assert_equals(
            result,
            null,
            'Opaque type response could not be loaded in the new window.');
          return service_worker_unregister_and_done(t, scope);
        })
      .catch(unreached_rejection(t));
  }, 'Opaque type response could not be loaded in the new window.');
</script>
</body>