2016-01-25 17:55:57 +03:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
2018-07-06 01:42:11 +03:00
|
|
|
/* globals ExtensionAPI */
|
|
|
|
|
2019-01-17 21:18:31 +03:00
|
|
|
const {AppConstants} = ChromeUtils.import("resource://gre/modules/AppConstants.jsm");
|
|
|
|
const {Services} = ChromeUtils.import("resource://gre/modules/Services.jsm");
|
2016-01-25 17:55:57 +03:00
|
|
|
|
2018-03-14 03:33:33 +03:00
|
|
|
function loadChromeScripts(win) {
|
|
|
|
Services.scriptloader.loadSubScript("chrome://mochikit/content/chrome-harness.js", win);
|
|
|
|
Services.scriptloader.loadSubScript("chrome://mochikit/content/mochitest-e10s-utils.js", win);
|
|
|
|
Services.scriptloader.loadSubScript("chrome://mochikit/content/browser-test.js", win);
|
|
|
|
}
|
|
|
|
|
2018-01-27 00:32:30 +03:00
|
|
|
// ///// Android ///////
|
2018-03-17 07:31:04 +03:00
|
|
|
|
|
|
|
const windowTracker = {
|
|
|
|
init() {
|
|
|
|
Services.obs.addObserver(this, "chrome-document-global-created");
|
|
|
|
},
|
|
|
|
|
|
|
|
async observe(window, topic, data) {
|
|
|
|
if (topic === "chrome-document-global-created") {
|
|
|
|
await new Promise(resolve =>
|
|
|
|
window.addEventListener("DOMContentLoaded", resolve, {once: true}));
|
|
|
|
|
|
|
|
let {document} = window;
|
|
|
|
let {documentURI} = document;
|
|
|
|
|
2018-08-21 18:33:26 +03:00
|
|
|
if (documentURI !== AppConstants.BROWSER_CHROME_URL) {
|
2018-03-14 03:33:33 +03:00
|
|
|
return;
|
2018-03-17 07:31:04 +03:00
|
|
|
}
|
2018-03-14 03:33:33 +03:00
|
|
|
loadChromeScripts(window);
|
2018-03-17 07:31:04 +03:00
|
|
|
}
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2018-07-06 01:42:11 +03:00
|
|
|
function androidStartup() {
|
2019-02-08 11:55:27 +03:00
|
|
|
// Bug 1526086 - we shouldn't need to do this, but otherwise we hang at
|
|
|
|
// shutdown trying to write the startup cache.
|
|
|
|
Services.obs.notifyObservers(null, "startupcache-invalidate");
|
2018-03-14 03:33:33 +03:00
|
|
|
// Only browser chrome tests need help starting.
|
|
|
|
let testRoot = Services.prefs.getStringPref("mochitest.testRoot", "");
|
|
|
|
if (testRoot.endsWith("/chrome")) {
|
2018-07-06 01:42:11 +03:00
|
|
|
// The initial window is created from browser startup, which races
|
|
|
|
// against extension initialization. If it has already been created,
|
|
|
|
// inject the test scripts now, otherwise wait for the browser window
|
|
|
|
// to show up.
|
|
|
|
let win = Services.wm.getMostRecentWindow("navigator:browser");
|
|
|
|
if (win) {
|
|
|
|
loadChromeScripts(win);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-03-14 03:33:33 +03:00
|
|
|
windowTracker.init();
|
2018-03-17 07:31:04 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-27 00:32:30 +03:00
|
|
|
// ///// Desktop ///////
|
2018-03-17 07:31:04 +03:00
|
|
|
|
2018-12-14 00:43:22 +03:00
|
|
|
// Special case for Thunderbird windows.
|
|
|
|
const IS_THUNDERBIRD = Services.appinfo.ID == "{3550f703-e582-4d05-9a08-453d09bdfdc6}";
|
|
|
|
const WINDOW_TYPE = IS_THUNDERBIRD ? "mail:3pane" : "navigator:browser";
|
|
|
|
|
2016-01-25 17:55:57 +03:00
|
|
|
var WindowListener = {
|
|
|
|
// browser-test.js is only loaded into the first window. Setup that
|
|
|
|
// needs to happen in all navigator:browser windows should go here.
|
2018-01-27 00:32:30 +03:00
|
|
|
setupWindow(win) {
|
2016-01-25 17:55:57 +03:00
|
|
|
win.nativeConsole = win.console;
|
2018-01-30 02:20:18 +03:00
|
|
|
ChromeUtils.defineModuleGetter(win, "console",
|
2016-01-25 17:55:57 +03:00
|
|
|
"resource://gre/modules/Console.jsm");
|
|
|
|
},
|
|
|
|
|
2018-01-27 00:32:30 +03:00
|
|
|
tearDownWindow(win) {
|
2016-01-25 17:55:57 +03:00
|
|
|
if (win.nativeConsole) {
|
|
|
|
win.console = win.nativeConsole;
|
|
|
|
win.nativeConsole = undefined;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2018-05-21 04:10:16 +03:00
|
|
|
onOpenWindow(xulWin) {
|
|
|
|
let win = xulWin.docShell.domWindow;
|
2016-01-25 17:55:57 +03:00
|
|
|
|
2017-01-25 09:01:52 +03:00
|
|
|
win.addEventListener("load", function() {
|
2018-12-14 00:43:22 +03:00
|
|
|
if (win.document.documentElement.getAttribute("windowtype") == WINDOW_TYPE) {
|
2016-01-25 17:55:57 +03:00
|
|
|
WindowListener.setupWindow(win);
|
|
|
|
}
|
2017-01-25 09:01:52 +03:00
|
|
|
}, {once: true});
|
2018-10-19 15:55:39 +03:00
|
|
|
},
|
2018-01-27 00:32:30 +03:00
|
|
|
};
|
2016-01-25 17:55:57 +03:00
|
|
|
|
|
|
|
function loadMochitest(e) {
|
|
|
|
let flavor = e.detail[0];
|
|
|
|
let url = e.detail[1];
|
|
|
|
|
2018-12-14 00:43:22 +03:00
|
|
|
let win = Services.wm.getMostRecentWindow(WINDOW_TYPE);
|
2018-01-27 00:32:30 +03:00
|
|
|
win.removeEventListener("mochitest-load", loadMochitest);
|
2016-01-25 17:55:57 +03:00
|
|
|
|
|
|
|
// for mochitest-plain, navigating to the url is all we need
|
2018-12-14 00:43:22 +03:00
|
|
|
if (!IS_THUNDERBIRD) {
|
2019-03-15 08:10:17 +03:00
|
|
|
win.loadURI(url, null, null, null, null, null, null,
|
2018-12-14 00:43:22 +03:00
|
|
|
Services.scriptSecurityManager.getSystemPrincipal());
|
|
|
|
}
|
2016-01-25 17:55:57 +03:00
|
|
|
if (flavor == "mochitest") {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
WindowListener.setupWindow(win);
|
|
|
|
Services.wm.addListener(WindowListener);
|
|
|
|
|
2018-03-14 03:33:33 +03:00
|
|
|
loadChromeScripts(win);
|
2016-01-25 17:55:57 +03:00
|
|
|
}
|
|
|
|
|
2018-07-06 01:42:11 +03:00
|
|
|
this.mochikit = class extends ExtensionAPI {
|
|
|
|
onStartup() {
|
|
|
|
let aomStartup = Cc["@mozilla.org/addons/addon-manager-startup;1"]
|
|
|
|
.getService(Ci.amIAddonManagerStartup);
|
|
|
|
const manifestURI = Services.io.newURI("manifest.json", null, this.extension.rootURI);
|
|
|
|
const targetURL = this.extension.rootURI.resolve("content/");
|
|
|
|
this.chromeHandle = aomStartup.registerChrome(manifestURI, [
|
|
|
|
["content", "mochikit", targetURL],
|
|
|
|
]);
|
|
|
|
|
|
|
|
if (AppConstants.platform == "android") {
|
|
|
|
androidStartup();
|
|
|
|
} else {
|
2018-12-14 00:43:22 +03:00
|
|
|
let win = Services.wm.getMostRecentWindow(WINDOW_TYPE);
|
2018-07-06 01:42:11 +03:00
|
|
|
// wait for event fired from start_desktop.js containing the
|
|
|
|
// suite and url to load
|
|
|
|
win.addEventListener("mochitest-load", loadMochitest);
|
|
|
|
}
|
2018-03-17 07:31:04 +03:00
|
|
|
}
|
2016-01-25 17:55:57 +03:00
|
|
|
|
2018-07-06 01:42:11 +03:00
|
|
|
onShutdown() {
|
|
|
|
if (AppConstants.platform != "android") {
|
2018-12-14 00:43:22 +03:00
|
|
|
for (let win of Services.wm.getEnumerator(WINDOW_TYPE)) {
|
2018-07-06 01:42:11 +03:00
|
|
|
WindowListener.tearDownWindow(win);
|
|
|
|
}
|
|
|
|
|
|
|
|
Services.wm.removeListener(WindowListener);
|
2018-03-17 07:31:04 +03:00
|
|
|
}
|
2018-03-21 21:51:03 +03:00
|
|
|
|
2018-07-06 01:42:11 +03:00
|
|
|
this.chromeHandle.destruct();
|
|
|
|
this.chromeHandle = null;
|
2018-03-17 07:31:04 +03:00
|
|
|
}
|
2018-07-06 01:42:11 +03:00
|
|
|
};
|