Skip to content

Commit

Permalink
test websocket origin set in worker
Browse files Browse the repository at this point in the history
  • Loading branch information
g-k committed Feb 24, 2016
1 parent 33f0040 commit 76e0b1f
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/wpt/metadata/MANIFEST.json
Original file line number Diff line number Diff line change
Expand Up @@ -30955,6 +30955,10 @@
"path": "websockets/Send-data.htm",
"url": "/websockets/Send-data.htm"
},
{
"path": "websockets/opening-handshake/003-sets-origin.worker.js",
"url": "/websockets/opening-handshake/003-sets-origin.worker"
},
{
"path": "websockets/Send-data.worker.js",
"url": "/websockets/Send-data.worker"
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
importScripts("/resources/testharness.js");
importScripts('../constants.js?pipe=sub');
importScripts('../websocket.js?pipe=sub');

async_test(function(t) {
var ws = new WebSocket(SCHEME_DOMAIN_PORT+'/origin');
ws.onmessage = t.step_func(function(e) {
assert_equals(e.data, location.protocol+'//'+location.host);
ws.onclose = t.step_func(function(e) {
assert_equals(e.wasClean, true);
ws.onclose = t.step_func(function() {assert_unreached()});
setTimeout(t.step_func(function() {t.done();}), 50)
})
ws.close();
})
ws.onerror = ws.onclose = t.step_func(function() {assert_unreached()});
}, "W3C WebSocket API - origin set in a Worker");

0 comments on commit 76e0b1f

Please sign in to comment.