summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/websockets/opening-handshake
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
commit26a029d407be480d791972afb5975cf62c9360a6 (patch)
treef435a8308119effd964b339f76abb83a57c29483 /testing/web-platform/tests/websockets/opening-handshake
parentInitial commit. (diff)
downloadfirefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz
firefox-26a029d407be480d791972afb5975cf62c9360a6.zip
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/websockets/opening-handshake')
-rw-r--r--testing/web-platform/tests/websockets/opening-handshake/001.html20
-rw-r--r--testing/web-platform/tests/websockets/opening-handshake/002.html24
-rw-r--r--testing/web-platform/tests/websockets/opening-handshake/003-sets-origin.worker.js17
-rw-r--r--testing/web-platform/tests/websockets/opening-handshake/003.html27
-rw-r--r--testing/web-platform/tests/websockets/opening-handshake/005.html25
-rw-r--r--testing/web-platform/tests/websockets/opening-handshake/006.html58
6 files changed, 171 insertions, 0 deletions
diff --git a/testing/web-platform/tests/websockets/opening-handshake/001.html b/testing/web-platform/tests/websockets/opening-handshake/001.html
new file mode 100644
index 0000000000..d8585d833b
--- /dev/null
+++ b/testing/web-platform/tests/websockets/opening-handshake/001.html
@@ -0,0 +1,20 @@
+<!doctype html>
+<title>WebSockets: invalid handshake</title>
+<script src=/resources/testharness.js></script>
+<script src=/resources/testharnessreport.js></script>
+<script src=../constants.sub.js></script>
+<meta name="variant" content="?default">
+<meta name="variant" content="?wss">
+<meta name="variant" content="?wpt_flags=h2">
+<div id=log></div>
+<script>
+async_test(function(t) {
+ var ws = new WebSocket(SCHEME_DOMAIN_PORT+'/invalid');
+ ws.onclose = t.step_func(function(e) {
+ assert_false(e.wasClean);
+ ws.onclose = t.unreached_func();
+ t.step_timeout(() => t.done(), 50);
+ });
+ ws.onmessage = ws.onopen = t.unreached_func();
+});
+</script>
diff --git a/testing/web-platform/tests/websockets/opening-handshake/002.html b/testing/web-platform/tests/websockets/opening-handshake/002.html
new file mode 100644
index 0000000000..00d8dccaee
--- /dev/null
+++ b/testing/web-platform/tests/websockets/opening-handshake/002.html
@@ -0,0 +1,24 @@
+<!doctype html>
+<title>WebSockets: valid handshake</title>
+<meta name=timeout content=long>
+<script src=/resources/testharness.js></script>
+<script src=/resources/testharnessreport.js></script>
+<script src=../constants.sub.js></script>
+<meta name="variant" content="?default">
+<meta name="variant" content="?wss">
+<meta name="variant" content="?wpt_flags=h2">
+<div id=log></div>
+<script>
+async_test(function(t) {
+ var ws = new WebSocket(SCHEME_DOMAIN_PORT+'/echo');
+ ws.onopen = t.step_func(function(e) {
+ ws.onclose = t.step_func(function(e) {
+ assert_equals(e.wasClean, true);
+ ws.onclose = t.unreached_func();
+ t.step_timeout(() => t.done(), 50);
+ })
+ ws.close();
+ });
+ ws.onerror = ws.onmessage = ws.onclose = t.unreached_func();
+});
+</script>
diff --git a/testing/web-platform/tests/websockets/opening-handshake/003-sets-origin.worker.js b/testing/web-platform/tests/websockets/opening-handshake/003-sets-origin.worker.js
new file mode 100644
index 0000000000..d10e8cb4c4
--- /dev/null
+++ b/testing/web-platform/tests/websockets/opening-handshake/003-sets-origin.worker.js
@@ -0,0 +1,17 @@
+importScripts("/resources/testharness.js");
+importScripts('../constants.sub.js');
+
+async_test(function(t) {
+ var ws = new WebSocket(SCHEME_DOMAIN_PORT+'/origin');
+ ws.onmessage = t.step_func(function(e) {
+ assert_equals(e.data, location.protocol+'//'+location.host);
+ ws.onclose = t.step_func(function(e) {
+ assert_equals(e.wasClean, true);
+ ws.onclose = t.unreached_func();
+ t.step_timeout(() => t.done(), 50);
+ })
+ ws.close();
+ })
+ ws.onerror = ws.onclose = t.unreached_func();
+}, "origin set in a Worker");
+done();
diff --git a/testing/web-platform/tests/websockets/opening-handshake/003.html b/testing/web-platform/tests/websockets/opening-handshake/003.html
new file mode 100644
index 0000000000..1fc7535d50
--- /dev/null
+++ b/testing/web-platform/tests/websockets/opening-handshake/003.html
@@ -0,0 +1,27 @@
+<!doctype html>
+<meta charset=utf-8>
+<title>WebSockets: origin</title>
+<meta name="timeout" content="long">
+<script src=/resources/testharness.js></script>
+<script src=/resources/testharnessreport.js></script>
+<script src=../constants.sub.js></script>
+<meta name="variant" content="?default">
+<meta name="variant" content="?wss">
+<div id=log></div>
+<script>
+async_test(function(t) {
+ const url = SCHEME_DOMAIN_PORT+'/origin',
+ ws = new WebSocket(url.replace("://", "://天気の良い日."));
+ ws.onmessage = t.step_func(function(e) {
+ assert_equals(e.origin, new URL(url).origin.replace("://", "://xn--n8j6ds53lwwkrqhv28a."))
+ assert_equals(e.data, location.protocol+'//'+location.host);
+ ws.onclose = t.step_func(function(e) {
+ assert_equals(e.wasClean, true);
+ ws.onclose = t.unreached_func();
+ t.step_timeout(() => t.done(), 50);
+ })
+ ws.close();
+ })
+ ws.onerror = ws.onclose = t.unreached_func();
+});
+</script>
diff --git a/testing/web-platform/tests/websockets/opening-handshake/005.html b/testing/web-platform/tests/websockets/opening-handshake/005.html
new file mode 100644
index 0000000000..dcbd8dfebb
--- /dev/null
+++ b/testing/web-platform/tests/websockets/opening-handshake/005.html
@@ -0,0 +1,25 @@
+<!doctype html>
+<title>WebSockets: response header and close frame in same packet</title>
+<script src=/resources/testharness.js></script>
+<script src=/resources/testharnessreport.js></script>
+<script src=../constants.sub.js></script>
+<meta name="variant" content="?default">
+<meta name="variant" content="?wss">
+<div id=log></div>
+<script>
+async_test(function(t) {
+ var ws = new WebSocket(SCHEME_DOMAIN_PORT+'/simple_handshake');
+ ws.onmessage = t.unreached_func();
+ ws.onopen = t.step_func(function(e) {
+ ws.onclose = t.step_func(function(e) {
+ assert_equals(e.wasClean, true);
+ assert_equals(e.code, 1001);
+ assert_equals(e.reason, 'PASS');
+ ws.onclose = t.unreached_func('onclose should not be called twice');
+ t.step_timeout(() => t.done(), 50);
+ })
+ ws.close();
+ })
+ ws.onclose = t.unreached_func('onclose should not be called before onopen');
+});
+</script>
diff --git a/testing/web-platform/tests/websockets/opening-handshake/006.html b/testing/web-platform/tests/websockets/opening-handshake/006.html
new file mode 100644
index 0000000000..304069037c
--- /dev/null
+++ b/testing/web-platform/tests/websockets/opening-handshake/006.html
@@ -0,0 +1,58 @@
+<!doctype html>
+<title>WebSockets: Serialized connection attempts</title>
+<meta name="timeout" content="long">
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<script src="../constants.sub.js"></script>
+<meta name="variant" content="?default">
+<meta name="variant" content="?wss">
+<div id="log"></div>
+<script>
+async_test(function(t) {
+ const paths = ['/invalid1', '/invalid2', '/invalid3', '/echo']; // /echo is valid
+ let currentTestIndex = 0;
+ let isPreviousConnectionClosed = true;
+
+ function testNextPath() {
+ if (currentTestIndex < paths.length) {
+ t.step(function() {
+ assert_true(isPreviousConnectionClosed, "Previous connection should be closed before attempting a new one");
+ isPreviousConnectionClosed = false;
+
+ const path = paths[currentTestIndex];
+ const ws = new WebSocket(SCHEME_DOMAIN_PORT + path);
+
+ ws.onclose = t.step_func(function(e) {
+ if (path !== '/echo') {
+ assert_false(e.wasClean, "Connection should fail uncleanly for path: " + path);
+ } else {
+ assert_true(e.wasClean, "Connection to /echo should close cleanly");
+ }
+ isPreviousConnectionClosed = true;
+ currentTestIndex++;
+ t.step_timeout(testNextPath, 0); // Schedule the next test
+ });
+
+ ws.onopen = t.step_func(function() {
+ if (path === '/echo') {
+ assert_true(true, "Connection to /echo should succeed");
+ ws.close();
+ } else {
+ t.unreached_func("Invalid path should not succeed");
+ }
+ });
+
+ ws.onerror = t.step_func(function() {
+ if (path === '/echo') {
+ t.unreached_func("Connection to /echo should not encounter an error");
+ } // otherwise failure is expected
+ });
+ });
+ } else {
+ t.done();
+ }
+ }
+
+ testNextPath();
+});
+</script>