blob: 552d7cfae1c99a358888edf9b7e148106b323d07 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
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);
});
|