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