-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update tests which are generic across all TypedArrays for Float16Array
For whatwg/webidl#1398.
- Loading branch information
Showing
16 changed files
with
76 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
// META: script=constants.sub.js | ||
// META: variant=?default | ||
// META: variant=?wpt_flags=h2 | ||
// META: variant=?wss | ||
|
||
var test = async_test("Send binary data on a WebSocket - ArrayBufferView - Float16Array - Connection should be closed"); | ||
|
||
var data = ""; | ||
var datasize = 4; | ||
var view; | ||
var wsocket = CreateWebSocket(false, false); | ||
var isOpenCalled = false; | ||
var isMessageCalled = false; | ||
|
||
wsocket.addEventListener('open', test.step_func(function(evt) { | ||
wsocket.binaryType = "arraybuffer"; | ||
data = new ArrayBuffer(datasize); | ||
view = new Float16Array(data); | ||
for (var i = 0; i < 2; i++) { | ||
view[i] = i; | ||
} | ||
wsocket.send(view); | ||
isOpenCalled = true; | ||
}), true); | ||
|
||
wsocket.addEventListener('message', test.step_func(function(evt) { | ||
isMessageCalled = true; | ||
var resultView = new Float16Array(evt.data); | ||
for (var i = 0; i < resultView.length; i++) { | ||
assert_equals(resultView[i], view[i], "ArrayBufferView returned is the same"); | ||
} | ||
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); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters