mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
168 lines
4.2 KiB
JavaScript
168 lines
4.2 KiB
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
* http://creativecommons.org/publicdomain/zero/1.0/
|
|
*/
|
|
|
|
// This verifies that plugins exist and can be enabled and disabled.
|
|
var gID = null;
|
|
|
|
function run_test() {
|
|
do_test_pending();
|
|
createAppInfo("xpcshell@tests.mozilla.org", "XPCShell", "1", "1.9.2");
|
|
|
|
startupManager();
|
|
AddonManager.addAddonListener(AddonListener);
|
|
AddonManager.addInstallListener(InstallListener);
|
|
|
|
run_test_1();
|
|
}
|
|
|
|
// Finds the test plugin library
|
|
function get_test_plugin() {
|
|
var plugins = Services.dirsvc.get("CurProcD", AM_Ci.nsILocalFile);
|
|
plugins.append("plugins");
|
|
do_check_true(plugins.exists());
|
|
|
|
var plugin = plugins.clone();
|
|
// OSX plugin
|
|
plugin.append("Test.plugin");
|
|
if (plugin.exists())
|
|
return plugin;
|
|
|
|
plugin = plugins.clone();
|
|
// *nix plugin
|
|
plugin.append("libnptest.so");
|
|
if (plugin.exists())
|
|
return plugin;
|
|
|
|
// Windows plugin
|
|
plugin = plugins.clone();
|
|
plugin.append("nptest.dll");
|
|
if (plugin.exists())
|
|
return plugin;
|
|
|
|
return null;
|
|
}
|
|
|
|
function getFileSize(aFile) {
|
|
if (!aFile.isDirectory())
|
|
return aFile.fileSize;
|
|
|
|
let size = 0;
|
|
let entries = aFile.directoryEntries.QueryInterface(AM_Ci.nsIDirectoryEnumerator);
|
|
let entry;
|
|
while (entry = entries.nextFile)
|
|
size += getFileSize(entry);
|
|
entries.close();
|
|
return size;
|
|
}
|
|
|
|
// Tests that the test plugin exists
|
|
function run_test_1() {
|
|
var testPlugin = get_test_plugin();
|
|
do_check_neq(testPlugin, null);
|
|
|
|
AddonManager.getAddonsByTypes("plugin", function(addons) {
|
|
do_check_true(addons.length > 0);
|
|
|
|
addons.forEach(function(p) {
|
|
if (p.name == "Test Plug-in")
|
|
gID = p.id;
|
|
});
|
|
|
|
do_check_neq(gID, null);
|
|
|
|
AddonManager.getAddonByID(gID, function(p) {
|
|
do_check_neq(p, null);
|
|
do_check_eq(p.name, "Test Plug-in");
|
|
do_check_eq(p.description, "Plug-in for testing purposes.");
|
|
do_check_eq(p.creator, "");
|
|
do_check_eq(p.version, "1.0.0.0");
|
|
do_check_eq(p.type, "plugin");
|
|
do_check_false(p.userDisabled);
|
|
do_check_false(p.appDisabled);
|
|
do_check_true(p.isActive);
|
|
do_check_true(p.isCompatible);
|
|
do_check_true(p.providesUpdatesSecurely);
|
|
do_check_eq(p.blocklistState, 0);
|
|
do_check_eq(p.permissions, AddonManager.PERM_CAN_DISABLE);
|
|
do_check_eq(p.pendingOperations, 0);
|
|
do_check_true(p.size > 0);
|
|
do_check_eq(p.size, getFileSize(testPlugin));
|
|
do_check_true(p.updateDate > 0);
|
|
do_check_eq(p.updateDate.getTime(), testPlugin.lastModifiedTime);
|
|
do_check_eq(p.installDate.getTime(), testPlugin.lastModifiedTime);
|
|
|
|
// Work around the fact that on Linux source builds, if we're using
|
|
// symlinks (i.e. objdir), then Linux will see these as a different scope
|
|
// to non-symlinks.
|
|
// See Bug 562886 and Bug 568027.
|
|
if (testPlugin.isSymlink()) {
|
|
do_check_neq(p.scope, AddonManager.SCOPE_APPLICATION);
|
|
do_check_neq(p.scope, AddonManager.SCOPE_PROFILE);
|
|
} else {
|
|
do_check_eq(p.scope, AddonManager.SCOPE_APPLICATION);
|
|
}
|
|
do_check_true("isCompatibleWith" in p);
|
|
do_check_true("findUpdates" in p);
|
|
|
|
run_test_2(p);
|
|
});
|
|
});
|
|
}
|
|
|
|
// Tests that disabling a plugin works
|
|
function run_test_2(p) {
|
|
let test = {};
|
|
test[gID] = [
|
|
["onDisabling", false],
|
|
"onDisabled"
|
|
];
|
|
prepare_test(test);
|
|
|
|
p.userDisabled = true;
|
|
|
|
ensure_test_completed();
|
|
|
|
do_check_true(p.userDisabled);
|
|
do_check_false(p.appDisabled);
|
|
do_check_false(p.isActive);
|
|
|
|
AddonManager.getAddonByID(gID, function(p) {
|
|
do_check_neq(p, null);
|
|
do_check_true(p.userDisabled);
|
|
do_check_false(p.appDisabled);
|
|
do_check_false(p.isActive);
|
|
do_check_eq(p.name, "Test Plug-in");
|
|
|
|
run_test_3(p);
|
|
});
|
|
}
|
|
|
|
// Tests that enabling a plugin works
|
|
function run_test_3(p) {
|
|
let test = {};
|
|
test[gID] = [
|
|
["onEnabling", false],
|
|
"onEnabled"
|
|
];
|
|
prepare_test(test);
|
|
|
|
p.userDisabled = false;
|
|
|
|
ensure_test_completed();
|
|
|
|
do_check_false(p.userDisabled);
|
|
do_check_false(p.appDisabled);
|
|
do_check_true(p.isActive);
|
|
|
|
AddonManager.getAddonByID(gID, function(p) {
|
|
do_check_neq(p, null);
|
|
do_check_false(p.userDisabled);
|
|
do_check_false(p.appDisabled);
|
|
do_check_true(p.isActive);
|
|
do_check_eq(p.name, "Test Plug-in");
|
|
|
|
do_test_finished();
|
|
});
|
|
}
|