Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /websockets/Send-null.any.html?default - WPT Dashboard Interop Dashboard
- /websockets/Send-null.any.html?wpt_flags=h2 - WPT Dashboard Interop Dashboard
- /websockets/Send-null.any.html?wss - WPT Dashboard Interop Dashboard
- /websockets/Send-null.any.worker.html?default - WPT Dashboard Interop Dashboard
- /websockets/Send-null.any.worker.html?wpt_flags=h2 - WPT Dashboard Interop Dashboard
- /websockets/Send-null.any.worker.html?wss - WPT Dashboard Interop Dashboard
// META: script=constants.sub.js
// META: variant=?default
// META: variant=?wpt_flags=h2
// META: variant=?wss
var test = async_test("Send null data on a WebSocket - Connection should be closed");
var data = null;
var nullReturned = false;
var wsocket = CreateWebSocket(false, false);
var isOpenCalled = false;
var isMessageCalled = false;
wsocket.addEventListener('open', test.step_func(function(evt) {
wsocket.send(data);
isOpenCalled = true;
}), true);
wsocket.addEventListener('message', test.step_func(function(evt) {
isMessageCalled = true;
if ("null" == evt.data || "" == evt.data)
nullReturned = true;
assert_true(nullReturned);
wsocket.close();
}), true);
wsocket.addEventListener('close', test.step_func(function(evt) {
assert_true(isOpenCalled, "WebSocket connection should be open");
assert_true(isMessageCalled, "message should be received");
assert_equals(evt.wasClean, true, "wasClean should be true");
test.done();
}), true);