diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
commit | 26a029d407be480d791972afb5975cf62c9360a6 (patch) | |
tree | f435a8308119effd964b339f76abb83a57c29483 /dom/websocket/tests/mochitest.toml | |
parent | Initial commit. (diff) | |
download | firefox-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 'dom/websocket/tests/mochitest.toml')
-rw-r--r-- | dom/websocket/tests/mochitest.toml | 124 |
1 files changed, 124 insertions, 0 deletions
diff --git a/dom/websocket/tests/mochitest.toml b/dom/websocket/tests/mochitest.toml new file mode 100644 index 0000000000..3d879abb55 --- /dev/null +++ b/dom/websocket/tests/mochitest.toml @@ -0,0 +1,124 @@ +[DEFAULT] +skip-if = [ + "http3", + "http2", +] +support-files = [ + "!/dom/events/test/event_leak_utils.js", + "file_websocket_basic_wsh.py", + "file_websocket_hello_wsh.py", + "file_websocket_http_resource.txt", + "file_websocket_permessage_deflate_wsh.py", + "file_websocket_permessage_deflate_disabled_wsh.py", + "file_websocket_permessage_deflate_rejected_wsh.py", + "file_websocket_permessage_deflate_params_wsh.py", + "file_websocket_wsh.py", + "websocket_helpers.js", + "websocket_tests.js", + "websocket_worker_helpers.js", +] + +["test_bug1081686.html"] + +["test_bug1384658.html"] +support-files = [ + "window_bug1384658.html", + "frame_bug1384658.html", + "file_bug1384658.html", +] + +["test_event_listener_leaks.html"] +support-files = ["file_websocket_bigBlob_wsh.py"] + +["test_websocket1.html"] + +["test_websocket2.html"] + +["test_websocket3.html"] + +["test_websocket4.html"] +skip-if = [ + "os == 'android'", # ssltunnel can't handle WSS scheme +] + +["test_websocket5.html"] +skip-if = [ + "os == 'android'", # ssltunnel can't handle WSS scheme +] + +["test_websocket_basic.html"] + +["test_websocket_bigBlob.html"] +support-files = ["file_websocket_bigBlob_wsh.py"] + +["test_websocket_hello.html"] + +["test_websocket_longString.html"] + +["test_websocket_mixed_content.html"] +scheme = "https" +support-files = [ + "iframe_websocket_wss.html", + "iframe_webworker_wss.html", +] +skip-if = [ + "os == 'android'", # ssltunnel can't handle WSS scheme +] + +["test_websocket_mixed_content_blob.html"] +scheme = "https" +support-files = ["window_websocket_wss.html"] +skip-if = [ + "os == 'android'", # ssltunnel can't handle WSS scheme +] + +["test_websocket_mixed_content_opener.html"] +scheme = "https" +skip-if = [ + "os == 'android'", # ssltunnel can't handle WSS scheme +] + +["test_websocket_no_duplicate_packet.html"] +scheme = "https" +skip-if = [ + "os == 'android'", # ssltunnel can't handle WSS scheme +] + +["test_websocket_permessage_deflate.html"] + +["test_websocket_sandbox.html"] +support-files = ["iframe_websocket_sandbox.html"] + +["test_websocket_sharedWorker.html"] +support-files = ["websocket_sharedWorker.js"] + +["test_worker_websocket1.html"] +support-files = ["websocket_worker1.js"] + +["test_worker_websocket2.html"] +support-files = ["websocket_worker2.js"] +skip-if = ["socketprocess_networking"] # bug 1787044 + +["test_worker_websocket3.html"] +support-files = ["websocket_worker3.js"] + +["test_worker_websocket4.html"] +support-files = ["websocket_worker4.js"] +skip-if = [ + "os == 'android'", # ssltunnel can't handle WSS scheme +] + +["test_worker_websocket5.html"] +support-files = ["websocket_worker5.js"] + +["test_worker_websocket_basic.html"] +support-files = ["websocket_basic_worker.js"] + +["test_worker_websocket_https.html"] +support-files = [ + "websocket_worker_https.html", + "websocket_https_worker.js", +] + +["test_worker_websocket_loadgroup.html"] +support-files = ["websocket_loadgroup_worker.js"] |