forked from mirrors/gecko-dev
Differential Revision: https://phabricator.services.mozilla.com/D8389 --HG-- extra : moz-landing-system : lando
96 lines
3.2 KiB
JavaScript
96 lines
3.2 KiB
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
/* eslint-disable mozilla/no-arbitrary-setTimeout */
|
|
"use strict";
|
|
|
|
// There are shutdown issues for which multiple rejections are left uncaught.
|
|
// See bug 1018184 for resolving these issues.
|
|
const { PromiseTestUtils } = scopedCuImport("resource://testing-common/PromiseTestUtils.jsm");
|
|
PromiseTestUtils.whitelistRejectionsGlobally(/File closed/);
|
|
|
|
// Avoid test timeouts that can occur while waiting for the "addon-console-works" message.
|
|
requestLongerTimeout(2);
|
|
|
|
const ADDON_ID = "test-devtools-webextension@mozilla.org";
|
|
const ADDON_NAME = "test-devtools-webextension";
|
|
|
|
const {
|
|
BrowserToolboxProcess,
|
|
} = ChromeUtils.import("resource://devtools/client/framework/ToolboxProcess.jsm", {});
|
|
|
|
/**
|
|
* This test file ensures that the webextension addon developer toolbox:
|
|
* - when the debug button is clicked on a webextension, the opened toolbox
|
|
* has a working webconsole with the background page as default target;
|
|
*/
|
|
add_task(async function testWebExtensionsToolboxWebConsole() {
|
|
const addonFile = ExtensionTestCommon.generateXPI({
|
|
background: function() {
|
|
window.myWebExtensionAddonFunction = function() {
|
|
console.log("Background page function called",
|
|
this.browser.runtime.getManifest());
|
|
};
|
|
},
|
|
manifest: {
|
|
name: ADDON_NAME,
|
|
applications: {
|
|
gecko: {id: ADDON_ID},
|
|
},
|
|
},
|
|
});
|
|
registerCleanupFunction(() => addonFile.remove(false));
|
|
|
|
const {
|
|
tab, document, debugBtn,
|
|
} = await setupTestAboutDebuggingWebExtension(ADDON_NAME, addonFile);
|
|
|
|
// Be careful, this JS function is going to be executed in the addon toolbox,
|
|
// which lives in another process. So do not try to use any scope variable!
|
|
const env = Cc["@mozilla.org/process/environment;1"]
|
|
.getService(Ci.nsIEnvironment);
|
|
const testScript = function() {
|
|
/* eslint-disable no-undef */
|
|
function findMessages(hud, text, selector = ".message") {
|
|
const messages = hud.ui.outputNode.querySelectorAll(selector);
|
|
const elements = Array.prototype.filter.call(
|
|
messages,
|
|
(el) => el.textContent.includes(text)
|
|
);
|
|
return elements;
|
|
}
|
|
|
|
async function waitFor(condition) {
|
|
while (!condition()) {
|
|
await new Promise(done => window.setTimeout(done, 1000));
|
|
}
|
|
}
|
|
|
|
toolbox.selectTool("webconsole")
|
|
.then(async console => {
|
|
const { hud } = console;
|
|
const { jsterm } = hud;
|
|
const onMessage = waitFor(() => {
|
|
return findMessages(hud, "Background page function called").length > 0;
|
|
});
|
|
await jsterm.execute("myWebExtensionAddonFunction()");
|
|
await onMessage;
|
|
await toolbox.destroy();
|
|
})
|
|
.catch(e => dump("Exception from browser toolbox process: " + e + "\n"));
|
|
/* eslint-enable no-undef */
|
|
};
|
|
env.set("MOZ_TOOLBOX_TEST_SCRIPT", "new " + testScript);
|
|
registerCleanupFunction(() => {
|
|
env.set("MOZ_TOOLBOX_TEST_SCRIPT", "");
|
|
});
|
|
|
|
const onToolboxClose = BrowserToolboxProcess.once("close");
|
|
|
|
debugBtn.click();
|
|
|
|
await onToolboxClose;
|
|
ok(true, "Addon toolbox closed");
|
|
|
|
await uninstallAddon({document, id: ADDON_ID, name: ADDON_NAME});
|
|
await closeAboutDebugging(tab);
|
|
});
|