diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
commit | 6bf0a5cb5034a7e684dcc3500e841785237ce2dd (patch) | |
tree | a68f146d7fa01f0134297619fbe7e33db084e0aa /dom/base/test/test_messagemanager_send_principal.html | |
parent | Initial commit. (diff) | |
download | thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.tar.xz thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.zip |
Adding upstream version 1:115.7.0.upstream/1%115.7.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'dom/base/test/test_messagemanager_send_principal.html')
-rw-r--r-- | dom/base/test/test_messagemanager_send_principal.html | 108 |
1 files changed, 108 insertions, 0 deletions
diff --git a/dom/base/test/test_messagemanager_send_principal.html b/dom/base/test/test_messagemanager_send_principal.html new file mode 100644 index 0000000000..31cc700317 --- /dev/null +++ b/dom/base/test/test_messagemanager_send_principal.html @@ -0,0 +1,108 @@ +<!DOCTYPE HTML> +<html> +<head> + <title>Test for Principal in MessageManager</title> + <script src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script> + <link rel="stylesheet" type="text/css" href="chrome://mochikit/content/tests/SimpleTest/test.css"?> +</head> +<body> + + <script type="application/javascript"> + "use strict"; + + SimpleTest.waitForExplicitFinish(); + + const childFrameURL = + "data:text/html,<!DOCTYPE HTML><html><body></body></html>"; + + function childFrameScript() { + "use strict"; + + + addMessageListener("test:content", function(message) { + sendAsyncMessage("test:result", "is nsIPrincipal: " + + (message.data instanceof Ci.nsIPrincipal ? "OK" : "KO")); + + sendAsyncMessage("test:result", "principal.origin: " + + ("origin" in message.data ? "OK" : "KO")); + }); + + addMessageListener("test:system", function(message) { + sendAsyncMessage("test:result", "isSystemPrincipal: " + + (message.data.isSystemPrincipal ? "OK" : "KO")); + }); + + addMessageListener("test:ep", function(message) { + sendAsyncMessage("test:result", "expanded principal: " + + (message.data.isExpandedPrincipal ? "OK" : "KO")); + sendAsyncMessage("test:result", "correct origin: " + + (message.data.origin == "[Expanded Principal [http://bar.example.com, http://foo.example.com]]" ? "OK" : "KO")); + }); + + addMessageListener("test:null", function(message) { + sendAsyncMessage("test:result", "is nsIPrincipal: " + + (message.data instanceof Ci.nsIPrincipal ? "OK" : "KO")); + + sendAsyncMessage("test:result", "isNullPrincipal: " + + (message.data.isNullPrincipal ? "OK" : "KO")); + sendAsyncMessage("test:result", "DONE"); + }); + } + + function runTests() { + ok("Browser prefs set."); + + let iframe = document.createXULElement("browser"); + iframe.setAttribute("type", "content"); + iframe.setAttribute("forcemessagemanager", "true"); + iframe.id = "iframe"; + iframe.src = childFrameURL; + + let sb = new Cu.Sandbox(['http://foo.example.com', 'http://bar.example.com']); + let ep = Cu.getObjectPrincipal(sb); + + iframe.addEventListener("load", function() { + ok(true, "Got iframe load event."); + + let mm = iframe.messageManager; + mm.addMessageListener("test:result", function(message) { + // We need to wrap to access message.json, and unwrap to do the + // identity check. + var msg = SpecialPowers.unwrap(SpecialPowers.wrap(message).data); + if (/OK$/.exec(msg)) { + ok(true, msg); + } else if(/KO$/.exec(msg)) { + ok(true, false); + } else if (/DONE/.exec(msg)) { + SimpleTest.finish(); + } + }); + mm.loadFrameScript("data:,(" + childFrameScript.toString() + ")();", + false); + + mm.sendAsyncMessage("test:content", window.document.nodePrincipal); + + let system = Services.scriptSecurityManager.getSystemPrincipal(); + mm.sendAsyncMessage("test:system", system); + + mm.sendAsyncMessage("test:ep", ep); + + let nullP = Services.scriptSecurityManager.createNullPrincipal({}); + mm.sendAsyncMessage("test:null", nullP); + }); + + document.body.appendChild(iframe); + } + + addEventListener("load", function() { + info("Got load event."); + + SpecialPowers.pushPrefEnv({ + "set": [ + ["browser.pagethumbnails.capturing_disabled", true] + ] + }, runTests); + }); + </script> +</body> +</html> |