mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
118 lines
3.9 KiB
JavaScript
118 lines
3.9 KiB
JavaScript
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
*/
|
|
|
|
const XULAPPINFO_CONTRACTID = "@mozilla.org/xre/app-info;1";
|
|
const XULAPPINFO_CID = Components.ID("{c763b610-9d49-455a-bbd2-ede71682a1ac}");
|
|
|
|
Components.utils.import("resource://gre/modules/XPCOMUtils.jsm");
|
|
Components.utils.import("resource://gre/modules/Services.jsm");
|
|
|
|
let gAppInfo = null;
|
|
|
|
function createAppInfo(id, name, version, platformVersion) {
|
|
gAppInfo = {
|
|
// nsIXULAppInfo
|
|
vendor: "Mozilla",
|
|
name: name,
|
|
ID: id,
|
|
version: version,
|
|
appBuildID: "2007010101",
|
|
platformVersion: platformVersion ? platformVersion : "1.0",
|
|
platformBuildID: "2007010101",
|
|
|
|
// nsIXULRuntime
|
|
inSafeMode: false,
|
|
logConsoleErrors: true,
|
|
OS: "XPCShell",
|
|
XPCOMABI: "noarch-spidermonkey",
|
|
invalidateCachesOnRestart: function invalidateCachesOnRestart() {
|
|
// Do nothing
|
|
},
|
|
|
|
// nsICrashReporter
|
|
annotations: {},
|
|
|
|
annotateCrashReport: function(key, data) {
|
|
this.annotations[key] = data;
|
|
},
|
|
|
|
QueryInterface: XPCOMUtils.generateQI([Ci.nsIXULAppInfo,
|
|
Ci.nsIXULRuntime,
|
|
Ci.nsICrashReporter,
|
|
Ci.nsISupports])
|
|
};
|
|
|
|
let XULAppInfoFactory = {
|
|
createInstance: function (outer, iid) {
|
|
if (outer != null)
|
|
throw Components.results.NS_ERROR_NO_AGGREGATION;
|
|
return gAppInfo.QueryInterface(iid);
|
|
}
|
|
};
|
|
let registrar = Components.manager.QueryInterface(Ci.nsIComponentRegistrar);
|
|
registrar.registerFactory(XULAPPINFO_CID, "XULAppInfo",
|
|
XULAPPINFO_CONTRACTID, XULAppInfoFactory);
|
|
}
|
|
|
|
let gDirSvc = Cc["@mozilla.org/file/directory_service;1"]
|
|
.getService(Ci.nsIProperties);
|
|
|
|
let gPluginHost = null;
|
|
|
|
function test_expected_permission_string(aPermString) {
|
|
gPluginHost.reloadPlugins(false);
|
|
let plugin = get_test_plugintag();
|
|
do_check_false(plugin == null);
|
|
do_check_eq(gPluginHost.getPermissionStringForType("application/x-test"),
|
|
aPermString);
|
|
}
|
|
|
|
function run_test() {
|
|
do_check_true(gIsWindows || gIsOSX || gIsLinux);
|
|
do_check_true(!(gIsWindows && gIsOSX) && !(gIsWindows && gIsLinux) &&
|
|
!(gIsOSX && gIsLinux));
|
|
|
|
createAppInfo("xpcshell@tests.mozilla.org", "XPCShell", "1", "1.9");
|
|
gPluginHost = Cc["@mozilla.org/plugin/host;1"].getService(Ci.nsIPluginHost);
|
|
|
|
let expectedDefaultPermissionString = null;
|
|
if (gIsWindows) expectedDefaultPermissionString = "plugin:nptest";
|
|
if (gIsOSX) expectedDefaultPermissionString = "plugin:test";
|
|
if (gIsLinux) expectedDefaultPermissionString = "plugin:libnptest";
|
|
test_expected_permission_string(expectedDefaultPermissionString);
|
|
|
|
let suffix = get_platform_specific_plugin_suffix();
|
|
let pluginFile = get_test_plugin_no_symlink();
|
|
let pluginDir = pluginFile.parent;
|
|
pluginFile.copyTo(null, "npblah235" + suffix);
|
|
let pluginCopy = pluginDir.clone();
|
|
pluginCopy.append("npblah235" + suffix);
|
|
let tempDir = do_get_tempdir();
|
|
pluginFile.moveTo(tempDir, null);
|
|
test_expected_permission_string("plugin:npblah");
|
|
|
|
pluginCopy.moveTo(null, "npasdf-3.2.2" + suffix);
|
|
test_expected_permission_string("plugin:npasdf");
|
|
|
|
pluginCopy.moveTo(null, "npasdf_##29387!{}{[][" + suffix);
|
|
test_expected_permission_string("plugin:npasdf");
|
|
|
|
pluginCopy.moveTo(null, "npqtplugin7" + suffix);
|
|
test_expected_permission_string("plugin:npqtplugin");
|
|
|
|
pluginCopy.moveTo(null, "npFoo3d" + suffix);
|
|
test_expected_permission_string("plugin:npfoo3d");
|
|
|
|
pluginCopy.moveTo(null, "NPSWF32_11_5_502_146" + suffix);
|
|
test_expected_permission_string("plugin:npswf");
|
|
|
|
pluginCopy.remove(true);
|
|
pluginFile.moveTo(pluginDir, null);
|
|
test_expected_permission_string(expectedDefaultPermissionString);
|
|
|
|
// Clean up
|
|
Services.prefs.clearUserPref("plugin.importedState");
|
|
}
|