2010-04-29 13:11:23 -07:00
|
|
|
/* Any copyright is dedicated to the Public Domain.
|
|
|
|
* http://creativecommons.org/publicdomain/zero/1.0/
|
|
|
|
*/
|
|
|
|
|
2010-05-26 13:46:10 -07:00
|
|
|
Components.utils.import("resource://gre/modules/NetUtil.jsm");
|
|
|
|
|
2010-04-29 13:11:23 -07:00
|
|
|
// This verifies that add-ons can be disabled and enabled.
|
|
|
|
|
|
|
|
var addon1 = {
|
|
|
|
id: "addon1@tests.mozilla.org",
|
|
|
|
version: "1.0",
|
|
|
|
name: "Test 1",
|
2010-05-26 08:10:57 -07:00
|
|
|
optionsURL: "chrome://foo/content/options.xul",
|
|
|
|
aboutURL: "chrome://foo/content/about.xul",
|
2010-04-29 13:11:23 -07:00
|
|
|
iconURL: "chrome://foo/content/icon.png",
|
|
|
|
targetApplications: [{
|
|
|
|
id: "xpcshell@tests.mozilla.org",
|
|
|
|
minVersion: "1",
|
|
|
|
maxVersion: "1"
|
|
|
|
}]
|
|
|
|
};
|
|
|
|
|
|
|
|
const profileDir = gProfD.clone();
|
|
|
|
profileDir.append("extensions");
|
|
|
|
|
2010-05-26 13:46:10 -07:00
|
|
|
var gIconURL = null;
|
|
|
|
|
2010-04-29 13:11:23 -07:00
|
|
|
// Sets up the profile by installing an add-on.
|
|
|
|
function run_test() {
|
|
|
|
do_test_pending();
|
|
|
|
createAppInfo("xpcshell@tests.mozilla.org", "XPCShell", "1", "1.9.2");
|
|
|
|
|
2010-07-14 10:13:26 -07:00
|
|
|
startupManager();
|
2010-04-29 13:11:23 -07:00
|
|
|
|
2010-04-26 10:49:19 -07:00
|
|
|
AddonManager.getAddonByID("addon1@tests.mozilla.org", function(a1) {
|
2010-04-29 13:11:23 -07:00
|
|
|
do_check_eq(a1, null);
|
2010-04-07 11:05:03 -07:00
|
|
|
do_check_not_in_crash_annotation(addon1.id, addon1.version);
|
2010-04-29 13:11:23 -07:00
|
|
|
|
|
|
|
var dest = profileDir.clone();
|
|
|
|
dest.append("addon1@tests.mozilla.org");
|
|
|
|
writeInstallRDFToDir(addon1, dest);
|
2010-05-26 13:46:10 -07:00
|
|
|
// Add a fake icon to the extension
|
|
|
|
dest.append("icon.png");
|
|
|
|
dest.create(AM_Ci.nsIFile.NORMAL_FILE_TYPE, 0644);
|
|
|
|
gIconURL = NetUtil.newURI(dest);
|
2010-04-29 13:11:23 -07:00
|
|
|
|
2010-07-14 10:13:26 -07:00
|
|
|
restartManager();
|
2010-04-29 13:11:23 -07:00
|
|
|
|
2010-04-26 10:49:19 -07:00
|
|
|
AddonManager.getAddonByID("addon1@tests.mozilla.org", function(newa1) {
|
2010-04-29 13:11:23 -07:00
|
|
|
do_check_neq(newa1, null);
|
|
|
|
do_check_true(newa1.isActive);
|
|
|
|
do_check_false(newa1.userDisabled);
|
2010-05-26 08:10:57 -07:00
|
|
|
do_check_eq(newa1.aboutURL, "chrome://foo/content/about.xul");
|
|
|
|
do_check_eq(newa1.optionsURL, "chrome://foo/content/options.xul");
|
2010-04-29 13:11:23 -07:00
|
|
|
do_check_eq(newa1.iconURL, "chrome://foo/content/icon.png");
|
|
|
|
do_check_true(isExtensionInAddonsList(profileDir, newa1.id));
|
|
|
|
do_check_true(hasFlag(newa1.permissions, AddonManager.PERM_CAN_DISABLE));
|
|
|
|
do_check_false(hasFlag(newa1.permissions, AddonManager.PERM_CAN_ENABLE));
|
2010-09-01 10:02:28 -07:00
|
|
|
do_check_eq(newa1.operationsRequiringRestart, AddonManager.OP_NEEDS_RESTART_DISABLE |
|
|
|
|
AddonManager.OP_NEEDS_RESTART_UNINSTALL);
|
2010-04-07 11:05:03 -07:00
|
|
|
do_check_in_crash_annotation(addon1.id, addon1.version);
|
2010-04-29 13:11:23 -07:00
|
|
|
|
|
|
|
run_test_1();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
// Disabling an add-on should work
|
|
|
|
function run_test_1() {
|
|
|
|
prepare_test({
|
|
|
|
"addon1@tests.mozilla.org": [
|
|
|
|
"onDisabling"
|
|
|
|
]
|
|
|
|
});
|
|
|
|
|
2010-04-26 10:49:19 -07:00
|
|
|
AddonManager.getAddonByID("addon1@tests.mozilla.org", function(a1) {
|
2010-07-26 10:34:06 -07:00
|
|
|
do_check_neq(a1.operationsRequiringRestart &
|
|
|
|
AddonManager.OP_NEEDS_RESTART_DISABLE, 0);
|
2010-04-29 13:11:23 -07:00
|
|
|
a1.userDisabled = true;
|
2010-05-26 08:10:57 -07:00
|
|
|
do_check_eq(a1.aboutURL, "chrome://foo/content/about.xul");
|
|
|
|
do_check_eq(a1.optionsURL, "chrome://foo/content/options.xul");
|
|
|
|
do_check_eq(a1.iconURL, "chrome://foo/content/icon.png");
|
2010-04-29 13:11:23 -07:00
|
|
|
do_check_false(hasFlag(a1.permissions, AddonManager.PERM_CAN_DISABLE));
|
|
|
|
do_check_true(hasFlag(a1.permissions, AddonManager.PERM_CAN_ENABLE));
|
2010-09-01 10:02:28 -07:00
|
|
|
do_check_eq(a1.operationsRequiringRestart, AddonManager.OP_NEEDS_RESTART_DISABLE |
|
|
|
|
AddonManager.OP_NEEDS_RESTART_UNINSTALL);
|
2010-04-07 11:05:03 -07:00
|
|
|
do_check_in_crash_annotation(addon1.id, addon1.version);
|
2010-04-29 13:11:23 -07:00
|
|
|
|
|
|
|
ensure_test_completed();
|
|
|
|
|
2010-04-26 10:49:19 -07:00
|
|
|
AddonManager.getAddonsWithOperationsByTypes(null, function(list) {
|
2010-04-29 13:11:23 -07:00
|
|
|
do_check_eq(list.length, 1);
|
|
|
|
do_check_eq(list[0].id, "addon1@tests.mozilla.org");
|
|
|
|
|
2010-07-14 10:13:26 -07:00
|
|
|
restartManager();
|
2010-04-29 13:11:23 -07:00
|
|
|
|
2010-04-26 10:49:19 -07:00
|
|
|
AddonManager.getAddonByID("addon1@tests.mozilla.org", function(newa1) {
|
2010-04-29 13:11:23 -07:00
|
|
|
do_check_neq(newa1, null);
|
|
|
|
do_check_false(newa1.isActive);
|
|
|
|
do_check_true(newa1.userDisabled);
|
2010-05-26 08:10:57 -07:00
|
|
|
do_check_eq(newa1.aboutURL, null);
|
|
|
|
do_check_eq(newa1.optionsURL, null);
|
2010-05-26 13:46:10 -07:00
|
|
|
do_check_eq(newa1.iconURL, gIconURL.spec);
|
2010-04-29 13:11:23 -07:00
|
|
|
do_check_false(isExtensionInAddonsList(profileDir, newa1.id));
|
|
|
|
do_check_false(hasFlag(newa1.permissions, AddonManager.PERM_CAN_DISABLE));
|
|
|
|
do_check_true(hasFlag(newa1.permissions, AddonManager.PERM_CAN_ENABLE));
|
2010-09-01 10:02:28 -07:00
|
|
|
do_check_eq(newa1.operationsRequiringRestart, AddonManager.OP_NEEDS_RESTART_ENABLE);
|
2010-04-07 11:05:03 -07:00
|
|
|
do_check_not_in_crash_annotation(addon1.id, addon1.version);
|
2010-04-29 13:11:23 -07:00
|
|
|
|
|
|
|
run_test_2();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
// Enabling an add-on should work.
|
|
|
|
function run_test_2() {
|
|
|
|
prepare_test({
|
|
|
|
"addon1@tests.mozilla.org": [
|
|
|
|
"onEnabling"
|
|
|
|
]
|
|
|
|
});
|
|
|
|
|
2010-04-26 10:49:19 -07:00
|
|
|
AddonManager.getAddonByID("addon1@tests.mozilla.org", function(a1) {
|
2010-04-29 13:11:23 -07:00
|
|
|
a1.userDisabled = false;
|
2010-05-26 08:10:57 -07:00
|
|
|
do_check_eq(a1.aboutURL, null);
|
|
|
|
do_check_eq(a1.optionsURL, null);
|
2010-05-26 13:46:10 -07:00
|
|
|
do_check_eq(a1.iconURL, gIconURL.spec);
|
2010-04-29 13:11:23 -07:00
|
|
|
do_check_true(hasFlag(a1.permissions, AddonManager.PERM_CAN_DISABLE));
|
|
|
|
do_check_false(hasFlag(a1.permissions, AddonManager.PERM_CAN_ENABLE));
|
2010-09-01 10:02:28 -07:00
|
|
|
do_check_eq(a1.operationsRequiringRestart, AddonManager.OP_NEEDS_RESTART_ENABLE);
|
2010-04-29 13:11:23 -07:00
|
|
|
|
|
|
|
ensure_test_completed();
|
|
|
|
|
2010-04-26 10:49:19 -07:00
|
|
|
AddonManager.getAddonsWithOperationsByTypes(null, function(list) {
|
2010-04-29 13:11:23 -07:00
|
|
|
do_check_eq(list.length, 1);
|
|
|
|
do_check_eq(list[0].id, "addon1@tests.mozilla.org");
|
|
|
|
|
2010-07-14 10:13:26 -07:00
|
|
|
restartManager();
|
2010-04-29 13:11:23 -07:00
|
|
|
|
2010-04-26 10:49:19 -07:00
|
|
|
AddonManager.getAddonByID("addon1@tests.mozilla.org", function(newa1) {
|
2010-04-29 13:11:23 -07:00
|
|
|
do_check_neq(newa1, null);
|
|
|
|
do_check_true(newa1.isActive);
|
|
|
|
do_check_false(newa1.userDisabled);
|
2010-05-26 08:10:57 -07:00
|
|
|
do_check_eq(newa1.aboutURL, "chrome://foo/content/about.xul");
|
|
|
|
do_check_eq(newa1.optionsURL, "chrome://foo/content/options.xul");
|
|
|
|
do_check_eq(newa1.iconURL, "chrome://foo/content/icon.png");
|
2010-04-29 13:11:23 -07:00
|
|
|
do_check_true(isExtensionInAddonsList(profileDir, newa1.id));
|
|
|
|
do_check_true(hasFlag(newa1.permissions, AddonManager.PERM_CAN_DISABLE));
|
|
|
|
do_check_false(hasFlag(newa1.permissions, AddonManager.PERM_CAN_ENABLE));
|
2010-09-01 10:02:28 -07:00
|
|
|
do_check_eq(newa1.operationsRequiringRestart, AddonManager.OP_NEEDS_RESTART_DISABLE |
|
|
|
|
AddonManager.OP_NEEDS_RESTART_UNINSTALL);
|
2010-04-07 11:05:03 -07:00
|
|
|
do_check_in_crash_annotation(addon1.id, addon1.version);
|
2010-04-29 13:11:23 -07:00
|
|
|
|
|
|
|
run_test_3();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
// Disabling then enabling withut restart should fire onOperationCancelled.
|
|
|
|
function run_test_3() {
|
|
|
|
prepare_test({
|
|
|
|
"addon1@tests.mozilla.org": [
|
|
|
|
"onDisabling"
|
|
|
|
]
|
|
|
|
});
|
|
|
|
|
2010-04-26 10:49:19 -07:00
|
|
|
AddonManager.getAddonByID("addon1@tests.mozilla.org", function(a1) {
|
2010-04-29 13:11:23 -07:00
|
|
|
a1.userDisabled = true;
|
|
|
|
ensure_test_completed();
|
|
|
|
prepare_test({
|
|
|
|
"addon1@tests.mozilla.org": [
|
|
|
|
"onOperationCancelled"
|
|
|
|
]
|
|
|
|
});
|
|
|
|
a1.userDisabled = false;
|
|
|
|
do_check_true(hasFlag(a1.permissions, AddonManager.PERM_CAN_DISABLE));
|
|
|
|
do_check_false(hasFlag(a1.permissions, AddonManager.PERM_CAN_ENABLE));
|
|
|
|
|
|
|
|
ensure_test_completed();
|
|
|
|
|
2010-07-14 10:13:26 -07:00
|
|
|
restartManager();
|
2010-04-29 13:11:23 -07:00
|
|
|
|
2010-04-26 10:49:19 -07:00
|
|
|
AddonManager.getAddonByID("addon1@tests.mozilla.org", function(newa1) {
|
2010-04-29 13:11:23 -07:00
|
|
|
do_check_neq(newa1, null);
|
|
|
|
do_check_true(newa1.isActive);
|
|
|
|
do_check_false(newa1.userDisabled);
|
2010-05-26 08:10:57 -07:00
|
|
|
do_check_eq(newa1.aboutURL, "chrome://foo/content/about.xul");
|
|
|
|
do_check_eq(newa1.optionsURL, "chrome://foo/content/options.xul");
|
|
|
|
do_check_eq(newa1.iconURL, "chrome://foo/content/icon.png");
|
2010-04-29 13:11:23 -07:00
|
|
|
do_check_true(isExtensionInAddonsList(profileDir, newa1.id));
|
|
|
|
do_check_true(hasFlag(newa1.permissions, AddonManager.PERM_CAN_DISABLE));
|
|
|
|
do_check_false(hasFlag(newa1.permissions, AddonManager.PERM_CAN_ENABLE));
|
|
|
|
|
|
|
|
do_test_finished();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|