LEFT | RIGHT |
| 1 /* |
| 2 * This file is part of Adblock Plus <https://adblockplus.org/>, |
| 3 * Copyright (C) 2006-2016 Eyeo GmbH |
| 4 * |
| 5 * Adblock Plus is free software: you can redistribute it and/or modify |
| 6 * it under the terms of the GNU General Public License version 3 as |
| 7 * published by the Free Software Foundation. |
| 8 * |
| 9 * Adblock Plus is distributed in the hope that it will be useful, |
| 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 * GNU General Public License for more details. |
| 13 * |
| 14 * You should have received a copy of the GNU General Public License |
| 15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. |
| 16 */ |
| 17 |
1 "use strict"; | 18 "use strict"; |
2 | 19 |
3 let {Filter} = require("../lib/filterClassesNew"); | 20 let {createSandbox} = require("./_common"); |
| 21 |
| 22 let Filter = null; |
| 23 |
| 24 exports.setUp = function(callback) |
| 25 { |
| 26 let sandboxedRequire = createSandbox(); |
| 27 ({Filter} = sandboxedRequire("../lib/filterClassesNew")); |
| 28 callback(); |
| 29 }; |
4 | 30 |
5 function testActive(test, text, domain, expectedActive, expectedOnlyDomain) | 31 function testActive(test, text, domain, expectedActive, expectedOnlyDomain) |
6 { | 32 { |
7 let filter = Filter.fromText(text); | 33 let filter = Filter.fromText(text); |
8 test.equal(filter.isActiveOnDomain(domain), expectedActive, text + " active on
" + domain); | 34 test.equal(filter.isActiveOnDomain(domain), expectedActive, text + " active on
" + domain); |
9 test.equal(filter.isActiveOnlyOnDomain(domain), expectedOnlyDomain, text + " o
nly active on " + domain); | 35 test.equal(filter.isActiveOnlyOnDomain(domain), expectedOnlyDomain, text + " o
nly active on " + domain); |
10 filter.delete(); | 36 filter.delete(); |
11 } | 37 } |
12 | 38 |
13 exports.testUnrestrictedBlocking = function(test) | 39 exports.testUnrestrictedBlocking = function(test) |
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
174 { | 200 { |
175 testActive(test, "nnnnnnn.nnn##foo", null, false, false); | 201 testActive(test, "nnnnnnn.nnn##foo", null, false, false); |
176 testActive(test, "nnnnnnn.nnn##foo", "com", false, false); | 202 testActive(test, "nnnnnnn.nnn##foo", "com", false, false); |
177 testActive(test, "nnnnnnn.nnn##foo", "example.com", false, false); | 203 testActive(test, "nnnnnnn.nnn##foo", "example.com", false, false); |
178 testActive(test, "nnnnnnn.nnn##foo", "example.com.", false, false); | 204 testActive(test, "nnnnnnn.nnn##foo", "example.com.", false, false); |
179 testActive(test, "nnnnnnn.nnn##foo", "foo.example.com", false, false); | 205 testActive(test, "nnnnnnn.nnn##foo", "foo.example.com", false, false); |
180 testActive(test, "nnnnnnn.nnn##foo", "mple.com", false, false); | 206 testActive(test, "nnnnnnn.nnn##foo", "mple.com", false, false); |
181 | 207 |
182 test.done(); | 208 test.done(); |
183 }; | 209 }; |
LEFT | RIGHT |