2010-04-08 12:28:10 -07:00
|
|
|
/* Any copyright is dedicated to the Public Domain.
|
|
|
|
* http://creativecommons.org/publicdomain/zero/1.0/
|
|
|
|
*/
|
|
|
|
|
|
|
|
// Tests that extensions installed through the registry work as expected
|
|
|
|
createAppInfo("xpcshell@tests.mozilla.org", "XPCShell", "1", "1.9.2");
|
|
|
|
|
2010-04-07 11:08:32 -07:00
|
|
|
// Enable loading extensions from the user and system scopes
|
|
|
|
Services.prefs.setIntPref("extensions.enabledScopes",
|
|
|
|
AddonManager.SCOPE_PROFILE + AddonManager.SCOPE_USER +
|
|
|
|
AddonManager.SCOPE_SYSTEM);
|
|
|
|
|
2010-04-08 12:28:10 -07:00
|
|
|
var addon1 = {
|
|
|
|
id: "addon1@tests.mozilla.org",
|
|
|
|
version: "1.0",
|
|
|
|
name: "Test 1",
|
|
|
|
targetApplications: [{
|
|
|
|
id: "xpcshell@tests.mozilla.org",
|
|
|
|
minVersion: "1",
|
|
|
|
maxVersion: "1"
|
|
|
|
}]
|
|
|
|
};
|
|
|
|
|
|
|
|
var addon2 = {
|
|
|
|
id: "addon2@tests.mozilla.org",
|
|
|
|
version: "2.0",
|
|
|
|
name: "Test 2",
|
|
|
|
targetApplications: [{
|
|
|
|
id: "xpcshell@tests.mozilla.org",
|
|
|
|
minVersion: "1",
|
|
|
|
maxVersion: "2"
|
|
|
|
}]
|
|
|
|
};
|
|
|
|
|
|
|
|
const addon1Dir = gProfD.clone();
|
|
|
|
addon1Dir.append("addon1");
|
|
|
|
writeInstallRDFToDir(addon1, addon1Dir);
|
|
|
|
const addon2Dir = gProfD.clone();
|
|
|
|
addon2Dir.append("addon2");
|
|
|
|
writeInstallRDFToDir(addon2, addon2Dir);
|
|
|
|
|
|
|
|
function run_test() {
|
|
|
|
// This test only works where there is a registry.
|
|
|
|
if (!("nsIWindowsRegKey" in AM_Ci))
|
|
|
|
return;
|
|
|
|
|
|
|
|
do_test_pending();
|
|
|
|
|
|
|
|
run_test_1();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Tests whether basic registry install works
|
|
|
|
function run_test_1() {
|
|
|
|
MockRegistry.setValue(AM_Ci.nsIWindowsRegKey.ROOT_KEY_LOCAL_MACHINE,
|
|
|
|
"SOFTWARE\\Mozilla\\XPCShell\\Extensions",
|
|
|
|
"addon1@tests.mozilla.org", addon1Dir.path);
|
|
|
|
MockRegistry.setValue(AM_Ci.nsIWindowsRegKey.ROOT_KEY_CURRENT_USER,
|
|
|
|
"SOFTWARE\\Mozilla\\XPCShell\\Extensions",
|
|
|
|
"addon2@tests.mozilla.org", addon2Dir.path);
|
|
|
|
|
2010-07-14 10:13:26 -07:00
|
|
|
startupManager();
|
2010-04-08 12:28:10 -07:00
|
|
|
|
2010-04-26 10:49:19 -07:00
|
|
|
AddonManager.getAddonsByIDs(["addon1@tests.mozilla.org",
|
|
|
|
"addon2@tests.mozilla.org"], function([a1, a2]) {
|
2010-04-08 12:28:10 -07:00
|
|
|
do_check_neq(a1, null);
|
|
|
|
do_check_true(a1.isActive);
|
|
|
|
do_check_false(hasFlag(a1.permissions, AddonManager.PERM_CAN_UNINSTALL));
|
2010-04-07 11:08:32 -07:00
|
|
|
do_check_eq(a1.scope, AddonManager.SCOPE_SYSTEM);
|
|
|
|
|
2010-04-08 12:28:10 -07:00
|
|
|
do_check_neq(a2, null);
|
|
|
|
do_check_true(a2.isActive);
|
|
|
|
do_check_false(hasFlag(a2.permissions, AddonManager.PERM_CAN_UNINSTALL));
|
2010-04-07 11:08:32 -07:00
|
|
|
do_check_eq(a2.scope, AddonManager.SCOPE_USER);
|
2010-04-08 12:28:10 -07:00
|
|
|
|
|
|
|
run_test_2();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
// Tests whether uninstalling from the registry works
|
|
|
|
function run_test_2() {
|
|
|
|
MockRegistry.setValue(AM_Ci.nsIWindowsRegKey.ROOT_KEY_LOCAL_MACHINE,
|
|
|
|
"SOFTWARE\\Mozilla\\XPCShell\\Extensions",
|
|
|
|
"addon1@tests.mozilla.org", null);
|
|
|
|
MockRegistry.setValue(AM_Ci.nsIWindowsRegKey.ROOT_KEY_CURRENT_USER,
|
|
|
|
"SOFTWARE\\Mozilla\\XPCShell\\Extensions",
|
|
|
|
"addon2@tests.mozilla.org", null);
|
|
|
|
|
2010-07-14 10:13:26 -07:00
|
|
|
restartManager();
|
2010-04-08 12:28:10 -07:00
|
|
|
|
2010-04-26 10:49:19 -07:00
|
|
|
AddonManager.getAddonsByIDs(["addon1@tests.mozilla.org",
|
|
|
|
"addon2@tests.mozilla.org"], function([a1, a2]) {
|
2010-04-08 12:28:10 -07:00
|
|
|
do_check_eq(a1, null);
|
|
|
|
do_check_eq(a2, null);
|
|
|
|
|
|
|
|
run_test_3();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
// Checks that the ID in the registry must match that in the install manifest
|
|
|
|
function run_test_3() {
|
|
|
|
MockRegistry.setValue(AM_Ci.nsIWindowsRegKey.ROOT_KEY_LOCAL_MACHINE,
|
|
|
|
"SOFTWARE\\Mozilla\\XPCShell\\Extensions",
|
|
|
|
"addon1@tests.mozilla.org", addon2Dir.path);
|
|
|
|
MockRegistry.setValue(AM_Ci.nsIWindowsRegKey.ROOT_KEY_CURRENT_USER,
|
|
|
|
"SOFTWARE\\Mozilla\\XPCShell\\Extensions",
|
|
|
|
"addon2@tests.mozilla.org", addon1Dir.path);
|
|
|
|
|
2010-07-14 10:13:26 -07:00
|
|
|
restartManager();
|
2010-04-08 12:28:10 -07:00
|
|
|
|
2010-04-26 10:49:19 -07:00
|
|
|
AddonManager.getAddonsByIDs(["addon1@tests.mozilla.org",
|
|
|
|
"addon2@tests.mozilla.org"], function([a1, a2]) {
|
2010-04-08 12:28:10 -07:00
|
|
|
do_check_eq(a1, null);
|
|
|
|
do_check_eq(a2, null);
|
|
|
|
|
|
|
|
// Restarting with bad items in the registry should not force an EM restart
|
2010-07-14 10:13:26 -07:00
|
|
|
restartManager();
|
2010-04-08 12:28:10 -07:00
|
|
|
|
|
|
|
run_test_4();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
// Tests whether an extension's ID can change without its directory changing
|
|
|
|
function run_test_4() {
|
|
|
|
MockRegistry.setValue(AM_Ci.nsIWindowsRegKey.ROOT_KEY_LOCAL_MACHINE,
|
|
|
|
"SOFTWARE\\Mozilla\\XPCShell\\Extensions",
|
|
|
|
"addon1@tests.mozilla.org", null);
|
|
|
|
MockRegistry.setValue(AM_Ci.nsIWindowsRegKey.ROOT_KEY_CURRENT_USER,
|
|
|
|
"SOFTWARE\\Mozilla\\XPCShell\\Extensions",
|
|
|
|
"addon2@tests.mozilla.org", null);
|
|
|
|
|
2010-07-14 10:13:26 -07:00
|
|
|
restartManager();
|
2010-04-08 12:28:10 -07:00
|
|
|
|
|
|
|
MockRegistry.setValue(AM_Ci.nsIWindowsRegKey.ROOT_KEY_LOCAL_MACHINE,
|
|
|
|
"SOFTWARE\\Mozilla\\XPCShell\\Extensions",
|
|
|
|
"addon1@tests.mozilla.org", addon1Dir.path);
|
2010-07-14 10:13:26 -07:00
|
|
|
restartManager();
|
2010-04-08 12:28:10 -07:00
|
|
|
|
|
|
|
MockRegistry.setValue(AM_Ci.nsIWindowsRegKey.ROOT_KEY_LOCAL_MACHINE,
|
|
|
|
"SOFTWARE\\Mozilla\\XPCShell\\Extensions",
|
|
|
|
"addon1@tests.mozilla.org", null);
|
|
|
|
MockRegistry.setValue(AM_Ci.nsIWindowsRegKey.ROOT_KEY_CURRENT_USER,
|
|
|
|
"SOFTWARE\\Mozilla\\XPCShell\\Extensions",
|
|
|
|
"addon2@tests.mozilla.org", addon1Dir.path);
|
|
|
|
writeInstallRDFToDir(addon2, addon1Dir);
|
|
|
|
|
2010-07-14 10:13:26 -07:00
|
|
|
restartManager();
|
2010-04-08 12:28:10 -07:00
|
|
|
|
2010-04-26 10:49:19 -07:00
|
|
|
AddonManager.getAddonsByIDs(["addon1@tests.mozilla.org",
|
|
|
|
"addon2@tests.mozilla.org"], function([a1, a2]) {
|
2010-04-08 12:28:10 -07:00
|
|
|
do_check_eq(a1, null);
|
|
|
|
do_check_neq(a2, null);
|
|
|
|
|
|
|
|
do_test_finished();
|
|
|
|
});
|
|
|
|
}
|