Left: | ||
Right: |
LEFT | RIGHT |
---|---|
1 /* | 1 /* |
2 * This file is part of Adblock Plus <https://adblockplus.org/>, | 2 * This file is part of Adblock Plus <https://adblockplus.org/>, |
3 * Copyright (C) 2006-present eyeo GmbH | 3 * Copyright (C) 2006-present eyeo GmbH |
4 * | 4 * |
5 * Adblock Plus is free software: you can redistribute it and/or modify | 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 | 6 * it under the terms of the GNU General Public License version 3 as |
7 * published by the Free Software Foundation. | 7 * published by the Free Software Foundation. |
8 * | 8 * |
9 * Adblock Plus is distributed in the hope that it will be useful, | 9 * Adblock Plus is distributed in the hope that it will be useful, |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
(...skipping 30 matching lines...) Expand all Loading... | |
41 exports.testDomainRestrictions = function(test) | 41 exports.testDomainRestrictions = function(test) |
42 { | 42 { |
43 function testScriptMatches(description, filters, domain, expectedMatches) | 43 function testScriptMatches(description, filters, domain, expectedMatches) |
44 { | 44 { |
45 for (let filter of filters.map(Filter.fromText)) | 45 for (let filter of filters.map(Filter.fromText)) |
46 { | 46 { |
47 if (filter instanceof SnippetFilter) | 47 if (filter instanceof SnippetFilter) |
48 Snippets.add(filter); | 48 Snippets.add(filter); |
49 } | 49 } |
50 | 50 |
51 let matches = Snippets.getFiltersForDomain(domain).map(elem => elem.script); | 51 let matches = Snippets.getFiltersForDomain(domain).map( |
Manish Jethani
2018/08/27 12:36:21
Nit: Can we keep it `filter => filter.script` simi
hub
2018/08/27 12:53:35
Done.
| |
52 filter => filter.script | |
53 ); | |
52 test.deepEqual(matches.sort(), expectedMatches.sort(), description); | 54 test.deepEqual(matches.sort(), expectedMatches.sort(), description); |
53 | 55 |
54 Snippets.clear(); | 56 Snippets.clear(); |
55 } | 57 } |
56 | 58 |
57 testScriptMatches( | 59 testScriptMatches( |
58 "Ignore generic filters", | 60 "Ignore generic filters", |
59 [ | 61 [ |
60 "#$#foo-1", "example.com#$#foo-2", | 62 "#$#foo-1", "example.com#$#foo-2", |
61 "~example.com#$#foo-3" | 63 "~example.com#$#foo-3" |
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
280 // between executions. In the example below, assertFoo does not find 456 but | 282 // between executions. In the example below, assertFoo does not find 456 but |
281 // it doesn't find 123 either. It's the initial value 0. | 283 // it doesn't find 123 either. It's the initial value 0. |
282 new Function( | 284 new Function( |
283 compileScript("setFoo 456; assertFoo 0", [ | 285 compileScript("setFoo 456; assertFoo 0", [ |
284 ...libraries, "let foo = 1; exports.setFoo = value => { foo = value; };" | 286 ...libraries, "let foo = 1; exports.setFoo = value => { foo = value; };" |
285 ]) | 287 ]) |
286 )(); | 288 )(); |
287 | 289 |
288 test.done(); | 290 test.done(); |
289 }; | 291 }; |
LEFT | RIGHT |