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 { | 20 let {createSandbox} = require("./_common"); |
4 Filter, InvalidFilter, CommentFilter, RegExpFilter, WhiteListFilter, | 21 |
5 ElemHideFilter, ElemHideException | 22 let Filter = null; |
6 } = require("../lib/filterClassesNew"); | 23 let InvalidFilter = null; |
7 | 24 let CommentFilter = null; |
8 Filter.fromText("/asdf??+/"); | 25 let ActiveFilter = null; |
| 26 let RegExpFilter = null; |
| 27 let BlockingFilter = null; |
| 28 let WhitelistFilter = null; |
| 29 let ElemHideBase = null; |
| 30 let ElemHideFilter = null; |
| 31 let ElemHideException = null; |
| 32 let CSSPropertyFilter = null; |
| 33 |
| 34 exports.setUp = function(callback) |
| 35 { |
| 36 let sandboxedRequire = createSandbox(); |
| 37 ( |
| 38 { |
| 39 Filter, InvalidFilter, CommentFilter, ActiveFilter, RegExpFilter, |
| 40 BlockingFilter, WhitelistFilter, ElemHideBase, ElemHideFilter, |
| 41 ElemHideException, CSSPropertyFilter |
| 42 } = sandboxedRequire("../lib/filterClassesNew") |
| 43 ); |
| 44 callback(); |
| 45 }; |
9 | 46 |
10 exports.testFromText = function(test) | 47 exports.testFromText = function(test) |
11 { | 48 { |
12 let tests = [ | 49 let tests = [ |
13 ["!asdf", CommentFilter, "comment"], | 50 ["!asdf", CommentFilter, "comment"], |
14 ["asdf", RegExpFilter, "blocking"], | 51 ["asdf", BlockingFilter, "blocking"], |
15 ["asdf$image,~collapse", RegExpFilter, "blocking"], | 52 ["asdf$image,~collapse", BlockingFilter, "blocking"], |
16 ["/asdf/", RegExpFilter, "blocking"], | 53 ["/asdf/", BlockingFilter, "blocking"], |
17 ["/asdf??+/", InvalidFilter, "invalid"], | 54 ["/asdf??+/", InvalidFilter, "invalid"], |
18 ["@@asdf", WhiteListFilter, "whitelist"], | 55 ["@@asdf", WhitelistFilter, "whitelist"], |
19 ["@@asdf$image,~collapse", WhiteListFilter, "whitelist"], | 56 ["@@asdf$image,~collapse", WhitelistFilter, "whitelist"], |
20 ["@@/asdf/", WhiteListFilter, "whitelist"], | 57 ["@@/asdf/", WhitelistFilter, "whitelist"], |
21 ["@@/asdf??+/", InvalidFilter, "invalid"], | 58 ["@@/asdf??+/", InvalidFilter, "invalid"], |
22 ["##asdf", ElemHideFilter, "elemhide"], | 59 ["##asdf", ElemHideFilter, "elemhide"], |
23 ["#@#asdf", ElemHideException, "elemhideexception"], | 60 ["#@#asdf", ElemHideException, "elemhideexception"], |
24 ["foobar##asdf", ElemHideFilter, "elemhide"], | 61 ["foobar##asdf", ElemHideFilter, "elemhide"], |
25 ["foobar#@#asdf", ElemHideException, "elemhideexception"], | 62 ["foobar#@#asdf", ElemHideException, "elemhideexception"], |
26 ["foobar##a", ElemHideFilter, "elemhide"], | 63 ["foobar##a", ElemHideFilter, "elemhide"], |
27 ["foobar#@#a", ElemHideException, "elemhideexception"], | 64 ["foobar#@#a", ElemHideException, "elemhideexception"], |
28 | 65 |
29 ["foobar#asdf", RegExpFilter, "blocking"], | 66 ["foobar#asdf", BlockingFilter, "blocking"], |
30 ["foobar|foobas##asdf", RegExpFilter, "blocking"], | 67 ["foobar|foobas##asdf", BlockingFilter, "blocking"], |
31 ["foobar##asdf{asdf}", RegExpFilter, "blocking"], | 68 ["foobar##asdf{asdf}", BlockingFilter, "blocking"], |
32 ["foobar##", RegExpFilter, "blocking"], | 69 ["foobar##", BlockingFilter, "blocking"], |
33 ["foobar#@#", RegExpFilter, "blocking"], | 70 ["foobar#@#", BlockingFilter, "blocking"], |
| 71 ["asdf$foobar", InvalidFilter, "invalid"], |
| 72 ["asdf$image,foobar", InvalidFilter, "invalid"], |
| 73 ["asdf$image=foobar", BlockingFilter, "blocking"], |
| 74 ["asdf$image=foobar=xyz,~collapse", BlockingFilter, "blocking"], |
| 75 |
| 76 ["##foo[-abp-properties='something']bar", InvalidFilter, "invalid"], |
| 77 ["#@#foo[-abp-properties='something']bar", ElemHideException, "elemhideexcep
tion"], |
| 78 ["example.com##foo[-abp-properties='something']bar", CSSPropertyFilter, "css
property"], |
| 79 ["example.com#@#foo[-abp-properties='something']bar", ElemHideException, "el
emhideexception"], |
| 80 ["~example.com##foo[-abp-properties='something']bar", InvalidFilter, "invali
d"], |
| 81 ["~example.com#@#foo[-abp-properties='something']bar", ElemHideException, "e
lemhideexception"], |
| 82 ["~example.com,~example.info##foo[-abp-properties='something']bar", InvalidF
ilter, "invalid"], |
| 83 ["~example.com,~example.info#@#foo[-abp-properties='something']bar", ElemHid
eException, "elemhideexception"], |
| 84 ["~sub.example.com,example.com##foo[-abp-properties='something']bar", CSSPro
pertyFilter, "cssproperty"], |
| 85 ["~sub.example.com,example.com#@#foo[-abp-properties='something']bar", ElemH
ideException, "elemhideexception"], |
| 86 ["example.com,~sub.example.com##foo[-abp-properties='something']bar", CSSPro
pertyFilter, "cssproperty"], |
| 87 ["example.com,~sub.example.com#@#foo[-abp-properties='something']bar", ElemH
ideException, "elemhideexception"], |
| 88 ["example.com##[-abp-properties='something']", CSSPropertyFilter, "cssproper
ty"], |
| 89 ["example.com#@#[-abp-properties='something']", ElemHideException, "elemhide
exception"], |
| 90 ["example.com##[-abp-properties=\"something\"]", CSSPropertyFilter, "cssprop
erty"], |
| 91 ["example.com#@#[-abp-properties=\"something\"]", ElemHideException, "elemhi
deexception"], |
| 92 ["example.com##[-abp-properties=(something)]", ElemHideFilter, "elemhide"], |
| 93 ["example.com#@#[-abp-properties=(something)]", ElemHideException, "elemhide
exception"], |
34 ]; | 94 ]; |
35 for (let [text, type, typeName, location] of tests) | 95 for (let [text, type, typeName, location] of tests) |
36 { | 96 { |
37 let filter = Filter.fromText(text); | 97 let filter = Filter.fromText(text); |
38 try | 98 test.ok(filter instanceof Filter, "Got filter for " + text); |
39 { | 99 test.equal(filter.text, text, "Correct filter text for " + text); |
40 test.ok(filter instanceof Filter, "Got filter for " + text); | 100 test.ok(filter instanceof type, "Correct filter type for " + text); |
41 test.equal(filter.text, text, "Correct filter text for " + text); | 101 test.equal(filter.type, typeName, "Type name for " + text + " is " + typeNam
e); |
42 test.ok(filter instanceof type, "Correct filter type for " + text); | 102 if (type == InvalidFilter) |
43 test.equal(filter.type, typeName, "Type name for " + text + " is " + typeN
ame); | 103 test.ok(filter.reason, "Invalid filter " + text + " has a reason set"); |
44 if (type == InvalidFilter) | 104 filter.delete(); |
45 test.ok(filter.reason, "Invalid filter " + text + " has a reason set"); | 105 } |
| 106 test.done(); |
| 107 }; |
| 108 |
| 109 exports.testClassHierarchy = function(test) |
| 110 { |
| 111 let allClasses = ["Filter", "InvalidFilter", "CommentFilter", "ActiveFilter", |
| 112 "RegExpFilter", "BlockingFilter", "WhitelistFilter", "ElemHideBase", |
| 113 "ElemHideFilter", "ElemHideException", "CSSPropertyFilter"]; |
| 114 let tests = [ |
| 115 ["/asdf??+/", "Filter", "InvalidFilter"], |
| 116 ["!asdf", "Filter", "CommentFilter"], |
| 117 ["asdf", "Filter", "ActiveFilter", "RegExpFilter", "BlockingFilter"], |
| 118 ["@@asdf", "Filter", "ActiveFilter", "RegExpFilter", "WhitelistFilter"], |
| 119 ["##asdf", "Filter", "ActiveFilter", "ElemHideBase", "ElemHideFilter"], |
| 120 ["#@#asdf", "Filter", "ActiveFilter", "ElemHideBase", "ElemHideException"], |
| 121 ["example.com##[-abp-properties='something']", "Filter", "ActiveFilter", "El
emHideBase", "CSSPropertyFilter"], |
| 122 ]; |
| 123 |
| 124 for (let list of tests) |
| 125 { |
| 126 let filter = Filter.fromText(list.shift()); |
| 127 for (let cls of list) |
| 128 { |
| 129 test.ok(filter instanceof eval(cls), |
| 130 "Filter " + filter.text + " is an instance of " + cls); |
46 } | 131 } |
47 finally | 132 |
48 { | 133 for (let cls of allClasses) |
49 filter.delete(); | 134 { |
| 135 if (list.indexOf(cls) < 0) |
| 136 { |
| 137 test.ok(!(filter instanceof eval(cls)), |
| 138 "Filter " + filter.text + " isn't an instance of " + cls); |
| 139 } |
50 } | 140 } |
51 } | 141 filter.delete(); |
| 142 } |
| 143 |
| 144 test.done(); |
| 145 }; |
| 146 |
| 147 exports.testGC = function(test) |
| 148 { |
| 149 let filter1 = Filter.fromText("someknownfilter"); |
| 150 test.equal(filter1.hitCount, 0, "Initial hit count"); |
| 151 |
| 152 filter1.hitCount = 432; |
| 153 |
| 154 let filter2 = Filter.fromText("someknownfilter"); |
| 155 test.equal(filter2.hitCount, 432, "Known filter returned"); |
| 156 |
| 157 filter2.hitCount = 234; |
| 158 test.equal(filter1.hitCount, 234, "Changing second wrapper modifies original a
s well"); |
| 159 |
| 160 filter1.delete(); |
| 161 filter2.delete(); |
| 162 |
| 163 let filter3 = Filter.fromText("someknownfilter"); |
| 164 test.equal(filter3.hitCount, 0, "Filter data has been reset once previous inst
ances have been released"); |
| 165 filter3.delete(); |
| 166 |
52 test.done(); | 167 test.done(); |
53 }; | 168 }; |
54 | 169 |
55 exports.testNormalize = function(test) | 170 exports.testNormalize = function(test) |
56 { | 171 { |
57 let tests = [ | 172 let tests = [ |
58 [" foo bar ", "foobar"], | |
59 ["foobar", "foobar"], | |
60 [" ! comment something ", "! comment something"], | 173 [" ! comment something ", "! comment something"], |
61 [" ! \n comment something ", "! comment something"], | 174 [" ! \n comment something ", "! comment something"], |
62 [" foo , bar ## foo > bar ", "foo,bar##foo > bar"], | 175 [" foo bar ", "foobar"], |
63 [" foo , bar #@# foo > bar ", "foo,bar#@#foo > bar"], | 176 [" foo , bar # # foo > bar ", "foo,bar##foo > bar", "foo,bar", "foo > bar"]
, |
64 ]; | 177 [" foo , bar # @ # foo > bar ", "foo,bar#@#foo > bar", "foo,bar", "foo > b
ar"], |
65 for (let [text, expected] of tests) | 178 ["foOBar"], |
66 test.equal(Filter.normalize(text), expected); | 179 ["foOBar#xyz"], |
| 180 ["foOBar$iMaGe,object_subrequest,~coLLapse", "foOBar$image,object-subrequest
,~collapse"], |
| 181 ["foOBar$doMain=EXample.COM|~exAMPLE.РФ", "foOBar$domain=example.com|~exampl
e.рф"], |
| 182 ["foOBar$sitekeY=SiteKey", "foOBar$sitekey=SiteKey"], |
| 183 ["exampLE.com##fooBAr", "example.com##fooBAr"], |
| 184 ["exampLE.com#@#fooBAr", "example.com#@#fooBAr"], |
| 185 ["exampLE.РФ#@#fooBAr", "example.рф#@#fooBAr"], |
| 186 ]; |
| 187 |
| 188 for (let [text, expected, selectorDomain, selector] of tests) |
| 189 { |
| 190 if (!expected) |
| 191 expected = text; |
| 192 |
| 193 let filter1 = Filter.fromText(text); |
| 194 let filter2 = Filter.fromText(expected); |
| 195 |
| 196 test.equal(filter1.text, expected, "Filter text " + text + " got normalized"
); |
| 197 test.equal(filter2.text, expected, "Already normalized text " + expected + "
didn't change"); |
| 198 |
| 199 if (filter1 instanceof ActiveFilter) |
| 200 { |
| 201 filter1.hitCount = 567; |
| 202 test.equal(filter1.hitCount, filter2.hitCount, "Property changes on filter
" + text + " get reflected on filter " + expected); |
| 203 } |
| 204 |
| 205 if (selectorDomain) |
| 206 { |
| 207 let expectedDomains = selectorDomain.split(",").sort().join(","); |
| 208 let actualDomains1 = filter1.selectorDomain.split(",").sort().join(","); |
| 209 let actualDomains2 = filter2.selectorDomain.split(",").sort().join(","); |
| 210 test.equal(actualDomains1, expectedDomains, "Correct selector domain for f
ilter " + text); |
| 211 test.equal(actualDomains1, expectedDomains, "Correct selector domain for f
ilter " + expected); |
| 212 |
| 213 test.equal(filter1.selector, selector, "Correct selector for filter " + te
xt); |
| 214 test.equal(filter2.selector, selector, "Correct selector for filter " + ex
pected); |
| 215 } |
| 216 |
| 217 filter1.delete(); |
| 218 filter2.delete(); |
| 219 } |
| 220 |
| 221 test.done(); |
| 222 }; |
| 223 |
| 224 exports.testSerialize = function(test) |
| 225 { |
| 226 // Comment |
| 227 let filter = Filter.fromText("! serialize"); |
| 228 test.equal(filter.serialize(), "[Filter]\ntext=! serialize\n"); |
| 229 filter.delete(); |
| 230 |
| 231 // Blocking filter |
| 232 filter = Filter.fromText("serialize"); |
| 233 test.equal(filter.serialize(), "[Filter]\ntext=serialize\n"); |
| 234 filter.disabled = true; |
| 235 test.equal(filter.serialize(), "[Filter]\ntext=serialize\ndisabled=true\n"); |
| 236 filter.disabled = false; |
| 237 filter.hitCount = 10; |
| 238 filter.lastHit = 12; |
| 239 test.equal(filter.serialize(), "[Filter]\ntext=serialize\nhitCount=10\nlastHit
=12\n"); |
| 240 filter.delete(); |
| 241 |
| 242 // Invalid filter |
| 243 filter = Filter.fromText("serialize$foobar"); |
| 244 test.equal(filter.serialize(), "[Filter]\ntext=serialize$foobar\n"); |
| 245 filter.delete(); |
| 246 |
| 247 // Element hiding filter |
| 248 filter = Filter.fromText("example.com##serialize"); |
| 249 test.equal(filter.serialize(), "[Filter]\ntext=example.com##serialize\n"); |
| 250 filter.disabled = true; |
| 251 filter.lastHit = 5; |
| 252 test.equal(filter.serialize(), "[Filter]\ntext=example.com##serialize\ndisable
d=true\nlastHit=5\n"); |
| 253 filter.delete(); |
| 254 |
| 255 test.done(); |
| 256 }; |
| 257 |
| 258 exports.testInvalidReasons = function(test) |
| 259 { |
| 260 let tests = [ |
| 261 ["/??/", "filter_invalid_regexp"], |
| 262 ["asd$foobar", "filter_unknown_option"], |
| 263 ["~foo.com##[-abp-properties='abc']", "filter_cssproperty_nodomain"], |
| 264 ]; |
| 265 |
| 266 for (let [text, reason] of tests) |
| 267 { |
| 268 let filter = Filter.fromText(text); |
| 269 test.equals(filter.reason, reason, "Reason why filter " + text + " is invali
d"); |
| 270 filter.delete(); |
| 271 } |
| 272 |
67 test.done(); | 273 test.done(); |
68 }; | 274 }; |
69 | 275 |
70 exports.testActiveFilter = function(test) | 276 exports.testActiveFilter = function(test) |
71 { | 277 { |
72 let filter1 = Filter.fromText("asdf"); | 278 let filter1 = Filter.fromText("asdf"); |
73 let filter1copy = Filter.fromText("asdf"); | 279 let filter1copy = Filter.fromText("asdf"); |
74 let filter2 = Filter.fromText("##foobar"); | 280 let filter2 = Filter.fromText("##foobar"); |
75 | 281 |
76 try | 282 test.ok(!filter1.disabled && !filter1copy.disabled && !filter2.disabled, "Filt
ers are initially enabled"); |
77 { | 283 filter1.disabled = true; |
78 test.ok(!filter1.disabled && !filter1copy.disabled && !filter2.disabled, "Fi
lters are initially enabled"); | 284 test.ok(filter1.disabled, "Disabling filter works"); |
79 filter1.disabled = true; | 285 test.ok(filter1copy.disabled, "Filter copies are also disabled"); |
80 test.ok(filter1.disabled, "Disabling filter works"); | 286 test.ok(!filter2.disabled, "Disabling one filter doesn't disable others"); |
81 test.ok(filter1copy.disabled, "Filter copies are also disabled"); | 287 |
82 test.ok(!filter2.disabled, "Disabling one filter doesn't disable others"); | 288 test.ok(filter1.hitCount === 0 && filter1copy.hitCount === 0 && filter2.hitCou
nt === 0, "Filters have no hit initially"); |
83 | 289 filter1.hitCount = 5; |
84 test.ok(filter1.hitCount === 0 && filter1copy.hitCount === 0 && filter2.hitC
ount === 0, "Filters have no hit initially"); | 290 test.equal(filter1.hitCount, 5, "Changing hit count works"); |
85 filter1.hitCount = 5; | 291 test.equal(filter1copy.hitCount, 5, "Hit count of filter copies is also change
d"); |
86 test.equal(filter1.hitCount, 5, "Changing hit count works"); | 292 test.equal(filter2.hitCount, 0, "Hit count of other filters isn't affected"); |
87 test.equal(filter1copy.hitCount, 5, "Hit count of filter copies is also chan
ged"); | 293 |
88 test.equal(filter2.hitCount, 0, "Hit count of other filters isn't affected")
; | 294 test.ok(filter1.lastHit === 0 && filter1copy.lastHit === 0 && filter2.lastHit
=== 0, "Filters have no last hit time initially"); |
89 | 295 filter1.lastHit = 10; |
90 test.ok(filter1.lastHit === 0 && filter1copy.lastHit === 0 && filter2.lastHi
t === 0, "Filters have no last hit time initially"); | 296 test.equal(filter1.lastHit, 10, "Changing last hit time works"); |
91 filter1.lastHit = 10; | 297 test.equal(filter1copy.lastHit, 10, "Last hit time of filter copies is also ch
anged"); |
92 test.equal(filter1.lastHit, 10, "Changing last hit time works"); | 298 test.equal(filter2.lastHit, 0, "Last hit time of other filters isn't affected"
); |
93 test.equal(filter1copy.lastHit, 10, "Last hit time of filter copies is also
changed"); | 299 |
94 test.equal(filter2.lastHit, 0, "Last hit time of other filters isn't affecte
d"); | 300 filter1.delete(); |
95 } | 301 filter1copy.delete(); |
96 finally | 302 filter2.delete(); |
97 { | 303 |
98 filter1.delete(); | 304 test.done(); |
99 filter1copy.delete(); | 305 }; |
100 filter2.delete(); | 306 |
101 } | 307 exports.testIsGeneric = function(test) |
102 | 308 { |
103 test.done(); | 309 let tests = [ |
104 }; | 310 ["asfd", true], |
105 | 311 ["|http://example.com/asdf", true], |
106 exports.testMatching = function(test) | 312 ["||example.com/asdf", true], |
107 { | 313 ["asfd$third-party", true], |
108 function testMatch(text, location, contentType, docDomain, thirdParty, sitekey
, expected) | 314 ["asdf$domain=com", false], |
109 { | 315 ["asdf$domain=example.com", false], |
110 let filter = Filter.fromText(text); | 316 ["asdf$image,domain=example.com", false], |
111 test.equal(filter.matches(location), expected, "Result of filter " + text +
" matching " + location); | 317 ["asdf$~image,domain=example.com", false], |
112 filter.delete(); | 318 ["asdf$third-party,domain=example.com", false], |
113 | 319 ["||example.com/asdf$~coLLapse,domain=example.com", false], |
114 filter = Filter.fromText("@@" + text) | 320 ["||example.com/asdf$domain=~example.com", true], |
115 test.equal(filter.matches(location), expected, "Result of filter @@" + text
+ " matching " + location); | 321 ["||example.com/asdf$third-party,domain=~example.com", true], |
116 filter.delete(); | 322 ["asdf$domain=foo.example.com|~example.com", false], |
117 } | 323 ["asdf$domain=foo.com|~example.com", false], |
118 | 324 ["asdf$domain=~foo.com|~example.com", true], |
119 // Basic filters | 325 ]; |
120 testMatch("abc", "http://abc/adf", "IMAGE", null, false, null, true); | 326 |
121 testMatch("abc", "http://ABC/adf", "IMAGE", null, false, null, true); | 327 for (let [text, generic] of tests) |
122 testMatch("abc", "http://abd/adf", "IMAGE", null, false, null, false); | 328 { |
123 testMatch("|abc", "http://abc/adf", "IMAGE", null, false, null, false); | 329 let filter = Filter.fromText(text); |
124 testMatch("|http://abc", "http://abc/adf", "IMAGE", null, false, null, true); | 330 test.equal(filter.isGeneric(), generic, "Filter " + text + " is generic"); |
125 testMatch("abc|", "http://abc/adf", "IMAGE", null, false, null, false); | 331 filter.delete(); |
126 testMatch("abc/adf|", "http://abc/adf", "IMAGE", null, false, null, true); | 332 } |
127 testMatch("||example.com/foo", "http://example.com/foo/bar", "IMAGE", null, fa
lse, null, true); | 333 |
128 testMatch("||com/foo", "http://example.com/foo/bar", "IMAGE", null, false, nul
l, true); | 334 test.done(); |
129 testMatch("||mple.com/foo", "http://example.com/foo/bar", "IMAGE", null, false
, null, false); | 335 } |
130 testMatch("||/example.com/foo", "http://example.com/foo/bar", "IMAGE", null, f
alse, null, false); | 336 |
131 testMatch("||example.com/foo/bar|", "http://example.com/foo/bar", "IMAGE", nul
l, false, null, true); | 337 exports.testElemHideSelector = function(test) |
132 testMatch("||example.com/foo", "http://foo.com/http://example.com/foo/bar", "I
MAGE", null, false, null, false); | 338 { |
133 testMatch("||example.com/foo|", "http://example.com/foo/bar", "IMAGE", null, f
alse, null, false); | 339 function doTest(text, selector, selectorDomain) |
134 | 340 { |
135 // Separator placeholders | 341 let filter = Filter.fromText(text); |
136 testMatch("abc^d", "http://abc/def", "IMAGE", null, false, null, true); | 342 test.equal(filter.selector, selector, "Correct selector for " + text); |
137 testMatch("abc^e", "http://abc/def", "IMAGE", null, false, null, false); | 343 |
138 testMatch("def^", "http://abc/def", "IMAGE", null, false, null, true); | 344 let actualDomains = filter.selectorDomain.split(",").sort().join(","); |
139 testMatch("http://abc/d^f", "http://abc/def", "IMAGE", null, false, null, fals
e); | 345 let expectedDomains = selectorDomain.split(",").sort().join(","); |
140 testMatch("http://abc/def^", "http://abc/def", "IMAGE", null, false, null, tru
e); | 346 test.equal(actualDomains, expectedDomains, "Correct domains list for " + tex
t); |
141 testMatch("^foo=bar^", "http://abc/?foo=bar", "IMAGE", null, false, null, true
); | 347 |
142 testMatch("^foo=bar^", "http://abc/?a=b&foo=bar", "IMAGE", null, false, null,
true); | 348 filter.delete(); |
143 testMatch("^foo=bar^", "http://abc/?foo=bar&a=b", "IMAGE", null, false, null,
true); | 349 } |
144 testMatch("^foo=bar^", "http://abc/?notfoo=bar", "IMAGE", null, false, null, f
alse); | 350 |
145 testMatch("^foo=bar^", "http://abc/?foo=barnot", "IMAGE", null, false, null, f
alse); | 351 let tests = [ |
146 testMatch("^foo=bar^", "http://abc/?foo=bar%2Enot", "IMAGE", null, false, null
, false); | 352 ["##foobar", "foobar", ""], |
147 testMatch("||example.com^", "http://example.com/foo/bar", "IMAGE", null, false
, null, true); | 353 ["~example.com##foobar", "foobar", ""], |
148 testMatch("||example.com^", "http://example.company.com/foo/bar", "IMAGE", nul
l, false, null, false); | 354 ["example.com##body > div:first-child", "body > div:first-child", "example.c
om"], |
149 testMatch("||example.com^", "http://example.com:1234/foo/bar", "IMAGE", null,
false, null, true); | 355 ["xYz,~example.com##foobar:not(whatever)", "foobar:not(whatever)","xyz"], |
150 testMatch("||example.com^", "http://example.com.com/foo/bar", "IMAGE", null, f
alse, null, false); | 356 ["~xyz,com,~abc.com,example.info##foobar", "foobar", "com,example.info"], |
151 testMatch("||example.com^", "http://example.com-company.com/foo/bar", "IMAGE",
null, false, null, false); | 357 ["foo,bar,bas,bam##foobar", "foobar", "foo,bar,bas,bam"], |
152 testMatch("||example.com^foo", "http://example.com/foo/bar", "IMAGE", null, fa
lse, null, true); | 358 |
153 testMatch("||пример.ру^", "http://пример.ру/foo/bar", "IMAGE", null, false, nu
ll, true); | 359 // Good idea to test this? Maybe consider behavior undefined in this case. |
154 testMatch("||пример.ру^", "http://пример.руководитель.ру/foo/bar", "IMAGE", nu
ll, false, null, false); | 360 ["foo,bar,bas,~bar##foobar", "foobar", "foo,bas"], |
155 testMatch("||пример.ру^", "http://пример.ру:1234/foo/bar", "IMAGE", null, fals
e, null, true); | 361 ]; |
156 testMatch("||пример.ру^", "http://пример.ру.ру/foo/bar", "IMAGE", null, false,
null, false); | 362 |
157 testMatch("||пример.ру^", "http://пример.ру-ководитель.ру/foo/bar", "IMAGE", n
ull, false, null, false); | 363 for (let [text, selector, selectorDomain] of tests) |
158 testMatch("||пример.ру^foo", "http://пример.ру/foo/bar", "IMAGE", null, false,
null, true); | 364 { |
159 | 365 doTest(text, selector, selectorDomain); |
160 // Wildcard matching | 366 doTest(text.replace("##", "#@#"), selector, selectorDomain); |
161 testMatch("abc*d", "http://abc/adf", "IMAGE", null, false, null, true); | 367 } |
162 testMatch("abc*d", "http://abcd/af", "IMAGE", null, false, null, true); | 368 |
163 testMatch("abc*d", "http://abc/d/af", "IMAGE", null, false, null, true); | 369 test.done(); |
164 testMatch("abc*d", "http://dabc/af", "IMAGE", null, false, null, false); | 370 }; |
165 testMatch("*abc", "http://abc/adf", "IMAGE", null, false, null, true); | 371 |
166 testMatch("abc*", "http://abc/adf", "IMAGE", null, false, null, true); | 372 exports.testCSSRules = function(test) |
167 testMatch("|*abc", "http://abc/adf", "IMAGE", null, false, null, true); | 373 { |
168 testMatch("abc*|", "http://abc/adf", "IMAGE", null, false, null, true); | 374 let tests = [ |
169 testMatch("abc***d", "http://abc/adf", "IMAGE", null, false, null, true); | 375 ["foo.com##[-abp-properties='abc']", "abc", "", ""], |
170 | 376 ["foo.com##[-abp-properties='a\"bc']", "a\\\"bc", "", ""], |
171 // Regular expressions | 377 ["foo.com##[-abp-properties=\"abc\"]", "abc", "", ""], |
172 testMatch("/abc/", "http://abc/adf", "IMAGE", null, false, null, true); | 378 ["foo.com##[-abp-properties=\"a'bc\"]", "a\\'bc", "", ""], |
173 testMatch("/abc/", "http://abcd/adf", "IMAGE", null, false, null, true); | 379 ["foo.com##aaa [-abp-properties='abc'] bbb", "abc", "aaa ", " bbb"], |
174 testMatch("*/abc/", "http://abc/adf", "IMAGE", null, false, null, true); | 380 ["foo.com##[-abp-properties='|background-image: url(data:*)']", "^background
\\-image\\:\\ url\\(data\\:.*\\)", "", ""], |
175 testMatch("*/abc/", "http://abcd/adf", "IMAGE", null, false, null, false); | 381 ]; |
176 testMatch("/a\\wc/", "http://abc/adf", "IMAGE", null, false, null, true); | 382 |
177 testMatch("/a\\wc/", "http://a1c/adf", "IMAGE", null, false, null, true); | 383 for (let [text, regexp, prefix, suffix] of tests) |
178 testMatch("/a\\wc/", "http://a_c/adf", "IMAGE", null, false, null, true); | 384 { |
179 testMatch("/a\\wc/", "http://a%c/adf", "IMAGE", null, false, null, false); | 385 let filter = Filter.fromText(text); |
180 | 386 test.equal(filter.regexpString, regexp, "Regular expression of " + text); |
181 test.done(); | 387 test.equal(filter.selectorPrefix, prefix, "Selector prefix of " + text); |
182 }; | 388 test.equal(filter.selectorSuffix, suffix, "Selector suffix of " + text); |
| 389 filter.delete(); |
| 390 } |
| 391 |
| 392 test.done(); |
| 393 }; |
LEFT | RIGHT |