diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /dom/tests/browser/browser_ConsoleAPI_originAttributes.js | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'dom/tests/browser/browser_ConsoleAPI_originAttributes.js')
-rw-r--r-- | dom/tests/browser/browser_ConsoleAPI_originAttributes.js | 80 |
1 files changed, 80 insertions, 0 deletions
diff --git a/dom/tests/browser/browser_ConsoleAPI_originAttributes.js b/dom/tests/browser/browser_ConsoleAPI_originAttributes.js new file mode 100644 index 000000000..e24640bbd --- /dev/null +++ b/dom/tests/browser/browser_ConsoleAPI_originAttributes.js @@ -0,0 +1,80 @@ +/* Any copyright is dedicated to the Public Domain. + http://creativecommons.org/publicdomain/zero/1.0/ */ + +const ConsoleAPIStorage = Cc["@mozilla.org/consoleAPI-storage;1"] + .getService(Ci.nsIConsoleAPIStorage); + +const FAKE_ADDON_ID = "test-webext-addon@mozilla.org"; +const EXPECTED_CONSOLE_ID = `addon/${FAKE_ADDON_ID}`; +const EXPECTED_CONSOLE_MESSAGE_CONTENT = "fake-webext-addon-test-log-message"; +const ConsoleObserver = { + QueryInterface: XPCOMUtils.generateQI([Ci.nsIObserver]), + + init() { + Services.obs.addObserver(this, "console-api-log-event", false); + }, + + uninit() { + Services.obs.removeObserver(this, "console-api-log-event", false); + }, + + observe(aSubject, aTopic, aData) { + if (aTopic == "console-api-log-event") { + let consoleAPIMessage = aSubject.wrappedJSObject; + + is(consoleAPIMessage.arguments[0], EXPECTED_CONSOLE_MESSAGE_CONTENT, + "the consoleAPIMessage contains the expected message"); + + ok(consoleAPIMessage.originAttributes, "the consoleAPImessage contains originattributes"); + is(consoleAPIMessage.originAttributes.addonId, FAKE_ADDON_ID, + "the consoleAPImessage's originAttributes contains the expected addonId"); + + let cachedMessages = ConsoleAPIStorage.getEvents().filter((msg) => { + return msg.originAttributes && msg.originAttributes.addonId == FAKE_ADDON_ID; + }); + + is(cachedMessages.length, 1, "found the expected cached console messages from the addon"); + is(cachedMessages[0] && cachedMessages[0].originAttributes.addonId, FAKE_ADDON_ID, + "the cached message's originAttributes contains the expected addonId"); + + finish(); + } + } +}; + +function test() +{ + ConsoleObserver.init(); + + waitForExplicitFinish(); + + let uuidGenerator = Cc["@mozilla.org/uuid-generator;1"].getService(Ci.nsIUUIDGenerator); + let uuid = uuidGenerator.generateUUID().number; + uuid = uuid.slice(1, -1); // Strip { and } off the UUID. + let baseURI = Services.io.newURI("about:blank", null, null); + let originAttributes = {addonId: FAKE_ADDON_ID}; + let principal = Services.scriptSecurityManager + .createCodebasePrincipal(baseURI, originAttributes); + + let chromeWebNav = Services.appShell.createWindowlessBrowser(true); + let interfaceRequestor = chromeWebNav.QueryInterface(Ci.nsIInterfaceRequestor); + let docShell = interfaceRequestor.getInterface(Ci.nsIDocShell); + docShell.createAboutBlankContentViewer(principal); + + info("fake webextension docShell created"); + + registerCleanupFunction(function() { + if (chromeWebNav) { + chromeWebNav.close(); + chromeWebNav = null; + } + ConsoleObserver.uninit(); + }); + + let window = docShell.contentViewer.DOMDocument.defaultView; + window.eval(`console.log("${EXPECTED_CONSOLE_MESSAGE_CONTENT}");`); + chromeWebNav.close(); + chromeWebNav = null; + + info("fake webextension page logged a console api message"); +} |