michael@0: /* This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: const Cc = Components.classes; michael@0: const Ci = Components.interfaces; michael@0: michael@0: const nsIBLS = Ci.nsIBlocklistService; michael@0: michael@0: var PLUGINS = [{ michael@0: // blocklisted - default severity michael@0: name: "test_bug514327_1", michael@0: version: "5", michael@0: disabled: false, michael@0: blocklisted: false michael@0: }, michael@0: { michael@0: // outdated - severity of "0" michael@0: name: "test_bug514327_2", michael@0: version: "5", michael@0: disabled: false, michael@0: blocklisted: false michael@0: }, michael@0: { michael@0: // outdated - severity of "0" michael@0: name: "test_bug514327_3", michael@0: version: "5", michael@0: disabled: false, michael@0: blocklisted: false michael@0: }, michael@0: { michael@0: // not blocklisted, not outdated michael@0: name: "test_bug514327_4", michael@0: version: "5", michael@0: disabled: false, michael@0: blocklisted: false, michael@0: outdated: false michael@0: }]; michael@0: michael@0: michael@0: function run_test() { michael@0: createAppInfo("xpcshell@tests.mozilla.org", "XPCShell", "1", "1.9"); michael@0: michael@0: copyBlocklistToProfile(do_get_file("data/test_bug514327_1.xml")); michael@0: michael@0: var blocklist = Cc["@mozilla.org/extensions/blocklist;1"].getService(nsIBLS); michael@0: michael@0: // blocked (sanity check) michael@0: do_check_true(blocklist.getPluginBlocklistState(PLUGINS[0], "1", "1.9") == nsIBLS.STATE_BLOCKED); michael@0: michael@0: // outdated michael@0: do_check_true(blocklist.getPluginBlocklistState(PLUGINS[1], "1", "1.9") == nsIBLS.STATE_OUTDATED); michael@0: michael@0: // outdated michael@0: do_check_true(blocklist.getPluginBlocklistState(PLUGINS[2], "1", "1.9") == nsIBLS.STATE_OUTDATED); michael@0: michael@0: // not blocked michael@0: do_check_true(blocklist.getPluginBlocklistState(PLUGINS[3], "1", "1.9") == nsIBLS.STATE_NOT_BLOCKED); michael@0: }