diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
commit | 36d22d82aa202bb199967e9512281e9a53db42c9 (patch) | |
tree | 105e8c98ddea1c1e4784a60a5a6410fa416be2de /dom/base/test/test_postMessages_broadcastChannel.html | |
parent | Initial commit. (diff) | |
download | firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip |
Adding upstream version 115.7.0esr.upstream/115.7.0esrupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'dom/base/test/test_postMessages_broadcastChannel.html')
-rw-r--r-- | dom/base/test/test_postMessages_broadcastChannel.html | 167 |
1 files changed, 167 insertions, 0 deletions
diff --git a/dom/base/test/test_postMessages_broadcastChannel.html b/dom/base/test/test_postMessages_broadcastChannel.html new file mode 100644 index 0000000000..a3864d0710 --- /dev/null +++ b/dom/base/test/test_postMessages_broadcastChannel.html @@ -0,0 +1,167 @@ +<!DOCTYPE HTML> +<html> +<head> + <title>Test for postMessages cloning/transferring objects</title> + <script src="/tests/SimpleTest/SimpleTest.js"></script> + <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" /> + <script src="common_postMessages.js"></script> +</head> + +<body> +<input id="fileList" type="file"></input> +<script type="application/javascript"> + +// PostMessage for BroadcastChannel +tests.push(function test_broadcastChannel() { + info("Testing broadcastChannel"); + + var bc1 = new BroadcastChannel('postMessagesTest'); + var bc2 = new BroadcastChannel('postMessagesTest'); + + var resolve; + + function resolvePromise(data) { + if (!resolve) { + ok(false, "Unexpected message!"); + return; + } + + let tmp = resolve; + resolve = null; + tmp(data); + } + + bc2.onmessage = function(e) { + resolvePromise({ data: e.data, ports: [], error: false }); + } + + bc2.onmessageerror = function(e) { + resolvePromise({ error: true }); + } + + runTests({ + clonableObjectsEveryWhere: true, + clonableObjectsSameProcess: true, + transferableObjects: false, + send(what, ports) { + return new Promise(function(r, rr) { + if (ports.length) { + rr(); + return; + } + + resolve = r; + bc1.postMessage(what); + }); + }, + + finished() { + bc1.close(); + bc2.close(); + next(); + } + }); +}); + +// PostMessage for BroadcastChannel in workers +tests.push(function test_broadcastChannel_inWorkers() { + info("Testing broadcastChannel in Workers"); + + var bc = new BroadcastChannel('postMessagesTest_inWorkers'); + var resolve; + + var w = new Worker('worker_postMessages.js'); + w.postMessage('broadcastChannel'); + w.onmessage = function(e) { + is(e.data, 'ok', "Worker ready!"); + + w.onmessage = function(e1) { + if (!resolve) { + ok(false, "Unexpected message!"); + return; + } + + let tmp = resolve; + resolve = null; + tmp({ data: e1.data, ports: e1.ports, error: e1.data === "error" }); + } + + runTests({ + clonableObjectsEveryWhere: true, + clonableObjectsSameProcess: true, + transferableObjects: false, + send(what, ports) { + return new Promise(function(r, rr) { + if (ports.length) { + rr(); + return; + } + + resolve = r; + bc.postMessage(what); + }); + }, + + finished() { + bc.close(); + w.terminate(); + next(); + } + }); + } +}); + +// PostMessage for BroadcastChannel in SharedWorkers +tests.push(function test_broadcastChannel_inSharedWorkers() { + info("Testing broadcastChannel in SharedWorkers"); + + var bc = new BroadcastChannel('postMessagesTest_inWorkers'); + var resolve; + + var w = new SharedWorker('worker_postMessages.js'); + w.port.postMessage('broadcastChannel'); + w.port.onmessage = function(e) { + is(e.data, 'ok', "Worker ready!"); + + w.port.onmessage = function(e1) { + if (!resolve) { + ok(false, "Unexpected message!"); + return; + } + + let tmp = resolve; + resolve = null; + tmp({ data: e1.data, ports: e1.ports, error: e1.data === "error" }); + } + + runTests({ + clonableObjectsEveryWhere: true, + clonableObjectsSameProcess: false, + transferableObjects: false, + send(what, ports) { + return new Promise(function(r, rr) { + if (ports.length) { + rr(); + return; + } + + resolve = r; + bc.postMessage(what); + }); + }, + + finished() { + bc.close(); + w.port.postMessage("terminate"); + next(); + } + }); + } +}); + +SimpleTest.waitForExplicitFinish(); +next(); + +</script> +</body> +</html> |