mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-23 00:47:31 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
76
dom/plugins/test/unit/test_persist_in_prefs.js
Normal file
76
dom/plugins/test/unit/test_persist_in_prefs.js
Normal file
|
|
@ -0,0 +1,76 @@
|
|||
/* 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/.
|
||||
*/
|
||||
|
||||
Components.utils.import("resource://gre/modules/Services.jsm");
|
||||
|
||||
// Plugin registry uses different field delimeters on different platforms
|
||||
var DELIM = mozinfo.os == "win" ? "|" : ":";
|
||||
|
||||
var gProfD = do_get_profile_startup();
|
||||
|
||||
function run_test() {
|
||||
allow_all_plugins();
|
||||
|
||||
do_check_true(gIsWindows || gIsOSX || gIsLinux);
|
||||
|
||||
let file = get_test_plugin_no_symlink();
|
||||
if (!file)
|
||||
do_throw("Plugin library not found");
|
||||
|
||||
const pluginDir = file.parent;
|
||||
const tempDir = do_get_tempdir();
|
||||
const suffix = get_platform_specific_plugin_suffix();
|
||||
const pluginName = file.leafName.substring(0, file.leafName.length - suffix.length).toLowerCase();
|
||||
const pluginHost = Cc["@mozilla.org/plugin/host;1"].getService(Ci.nsIPluginHost);
|
||||
const statePref = "plugin.state." + pluginName;
|
||||
|
||||
// Initialise profile folder
|
||||
do_get_profile();
|
||||
|
||||
let plugin = get_test_plugintag();
|
||||
if (!plugin)
|
||||
do_throw("Plugin tag not found");
|
||||
|
||||
plugin.enabledState = Ci.nsIPluginTag.STATE_DISABLED;
|
||||
|
||||
// prepare a copy of the plugin and backup the original
|
||||
file.copyTo(null, "nptestcopy" + suffix);
|
||||
let copy = pluginDir.clone();
|
||||
copy.append("nptestcopy" + suffix);
|
||||
file.moveTo(tempDir, null);
|
||||
|
||||
// test that the settings persist through a few variations of test-plugin names
|
||||
let testNames = [
|
||||
pluginName + "2",
|
||||
pluginName.toUpperCase() + "_11_5_42_2323",
|
||||
pluginName + "-5.2.7"
|
||||
];
|
||||
testNames.forEach(function(leafName) {
|
||||
dump("Checking " + leafName + ".\n");
|
||||
copy.moveTo(null, leafName + suffix);
|
||||
pluginHost.reloadPlugins(false);
|
||||
plugin = get_test_plugintag();
|
||||
do_check_false(plugin == null);
|
||||
do_check_true(plugin.disabled);
|
||||
do_check_false(plugin.clicktoplay);
|
||||
});
|
||||
|
||||
// check that the state persists even if the plugin is not always present
|
||||
copy.moveTo(tempDir, null);
|
||||
pluginHost.reloadPlugins(false);
|
||||
copy.moveTo(pluginDir, null);
|
||||
pluginHost.reloadPlugins(false);
|
||||
|
||||
plugin = get_test_plugintag();
|
||||
do_check_false(plugin == null);
|
||||
do_check_true(plugin.disabled);
|
||||
do_check_false(plugin.clicktoplay);
|
||||
|
||||
// clean up
|
||||
Services.prefs.clearUserPref(statePref);
|
||||
Services.prefs.clearUserPref("plugin.importedState");
|
||||
copy.remove(true);
|
||||
file.moveTo(pluginDir, null);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue