-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathelemHideEmulation.js
139 lines (126 loc) · 4.3 KB
/
elemHideEmulation.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
/*
* This file is part of Adblock Plus <https://adblockplus.org/>,
* Copyright (C) 2006-present eyeo GmbH
*
* Adblock Plus is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
* Adblock Plus is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>.
*/
"use strict";
const assert = require("assert");
const {LIB_FOLDER, createSandbox} = require("./_common");
let ElemHideEmulationFilter = null;
let elemHideEmulation = null;
let elemHideExceptions = null;
let Filter = null;
describe("Element hiding emulation", function() {
beforeEach(function() {
let sandboxedRequire = createSandbox();
(
{Filter,
ElemHideEmulationFilter} = sandboxedRequire(LIB_FOLDER + "/filterClasses"),
{elemHideEmulation} = sandboxedRequire(LIB_FOLDER + "/elemHideEmulation"),
{elemHideExceptions} = sandboxedRequire(LIB_FOLDER + "/elemHideExceptions")
);
});
it("Domain restrictions", function() {
function testSelectorMatches(description, filters, domain, expectedMatches) {
for (let filter of filters) {
filter = Filter.fromText(filter);
if (filter instanceof ElemHideEmulationFilter)
elemHideEmulation.add(filter);
else
elemHideExceptions.add(filter);
}
let matches = elemHideEmulation.getFilters(domain)
.map(filter => filter.text);
assert.deepEqual(matches.sort(), expectedMatches.sort(), description);
elemHideEmulation.clear();
elemHideExceptions.clear();
}
testSelectorMatches(
"Ignore generic filters",
[
"#?#:-abp-properties(foo)", "example.com#?#:-abp-properties(foo)",
"~example.com#?#:-abp-properties(foo)"
],
"example.com",
["example.com#?#:-abp-properties(foo)"]
);
testSelectorMatches(
"Ignore selectors with exceptions",
[
"example.com#?#:-abp-properties(foo)",
"example.com#?#:-abp-properties(bar)",
"example.com#@#:-abp-properties(foo)"
],
"example.com",
["example.com#?#:-abp-properties(bar)"]
);
testSelectorMatches(
"Ignore filters that include parent domain but exclude subdomain",
[
"~www.example.com,example.com#?#:-abp-properties(foo)"
],
"www.example.com",
[]
);
testSelectorMatches(
"Ignore filters with parent domain if exception matches subdomain",
[
"www.example.com#@#:-abp-properties(foo)",
"example.com#?#:-abp-properties(foo)"
],
"www.example.com",
[]
);
testSelectorMatches(
"Ignore filters for other subdomain",
[
"www.example.com#?#:-abp-properties(foo)",
"other.example.com#?#:-abp-properties(foo)"
],
"other.example.com",
["other.example.com#?#:-abp-properties(foo)"]
);
});
it("Filters container", function() {
function compareFilters(description, domain, expectedMatches) {
let result = elemHideEmulation.getFilters(domain)
.map(filter => filter.text);
expectedMatches = expectedMatches.map(filter => filter.text);
assert.deepEqual(result.sort(), expectedMatches.sort(), description);
}
let domainFilter = Filter.fromText("example.com##filter1");
let subdomainFilter = Filter.fromText("www.example.com##filter2");
let otherDomainFilter = Filter.fromText("other.example.com##filter3");
elemHideEmulation.add(domainFilter);
elemHideEmulation.add(subdomainFilter);
elemHideEmulation.add(otherDomainFilter);
compareFilters(
"Return all matching filters",
"www.example.com",
[domainFilter, subdomainFilter]
);
elemHideEmulation.remove(domainFilter);
compareFilters(
"Return all matching filters after removing one",
"www.example.com",
[subdomainFilter]
);
elemHideEmulation.clear();
compareFilters(
"Return no filters after clearing",
"www.example.com",
[]
);
});
});