diff options
Diffstat (limited to 'tests/wpt/web-platform-tests/websockets/Create-valid-url-array-protocols.any.js')
-rw-r--r-- | tests/wpt/web-platform-tests/websockets/Create-valid-url-array-protocols.any.js | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/wpt/web-platform-tests/websockets/Create-valid-url-array-protocols.any.js b/tests/wpt/web-platform-tests/websockets/Create-valid-url-array-protocols.any.js new file mode 100644 index 00000000000..28c6b4621ac --- /dev/null +++ b/tests/wpt/web-platform-tests/websockets/Create-valid-url-array-protocols.any.js @@ -0,0 +1,20 @@ +// META: script=websocket.sub.js + + var testOpen = async_test("W3C WebSocket API - Create WebSocket - Pass a valid URL and array of protocol strings - Connection should be opened"); + var testClose = async_test("W3C WebSocket API - Create WebSocket - Pass a valid URL and array of protocol strings - Connection should be closed"); + + var wsocket = CreateWebSocket(false, false, true); + var isOpenCalled = false; + + wsocket.addEventListener('open', testOpen.step_func(function (evt) { + assert_equals(wsocket.readyState, 1, "readyState should be 1(OPEN)"); + wsocket.close(); + isOpenCalled = true; + testOpen.done(); + }), true); + + wsocket.addEventListener('close', testClose.step_func(function (evt) { + assert_true(isOpenCalled, "WebSocket connection should be open"); + assert_equals(evt.wasClean, true, "wasClean should be true"); + testClose.done(); + }), true); |