Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(98)

Side by Side Diff: third_party/WebKit/LayoutTests/imported/wpt/service-workers/service-worker/websocket.https.html

Issue 2415873002: Import w3c tests for the service workers (Closed)
Patch Set: Rebase Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <title>Service Worker: WebSocket handshake channel is not intercepted</title>
3 <script src="/resources/testharness.js"></script>
4 <script src="/resources/testharnessreport.js"></script>
5 <script src="resources/get-host-info.sub.js"></script>
6 <script src="resources/test-helpers.sub.js?pipe=sub"></script>
7 <script>
8
9 async_test(function(t) {
10 var path = new URL(".", window.location).pathname
11 var url = 'resources/websocket.js';
12 var scope = 'resources/blank.html?websocket';
13 var host_info = get_host_info();
14 var frameURL = host_info['HTTPS_ORIGIN'] + path + scope;
15 var frame;
16
17 service_worker_unregister_and_register(t, url, scope)
18 .then(function(registration) {
19 return wait_for_state(t, registration.installing, 'activated');
20 })
21 .then(function() { return with_iframe(frameURL); })
22 .then(function(f) {
23 frame = f;
24 return websocket(t, frame);
25 })
26 .then(function() {
27 return new Promise(function(resolve, reject) {
28 function onMessage(e) {
29 for (var url in e.data.urls) {
30 assert_equals(url.indexOf(get_websocket_url()), -1,
31 "Observed an unexpected FetchEvent for the WebSock et handshake");
32 }
33 t.done();
34 }
35 var channel = new MessageChannel();
36 channel.port1.onmessage = t.step_func(onMessage);
37 frame.contentWindow.navigator.serviceWorker.controller.postMessage({ port: channel.port2}, [channel.port2]);
38 });
39 })
40 .then(function() {
41 frame.remove();
42 return service_worker_unregister_and_done(t, scope);
43 })
44 .catch(unreached_rejection(t));
45 }, 'Verify WebSocket handshake channel does not get intercepted');
46 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698