summaryrefslogtreecommitdiffstats
path: root/toolkit/mozapps/webextensions/test/xpcshell/test_switch_os.js
diff options
context:
space:
mode:
authorMatt A. Tobin <email@mattatobin.com>2018-02-10 02:49:12 -0500
committerMatt A. Tobin <email@mattatobin.com>2018-02-10 02:49:12 -0500
commit4fb11cd5966461bccc3ed1599b808237be6b0de9 (patch)
treed7f0ccd49cebb3544d52635ff1bd6ed4d763823f /toolkit/mozapps/webextensions/test/xpcshell/test_switch_os.js
parentf164d9124708b50789dbb6959e1de96cc5697c48 (diff)
downloadUXP-4fb11cd5966461bccc3ed1599b808237be6b0de9.tar
UXP-4fb11cd5966461bccc3ed1599b808237be6b0de9.tar.gz
UXP-4fb11cd5966461bccc3ed1599b808237be6b0de9.tar.lz
UXP-4fb11cd5966461bccc3ed1599b808237be6b0de9.tar.xz
UXP-4fb11cd5966461bccc3ed1599b808237be6b0de9.zip
Move WebExtensions enabled Add-ons Manager
Diffstat (limited to 'toolkit/mozapps/webextensions/test/xpcshell/test_switch_os.js')
-rw-r--r--toolkit/mozapps/webextensions/test/xpcshell/test_switch_os.js52
1 files changed, 52 insertions, 0 deletions
diff --git a/toolkit/mozapps/webextensions/test/xpcshell/test_switch_os.js b/toolkit/mozapps/webextensions/test/xpcshell/test_switch_os.js
new file mode 100644
index 000000000..552d7cfae
--- /dev/null
+++ b/toolkit/mozapps/webextensions/test/xpcshell/test_switch_os.js
@@ -0,0 +1,52 @@
+/* Any copyright is dedicated to the Public Domain.
+ * http://creativecommons.org/publicdomain/zero/1.0/
+ */
+
+Components.utils.import("resource://gre/modules/AppConstants.jsm");
+
+const ID = "bootstrap1@tests.mozilla.org";
+
+BootstrapMonitor.init();
+
+const profileDir = gProfD.clone();
+profileDir.append("extensions");
+
+createAppInfo("xpcshell@tests.mozilla.org", "XPCShell", "1", "1.9.2");
+
+add_task(function*() {
+ startupManager();
+
+ let install = yield new Promise(resolve => AddonManager.getInstallForFile(do_get_addon("test_bootstrap1_1"), resolve));
+ yield promiseCompleteAllInstalls([install]);
+
+ let addon = yield promiseAddonByID(ID);
+ do_check_neq(addon, null);
+
+ BootstrapMonitor.checkAddonStarted(ID);
+ do_check_false(addon.userDisabled);
+ do_check_true(addon.isActive);
+
+ yield promiseShutdownManager();
+
+ BootstrapMonitor.checkAddonNotStarted(ID);
+
+ let jData = loadJSON(gExtensionsJSON);
+
+ for (let addonInstance of jData.addons) {
+ if (addonInstance.id == ID) {
+ // Set to something that would be an invalid descriptor for this platform
+ addonInstance.descriptor = AppConstants.platform == "win" ? "/foo/bar" : "C:\\foo\\bar";
+ }
+ }
+
+ saveJSON(jData, gExtensionsJSON);
+
+ startupManager();
+
+ addon = yield promiseAddonByID(ID);
+ do_check_neq(addon, null);
+
+ BootstrapMonitor.checkAddonStarted(ID);
+ do_check_false(addon.userDisabled);
+ do_check_true(addon.isActive);
+});