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 nsIBLS = Components.interfaces.nsIBlocklistService; michael@0: michael@0: var PLUGINS = [{ michael@0: // Normal blacklisted plugin, before an invalid regexp michael@0: name: "test_bug468528_1", michael@0: version: "5", michael@0: disabled: false, michael@0: blocklisted: false michael@0: }, michael@0: { michael@0: // Normal blacklisted plugin, with an invalid regexp michael@0: name: "test_bug468528_2", michael@0: version: "5", michael@0: disabled: false, michael@0: blocklisted: false michael@0: }, michael@0: { michael@0: // Normal blacklisted plugin, after an invalid regexp michael@0: name: "test_bug468528_3", michael@0: version: "5", michael@0: disabled: false, michael@0: blocklisted: false michael@0: }, michael@0: { michael@0: // Non-blocklisted plugin michael@0: name: "test_bug468528_4", michael@0: version: "5", michael@0: disabled: false, michael@0: blocklisted: 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: // We cannot force the blocklist to update so just copy our test list to the profile michael@0: copyBlocklistToProfile(do_get_file("data/test_bug468528.xml")); michael@0: michael@0: var blocklist = Components.classes["@mozilla.org/extensions/blocklist;1"] michael@0: .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: // not blocked - won't match due to invalid regexp michael@0: do_check_true(blocklist.getPluginBlocklistState(PLUGINS[1], "1", "1.9") == nsIBLS.STATE_NOT_BLOCKED); michael@0: michael@0: // blocked - the invalid regexp for the previous item shouldn't affect this one michael@0: do_check_true(blocklist.getPluginBlocklistState(PLUGINS[2], "1", "1.9") == nsIBLS.STATE_BLOCKED); michael@0: michael@0: // not blocked - the previous invalid regexp shouldn't act as a wildcard michael@0: do_check_true(blocklist.getPluginBlocklistState(PLUGINS[3], "1", "1.9") == nsIBLS.STATE_NOT_BLOCKED); michael@0: michael@0: }