Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 4 | |
michael@0 | 5 | const nsIBLS = Components.interfaces.nsIBlocklistService; |
michael@0 | 6 | |
michael@0 | 7 | var PLUGINS = [{ |
michael@0 | 8 | // Normal blacklisted plugin, before an invalid regexp |
michael@0 | 9 | name: "test_bug468528_1", |
michael@0 | 10 | version: "5", |
michael@0 | 11 | disabled: false, |
michael@0 | 12 | blocklisted: false |
michael@0 | 13 | }, |
michael@0 | 14 | { |
michael@0 | 15 | // Normal blacklisted plugin, with an invalid regexp |
michael@0 | 16 | name: "test_bug468528_2", |
michael@0 | 17 | version: "5", |
michael@0 | 18 | disabled: false, |
michael@0 | 19 | blocklisted: false |
michael@0 | 20 | }, |
michael@0 | 21 | { |
michael@0 | 22 | // Normal blacklisted plugin, after an invalid regexp |
michael@0 | 23 | name: "test_bug468528_3", |
michael@0 | 24 | version: "5", |
michael@0 | 25 | disabled: false, |
michael@0 | 26 | blocklisted: false |
michael@0 | 27 | }, |
michael@0 | 28 | { |
michael@0 | 29 | // Non-blocklisted plugin |
michael@0 | 30 | name: "test_bug468528_4", |
michael@0 | 31 | version: "5", |
michael@0 | 32 | disabled: false, |
michael@0 | 33 | blocklisted: false |
michael@0 | 34 | }]; |
michael@0 | 35 | |
michael@0 | 36 | |
michael@0 | 37 | function run_test() { |
michael@0 | 38 | createAppInfo("xpcshell@tests.mozilla.org", "XPCShell", "1", "1.9"); |
michael@0 | 39 | |
michael@0 | 40 | // We cannot force the blocklist to update so just copy our test list to the profile |
michael@0 | 41 | copyBlocklistToProfile(do_get_file("data/test_bug468528.xml")); |
michael@0 | 42 | |
michael@0 | 43 | var blocklist = Components.classes["@mozilla.org/extensions/blocklist;1"] |
michael@0 | 44 | .getService(nsIBLS); |
michael@0 | 45 | |
michael@0 | 46 | // blocked (sanity check) |
michael@0 | 47 | do_check_true(blocklist.getPluginBlocklistState(PLUGINS[0], "1", "1.9") == nsIBLS.STATE_BLOCKED); |
michael@0 | 48 | |
michael@0 | 49 | // not blocked - won't match due to invalid regexp |
michael@0 | 50 | do_check_true(blocklist.getPluginBlocklistState(PLUGINS[1], "1", "1.9") == nsIBLS.STATE_NOT_BLOCKED); |
michael@0 | 51 | |
michael@0 | 52 | // blocked - the invalid regexp for the previous item shouldn't affect this one |
michael@0 | 53 | do_check_true(blocklist.getPluginBlocklistState(PLUGINS[2], "1", "1.9") == nsIBLS.STATE_BLOCKED); |
michael@0 | 54 | |
michael@0 | 55 | // not blocked - the previous invalid regexp shouldn't act as a wildcard |
michael@0 | 56 | do_check_true(blocklist.getPluginBlocklistState(PLUGINS[3], "1", "1.9") == nsIBLS.STATE_NOT_BLOCKED); |
michael@0 | 57 | |
michael@0 | 58 | } |