Import WPT websockets tests
https://bugs.webkit.org/show_bug.cgi?id=198774
Reviewed by Geoffrey Garen.
LayoutTests/imported/w3c:
* resources/import-expectations.json:
* resources/resource-files.json:
* web-platform-tests/html/webappapis/dynamic-markup-insertion/opening-the-input-stream/abort.sub.window-expected.txt:
Rebasing since we now have some websockets specific handlers.
* web-platform-tests/websockets: Added.
LayoutTests:
* platform/mac-wk1/TestExpectations:
* TestExpectations:
* tests-options.json:
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@246406 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/LayoutTests/imported/w3c/web-platform-tests/websockets/close-invalid.any.js b/LayoutTests/imported/w3c/web-platform-tests/websockets/close-invalid.any.js
new file mode 100644
index 0000000..8ac1da3
--- /dev/null
+++ b/LayoutTests/imported/w3c/web-platform-tests/websockets/close-invalid.any.js
@@ -0,0 +1,20 @@
+// META: script=websocket.sub.js
+
+[
+ [0, "0"],
+ [500, "500"],
+ [NaN, "NaN"],
+ ["string", "String"],
+ [null, "null"],
+ [0x10000 + 1000, "2**16+1000"],
+].forEach(function(t) {
+ [true, false].forEach(function(secure) {
+ test(function() {
+ var ws = CreateWebSocket(secure, false, false);
+ assert_throws("InvalidAccessError", function() {
+ ws.close(t[0]);
+ });
+ wsocket.onerror = this.unreached_func();
+ }, t[1] + " on a " + (secure ? "secure" : "insecure") + " websocket");
+ });
+});