diff options
author | wolfbeast <mcwerewolf@gmail.com> | 2018-06-04 15:50:03 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@gmail.com> | 2018-06-04 15:50:03 +0200 |
commit | e3b7744bee37c3d4a026d2193bed5e9439c40ff3 (patch) | |
tree | f3f7b07ca9bd78bf7ac2d76dd55b61b2a8bb549e /application/basilisk/tools/mozscreenshots/head.js | |
parent | cbce4f0b6a337f8250b62cae028f1c6d4cce51df (diff) | |
parent | 031afcafe288bf0f46c0c5caae20dd3db8bd0297 (diff) | |
download | UXP-e3b7744bee37c3d4a026d2193bed5e9439c40ff3.tar UXP-e3b7744bee37c3d4a026d2193bed5e9439c40ff3.tar.gz UXP-e3b7744bee37c3d4a026d2193bed5e9439c40ff3.tar.lz UXP-e3b7744bee37c3d4a026d2193bed5e9439c40ff3.tar.xz UXP-e3b7744bee37c3d4a026d2193bed5e9439c40ff3.zip |
Merge branch 'move-basilisk'
Diffstat (limited to 'application/basilisk/tools/mozscreenshots/head.js')
-rw-r--r-- | application/basilisk/tools/mozscreenshots/head.js | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/application/basilisk/tools/mozscreenshots/head.js b/application/basilisk/tools/mozscreenshots/head.js new file mode 100644 index 000000000..c1702ab08 --- /dev/null +++ b/application/basilisk/tools/mozscreenshots/head.js @@ -0,0 +1,53 @@ +/* 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/. */ + +/* exported TestRunner, shouldCapture */ + +"use strict"; + +const {AddonWatcher} = Cu.import("resource://gre/modules/AddonWatcher.jsm", {}); +const chromeRegistry = Cc["@mozilla.org/chrome/chrome-registry;1"].getService(Ci.nsIChromeRegistry); +const env = Cc["@mozilla.org/process/environment;1"].getService(Ci.nsIEnvironment); +const EXTENSION_DIR = "chrome://mochitests/content/extensions/mozscreenshots/browser/"; + +let TestRunner; + +function* setup() { + requestLongerTimeout(10); + + info("installing extension temporarily"); + let chromeURL = Services.io.newURI(EXTENSION_DIR, null, null); + let dir = chromeRegistry.convertChromeURL(chromeURL).QueryInterface(Ci.nsIFileURL).file; + yield AddonManager.installTemporaryAddon(dir); + + info("Checking for mozscreenshots extension"); + return new Promise((resolve) => { + AddonManager.getAddonByID("mozscreenshots@mozilla.org", function(aAddon) { + isnot(aAddon, null, "The mozscreenshots extension should be installed"); + AddonWatcher.ignoreAddonPermanently(aAddon.id); + TestRunner = Cu.import("chrome://mozscreenshots/content/TestRunner.jsm", {}).TestRunner; + resolve(); + }); + }); +} + +function shouldCapture() { + // Try pushes only capture in browser_screenshots.js with MOZSCREENSHOTS_SETS. + if (env.get("MOZSCREENSHOTS_SETS")) { + ok(true, "MOZSCREENSHOTS_SETS was specified so only capture what was " + + "requested (in browser_screenshots.js)"); + return false; + } + + // Automation isn't able to schedule test jobs to only run on nightlies so we handle it here + // (see also: bug 1116275). + let capture = AppConstants.MOZ_UPDATE_CHANNEL == "nightly" || + AppConstants.SOURCE_REVISION_URL == ""; + if (!capture) { + ok(true, "Capturing is disabled for this MOZ_UPDATE_CHANNEL or REPO"); + } + return capture; +} + +add_task(setup); |