summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/websockets/Close-1005-verify-code.any.js
blob: 28f84c8003f64ca59fc366fad27bf3ccec265b68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// META: script=constants.sub.js
// META: variant=?default
// META: variant=?wss
// META: variant=?wpt_flags=h2

var test = async_test("Create WebSocket - Close the Connection - close() - return close code is 1005 - Connection should be closed");

var wsocket = CreateWebSocket(false, false);
var isOpenCalled = false;

wsocket.addEventListener('open', test.step_func(function(evt) {
  wsocket.close();
  isOpenCalled = true;
}), true);

wsocket.addEventListener('close', test.step_func(function(evt) {
  assert_true(isOpenCalled, "WebSocket connection should be open");
  assert_equals(evt.code, 1005, "CloseEvent.code should be 1005");
  assert_equals(evt.reason, "", "CloseEvent.reason should be empty");
  test.done();
}), true);