mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
195 lines
6.6 KiB
JavaScript
195 lines
6.6 KiB
JavaScript
|
/* ***** BEGIN LICENSE BLOCK *****
|
||
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
||
|
*
|
||
|
* The contents of this file are subject to the Mozilla Public License Version
|
||
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
||
|
* the License. You may obtain a copy of the License at
|
||
|
* http://www.mozilla.org/MPL/
|
||
|
*
|
||
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
||
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
||
|
* for the specific language governing rights and limitations under the
|
||
|
* License.
|
||
|
*
|
||
|
* The Original Code is mozilla.org code.
|
||
|
*
|
||
|
* The Initial Developer of the Original Code is
|
||
|
* Mozilla Corporation.
|
||
|
* Portions created by the Initial Developer are Copyright (C) 2009
|
||
|
* the Initial Developer. All Rights Reserved.
|
||
|
*
|
||
|
* Contributor(s):
|
||
|
* Blair McBride <bmcbride@mozilla.com> (Original Author)
|
||
|
*
|
||
|
* Alternatively, the contents of this file may be used under the terms of
|
||
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
||
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
||
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
||
|
* of those above. If you wish to allow use of your version of this file only
|
||
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
||
|
* use your version of this file under the terms of the MPL, indicate your
|
||
|
* decision by deleting the provisions above and replace them with the notice
|
||
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
||
|
* the provisions above, a recipient may use your version of this file under
|
||
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
||
|
*
|
||
|
* ***** END LICENSE BLOCK ***** */
|
||
|
|
||
|
do_load_httpd_js();
|
||
|
|
||
|
|
||
|
const nsIBLS = Ci.nsIBlocklistService;
|
||
|
const URI_EXTENSION_BLOCKLIST_DIALOG = "chrome://mozapps/content/extensions/blocklist.xul";
|
||
|
|
||
|
var gBlocklist = null;
|
||
|
var gPrefs = null;
|
||
|
var gTestserver = null;
|
||
|
|
||
|
var gNextTestPart = null;
|
||
|
|
||
|
|
||
|
var PLUGINS = [{
|
||
|
// Tests a plugin whose state goes from not-blocked, to outdated
|
||
|
name: "test_bug514327_outdated",
|
||
|
version: "5",
|
||
|
disabled: false,
|
||
|
blocklisted: false
|
||
|
}, {
|
||
|
// Used to trigger the blocklist dialog, which indicates the blocklist has updated
|
||
|
name: "test_bug514327_1",
|
||
|
version: "5",
|
||
|
disabled: false,
|
||
|
blocklisted: false
|
||
|
}, {
|
||
|
// Used to trigger the blocklist dialog, which indicates the blocklist has updated
|
||
|
name: "test_bug514327_2",
|
||
|
version: "5",
|
||
|
disabled: false,
|
||
|
blocklisted: false
|
||
|
} ];
|
||
|
|
||
|
|
||
|
// A fake plugin host for the blocklist service to use
|
||
|
var PluginHost = {
|
||
|
getPluginTags: function(countRef) {
|
||
|
countRef.value = PLUGINS.length;
|
||
|
return PLUGINS;
|
||
|
},
|
||
|
|
||
|
QueryInterface: function(iid) {
|
||
|
if (iid.equals(Ci.nsIPluginHost)
|
||
|
|| iid.equals(Ci.nsISupports))
|
||
|
return this;
|
||
|
|
||
|
throw Components.results.NS_ERROR_NO_INTERFACE;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
var PluginHostFactory = {
|
||
|
createInstance: function (outer, iid) {
|
||
|
if (outer != null)
|
||
|
throw Components.results.NS_ERROR_NO_AGGREGATION;
|
||
|
return PluginHost.QueryInterface(iid);
|
||
|
}
|
||
|
};
|
||
|
|
||
|
// Don't need the full interface, attempts to call other methods will just
|
||
|
// throw which is just fine
|
||
|
var WindowWatcher = {
|
||
|
openWindow: function(parent, url, name, features, arguments) {
|
||
|
// Should be called to list the newly blocklisted items
|
||
|
do_check_eq(url, URI_EXTENSION_BLOCKLIST_DIALOG);
|
||
|
// Should only include one item
|
||
|
do_check_eq(arguments.wrappedJSObject.list.length, 1);
|
||
|
// And that item should be the blocked plugin, not the outdated one
|
||
|
var item = arguments.wrappedJSObject.list[0];
|
||
|
do_check_true(item.item instanceof Ci.nsIPluginTag);
|
||
|
do_check_neq(item.name, "test_bug514327_outdated");
|
||
|
|
||
|
// Call the next test after the blocklist has finished up
|
||
|
do_timeout(0, gNextTestPart);
|
||
|
},
|
||
|
|
||
|
QueryInterface: function(iid) {
|
||
|
if (iid.equals(Ci.nsIWindowWatcher)
|
||
|
|| iid.equals(Ci.nsISupports))
|
||
|
return this;
|
||
|
|
||
|
throw Cr.NS_ERROR_NO_INTERFACE;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
var WindowWatcherFactory = {
|
||
|
createInstance: function createInstance(outer, iid) {
|
||
|
if (outer != null)
|
||
|
throw Components.results.NS_ERROR_NO_AGGREGATION;
|
||
|
return WindowWatcher.QueryInterface(iid);
|
||
|
}
|
||
|
};
|
||
|
|
||
|
var registrar = Components.manager.QueryInterface(Ci.nsIComponentRegistrar);
|
||
|
registrar.registerFactory(Components.ID("{721c3e73-969e-474b-a6dc-059fd288c428}"),
|
||
|
"Fake Plugin Host",
|
||
|
"@mozilla.org/plugin/host;1", PluginHostFactory);
|
||
|
registrar.registerFactory(Components.ID("{1dfeb90a-2193-45d5-9cb8-864928b2af55}"),
|
||
|
"Fake Window Watcher",
|
||
|
"@mozilla.org/embedcomp/window-watcher;1", WindowWatcherFactory);
|
||
|
|
||
|
|
||
|
function do_update_blocklist(aDatafile, aNextPart) {
|
||
|
gNextTestPart = aNextPart;
|
||
|
|
||
|
gPrefs.setCharPref("extensions.blocklist.url", "http://localhost:4444/data/" + aDatafile);
|
||
|
gBlocklist.QueryInterface(Ci.nsITimerCallback).notify(null);
|
||
|
}
|
||
|
|
||
|
function run_test() {
|
||
|
createAppInfo("xpcshell@tests.mozilla.org", "XPCShell", "1", "1.9");
|
||
|
|
||
|
gTestserver = new nsHttpServer();
|
||
|
gTestserver.registerDirectory("/data/", do_get_file("data"));
|
||
|
gTestserver.start(4444);
|
||
|
|
||
|
|
||
|
// initialize the blocklist with no entries
|
||
|
var source = do_get_file("data/test_bug514327_3_empty.xml");
|
||
|
source.copyTo(gProfD, "blocklist.xml");
|
||
|
|
||
|
gPrefs = Cc["@mozilla.org/preferences-service;1"].getService(Ci.nsIPrefBranch2);
|
||
|
gBlocklist = Cc["@mozilla.org/extensions/blocklist;1"].getService(nsIBLS);
|
||
|
|
||
|
// should NOT be marked as outdated by the blocklist
|
||
|
do_check_true(gBlocklist.getPluginBlocklistState(PLUGINS[0], "1", "1.9") == nsIBLS.STATE_NOT_BLOCKED);
|
||
|
|
||
|
do_test_pending();
|
||
|
|
||
|
// update blocklist with data that marks the plugin as outdated
|
||
|
do_update_blocklist("test_bug514327_3_outdated_1.xml", test_part_1);
|
||
|
}
|
||
|
|
||
|
function test_part_1() {
|
||
|
// plugin should now be marked as outdated
|
||
|
do_check_true(gBlocklist.getPluginBlocklistState(PLUGINS[0], "1", "1.9") == nsIBLS.STATE_OUTDATED);
|
||
|
// and the notifyUser pref should be set to true
|
||
|
do_check_true(gPrefs.getBoolPref("plugins.update.notifyUser"));
|
||
|
|
||
|
// preternd the user has been notified, reset the pref
|
||
|
gPrefs.setBoolPref("plugins.update.notifyUser", false);
|
||
|
|
||
|
// update blocklist with data that marks the plugin as outdated
|
||
|
do_update_blocklist("test_bug514327_3_outdated_2.xml", test_part_2);
|
||
|
}
|
||
|
|
||
|
function test_part_2() {
|
||
|
// plugin should still be marked as outdated
|
||
|
do_check_true(gBlocklist.getPluginBlocklistState(PLUGINS[0], "1", "1.9") == nsIBLS.STATE_OUTDATED);
|
||
|
// and the notifyUser pref should NOT be set to true, as the plugin was already outdated
|
||
|
do_check_false(gPrefs.getBoolPref("plugins.update.notifyUser"));
|
||
|
|
||
|
finish();
|
||
|
}
|
||
|
|
||
|
function finish() {
|
||
|
gTestserver.stop(do_test_finished);
|
||
|
}
|