Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Delta Between Two Patch Sets: test/elemHideEmulation.js

Issue 29594607: Issue 5143 - Convert ElemHideEmulation to C++ (Closed) Base URL: https://hg.adblockplus.org/adblockpluscore/
Left Patch Set: Created Nov. 1, 2017, 2:42 p.m.
Right Patch Set: Review comments addressed Created Jan. 30, 2018, 5:37 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « meson.build ('k') | no next file » | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
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
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details. 12 * GNU General Public License for more details.
13 * 13 *
14 * You should have received a copy of the GNU General Public License 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/>. 15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>.
16 */ 16 */
17 17
18 "use strict"; 18 "use strict";
19 19
20 const {createSandbox} = require("./_common"); 20 const {createSandbox} = require("./_common");
21 const {withNAD} = require("./_test-utils");
21 22
22 let ElemHideEmulationFilter = null; 23 let ElemHideEmulationFilter = null;
23 let ElemHideEmulation = null; 24 let ElemHideEmulation = null;
24 let ElemHide = null; 25 let ElemHide = null;
25 let Filter = null; 26 let Filter = null;
26 27
27 exports.setUp = function(callback) 28 exports.setUp = function(callback)
28 { 29 {
29 let sandboxedRequire = createSandbox(); 30 let sandboxedRequire = createSandbox();
30 ( 31 (
31 {Filter, 32 {Filter,
32 ElemHideEmulationFilter} = sandboxedRequire("../lib/filterClasses"), 33 ElemHideEmulationFilter} = sandboxedRequire("../lib/filterClasses"),
33 {ElemHideEmulation} = sandboxedRequire("../lib/elemHideEmulation"), 34 {ElemHideEmulation} = sandboxedRequire("../lib/elemHideEmulation"),
34 {ElemHide} = sandboxedRequire("../lib/elemHide") 35 {ElemHide} = sandboxedRequire("../lib/elemHide")
35 ); 36 );
36 37
37 callback(); 38 callback();
38 }; 39 };
39 40
40
41 exports.testElemHideAPI = function(test) 41 exports.testElemHideAPI = function(test)
42 { 42 {
43 let filter = Filter.fromText("###ads"); 43 withNAD(0, elemHide =>
44 ElemHide.add(filter); 44 {
45 45 withNAD(0, filter =>
46 test.equal(filter.selectorDomain, ""); 46 {
47 let unconditionals = ElemHide.getUnconditionalSelectors(); 47 elemHide.add(filter);
48 test.equal(unconditionals.selectorCount, 1); 48 test.equal(filter.selectorDomain, "");
49 test.equal(unconditionals.selectorAt(0), "#ads"); 49 })(Filter.fromText("###ads"));
50 test.equal(unconditionals.filterKeyAt(0), "###ads"); 50
51 51 withNAD(0, unconditionals =>
52 let filter2 = Filter.fromText("example.com##.foo"); 52 {
53 ElemHide.add(filter2); 53 test.equal(unconditionals.selectorCount, 1);
54 test.equal(filter2.selectorDomain, "example.com"); 54 test.equal(unconditionals.selectorAt(0), "#ads");
55 55 test.equal(unconditionals.filterKeyAt(0), "###ads");
56 unconditionals = ElemHide.getUnconditionalSelectors(); 56 })(elemHide.getUnconditionalSelectors());
57 test.equal(unconditionals.selectorCount, 1); 57
58 58 withNAD(0, filter =>
59 let selectors = ElemHide.getSelectorsForDomain("example.com", 1); 59 {
60 test.equal(selectors.selectorCount, 1); 60 elemHide.add(filter);
61 test.equal(selectors.selectorAt(0), ".foo"); 61 test.equal(filter.selectorDomain, "example.com");
62 test.equal(selectors.filterKeyAt(0), "example.com##.foo"); 62 })(Filter.fromText("example.com##.foo"));
63 63
64 selectors = ElemHide.getSelectorsForDomain("example.com", 0); 64 withNAD(
65 test.equal(selectors.selectorCount, 2); 65 0, unconditionals =>
66 test.equal(selectors.selectorAt(0), "#ads"); 66 test.equal(unconditionals.selectorCount, 1))(elemHide.getUnconditionalSe lectors());
67 test.equal(selectors.filterKeyAt(0), "###ads"); 67
68 test.equal(selectors.selectorAt(1), ".foo"); 68 withNAD(0, selectors =>
69 test.equal(selectors.filterKeyAt(1), "example.com##.foo"); 69 {
70 70 test.equal(selectors.selectorCount, 1);
71 let filter3 = Filter.fromText("example.com##.message"); 71 test.equal(selectors.selectorAt(0), ".foo");
72 ElemHide.add(filter3); 72 test.equal(selectors.filterKeyAt(0), "example.com##.foo");
73 selectors = ElemHide.getSelectorsForDomain("example.com", 0); 73 })(elemHide.getSelectorsForDomain("example.com", 1));
74 test.equal(selectors.selectorCount, 3); 74
75 selectors = ElemHide.getSelectorsForDomain("mail.example.com", 0); 75 withNAD(0, selectors =>
76 test.equal(selectors.selectorCount, 3); 76 {
77 77 test.equal(selectors.selectorCount, 2);
78 let filter4 = Filter.fromText("mail.example.com#@#.message"); 78 test.equal(selectors.selectorAt(0), "#ads");
79 ElemHide.add(filter4); 79 test.equal(selectors.filterKeyAt(0), "###ads");
80 selectors = ElemHide.getSelectorsForDomain("example.com", 0); 80 test.equal(selectors.selectorAt(1), ".foo");
81 test.equal(selectors.selectorCount, 3); 81 test.equal(selectors.filterKeyAt(1), "example.com##.foo");
82 selectors = ElemHide.getSelectorsForDomain("mail.example.com", 0); 82 })(elemHide.getSelectorsForDomain("example.com", 0));
83 test.equal(selectors.selectorCount, 2); 83
84 84 withNAD(0, filter3 =>
85 unconditionals = ElemHide.getUnconditionalSelectors(); 85 {
86 test.equal(unconditionals.selectorCount, 1); 86 elemHide.add(filter3);
87 87
88 ElemHide.remove(filter4); 88 withNAD(
89 selectors = ElemHide.getSelectorsForDomain("example.com", 0); 89 0, selectors =>
90 test.equal(selectors.selectorCount, 3); 90 test.equal(selectors.selectorCount, 3))(
91 selectors = ElemHide.getSelectorsForDomain("mail.example.com", 0); 91 elemHide.getSelectorsForDomain("example.com", 0));
92 test.equal(selectors.selectorCount, 3); 92
93 93 withNAD(
94 ElemHide.remove(filter3); 94 0, selectors =>
95 selectors = ElemHide.getSelectorsForDomain("example.com", 0); 95 test.equal(selectors.selectorCount, 3))(
96 test.equal(selectors.selectorCount, 2); 96 elemHide.getSelectorsForDomain("mail.example.com", 0));
97
98 withNAD(0, filter4 =>
99 {
100 elemHide.add(filter4);
101 withNAD(
102 0, selectors =>
103 test.equal(selectors.selectorCount, 3))(
104 elemHide.getSelectorsForDomain("example.com", 0));
105
106 withNAD(
107 0, selectors =>
108 test.equal(selectors.selectorCount, 2))(
109 elemHide.getSelectorsForDomain("mail.example.com", 0));
110
111 withNAD(
112 0,
113 unconditionals =>
114 test.equal(unconditionals.selectorCount, 1))(elemHide.getUncondition alSelectors());
115
116 elemHide.remove(filter4);
117 })(Filter.fromText("mail.example.com#@#.message"));
118
119 withNAD(
120 0, selectors =>
121 test.equal(selectors.selectorCount, 3))(
122 elemHide.getSelectorsForDomain("example.com", 0));
123
124 withNAD(
125 0, selectors =>
126 test.equal(selectors.selectorCount, 3))(
127 elemHide.getSelectorsForDomain("mail.example.com", 0));
128
129 elemHide.remove(filter3);
130 })(Filter.fromText("example.com##.message"));
131
132 withNAD(
133 0, selectors =>
134 test.equal(selectors.selectorCount, 2))(
135 elemHide.getSelectorsForDomain("example.com", 0));
136 })(ElemHide.create());
97 137
98 test.done(); 138 test.done();
99 }; 139 };
100 140
101 exports.testDomainRestrictions = function(test) 141 exports.testDomainRestrictions = function(test)
102 { 142 {
103 function testSelectorMatches(description, filters, domain, expectedMatches) 143 function testSelectorMatches(description, filters, domain, expectedMatches)
104 { 144 {
105 for (let text of filters) 145 withNAD([0, 1], (elemHide, elemHideEmulation) =>
106 { 146 {
107 let filter = Filter.fromText(text); 147 let addFilter = withNAD(0, filter =>
108 if (filter instanceof ElemHideEmulationFilter) 148 {
109 ElemHideEmulation.add(filter); 149 if (filter instanceof ElemHideEmulationFilter)
110 else 150 elemHideEmulation.add(filter);
111 ElemHide.add(filter); 151 else
112 } 152 elemHide.add(filter);
113 153 });
114 let rules = ElemHideEmulation.getRulesForDomain(domain); 154
115 let matches = []; 155 for (let text of filters)
116 for (let i = 0; i < rules.filterCount; i++) 156 addFilter(Filter.fromText(text));
117 matches.push(rules.filterAt(i).text); 157
118 test.deepEqual(matches.sort(), expectedMatches.sort(), description); 158 withNAD(0, rules =>
119 159 {
120 ElemHideEmulation.clear(); 160 let matches = [];
121 ElemHide.clear(); 161 let push = withNAD(0, filter => matches.push(filter.text));
162
163 for (let i = 0; i < rules.filterCount; i++)
164 push(rules.filterAt(i));
165
166 test.deepEqual(matches.sort(), expectedMatches.sort(), description);
167 })(elemHideEmulation.getRulesForDomain(elemHide, domain));
168
169 elemHideEmulation.clear();
170 })(ElemHide.create(), ElemHideEmulation.create());
122 } 171 }
123 172
124 testSelectorMatches( 173 testSelectorMatches(
125 "Ignore generic filters", 174 "Ignore generic filters",
126 [ 175 [
127 "##[-abp-properties='foo']", "example.com##[-abp-properties='foo']", 176 "##[-abp-properties='foo']", "example.com##[-abp-properties='foo']",
128 "~example.com##[-abp-properties='foo']" 177 "~example.com##[-abp-properties='foo']"
129 ], 178 ],
130 "example.com", 179 "example.com",
131 ["example.com##[-abp-properties='foo']"] 180 ["example.com##[-abp-properties='foo']"]
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
165 ], 214 ],
166 "other.example.com", 215 "other.example.com",
167 ["other.example.com##[-abp-properties='foo']"] 216 ["other.example.com##[-abp-properties='foo']"]
168 ); 217 );
169 218
170 test.done(); 219 test.done();
171 }; 220 };
172 221
173 exports.testElemHideEmulationFiltersContainer = function(test) 222 exports.testElemHideEmulationFiltersContainer = function(test)
174 { 223 {
175 function compareRules(description, domain, expectedMatches) 224 withNAD([0, 1], (elemHide, elemHideEmulation) =>
176 { 225 {
177 let rules = ElemHideEmulation.getRulesForDomain(domain); 226 function compareRules(description, domain, expectedMatches)
sergei 2017/11/16 09:58:07 What about returning a generator object from ElemH
hub 2017/11/20 19:16:01 delete on the result of `rules.filterAt(i)` is an
178 let result = []; 227 {
179 for (let i = 0; i < rules.filterCount; i++) 228 withNAD(0, rules =>
180 result.push(rules.filterAt(i).text); 229 {
181 expectedMatches = expectedMatches.map(filter => filter.text); 230 let result = [];
182 test.deepEqual(result.sort(), expectedMatches.sort(), description); 231 for (let i = 0; i < rules.filterCount; i++)
183 } 232 withNAD(0, filter => result.push(filter.text))(rules.filterAt(i));
184 233
185 let domainFilter = Filter.fromText("example.com##filter1"); 234 expectedMatches = expectedMatches.map(filter => filter.text);
186 let subdomainFilter = Filter.fromText("www.example.com##filter2"); 235 test.deepEqual(result.sort(), expectedMatches.sort(), description);
187 let otherDomainFilter = Filter.fromText("other.example.com##filter3"); 236 })(elemHideEmulation.getRulesForDomain(elemHide, domain));
188 237 }
189 ElemHideEmulation.add(domainFilter); 238
190 ElemHideEmulation.add(subdomainFilter); 239 withNAD([0, 1, 2], (domainFilter, subdomainFilter, otherDomainFilter) =>
191 ElemHideEmulation.add(otherDomainFilter); 240 {
192 compareRules( 241 elemHideEmulation.add(domainFilter);
193 "Return all matching filters", 242 elemHideEmulation.add(subdomainFilter);
194 "www.example.com", 243 elemHideEmulation.add(otherDomainFilter);
195 [domainFilter, subdomainFilter] 244 compareRules(
196 ); 245 "Return all matching filters",
197 246 "www.example.com",
198 ElemHideEmulation.remove(domainFilter); 247 [domainFilter, subdomainFilter]
199 compareRules( 248 );
200 "Return all matching filters after removing one", 249
201 "www.example.com", 250 elemHideEmulation.remove(domainFilter);
202 [subdomainFilter] 251 compareRules(
203 ); 252 "Return all matching filters after removing one",
204 253 "www.example.com",
205 ElemHideEmulation.clear(); 254 [subdomainFilter]
206 compareRules( 255 );
207 "Return no filters after clearing", 256
208 "www.example.com", 257 elemHideEmulation.clear();
209 [] 258 compareRules(
210 ); 259 "Return no filters after clearing",
260 "www.example.com",
261 []
262 );
263 })(Filter.fromText("example.com##filter1"),
264 Filter.fromText("www.example.com##filter2"),
265 Filter.fromText("other.example.com##filter3"));
266 })(ElemHide.create(), ElemHideEmulation.create());
211 267
212 test.done(); 268 test.done();
213 }; 269 };
LEFTRIGHT
« meson.build ('k') | no next file » | Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Toggle Comments ('s')

Powered by Google App Engine
This is Rietveld