-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathdomain_matching_tests.json
More file actions
303 lines (303 loc) · 12.3 KB
/
domain_matching_tests.json
File metadata and controls
303 lines (303 loc) · 12.3 KB
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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
{
"domainTests": {
"name": "URL-matching",
"desc": "interactions between root domain and resource URLs from tracker lists",
"tests": [
{
"name": "same party tracker",
"siteURL": "https://bad.third-party.site/",
"requestURL": "https://bad.third-party.site/",
"requestType": "script",
"expectAction": "ignore",
"exceptPlatforms": []
},
{
"name": "bad loads same root domain resources",
"siteURL": "https://bad.third-party.site/",
"requestURL": "https://third-party.site/",
"requestType": "script",
"expectAction": null,
"exceptPlatforms": []
},
{
"name": "root domain matches itself, not a subdomain",
"siteURL": "https://third-party.site/",
"requestURL": "https://third-party.site/stuff",
"requestType": "script",
"expectAction": null,
"exceptPlatforms": []
},
{
"name": "same party ignore",
"siteURL": "https://ignore.test/",
"requestURL": "https://ignore.test/",
"requestType": "script",
"expectAction": "ignore"
},
{
"name": "tracker loads ignore",
"siteURL": "https://bad.third-party.site/",
"requestURL": "https://ignore.test/",
"requestType": "script",
"expectAction": "ignore"
},
{
"name": "ignore image exception loads tracker image",
"siteURL": "https://ignore.test/",
"requestURL": "https://bad.third-party.site/",
"requestType": "image",
"expectAction": "ignore"
},
{
"name": "ignore image exception doesn't load tracker script",
"siteURL": "https://ignore.test/",
"requestURL": "https://bad.third-party.site/",
"requestType": "script",
"expectAction": "block",
"exceptPlatforms": [
"android-browser"
]
},
{
"name": "notignore doesn't load tracker",
"siteURL": "https://notignore.test/",
"requestURL": "https://bad.third-party.site/",
"requestType": "script",
"expectAction": "block"
},
{
"name": "random blocks tracker",
"siteURL": "https://randomsite123.com/",
"requestURL": "https://bad.third-party.site/",
"requestType": "script",
"expectAction": "block"
},
{
"name": "random blocks cname tracker",
"siteURL": "https://randomsite123.com/",
"requestURL": "https://bad.cnames.test/something",
"requestType": "script",
"expectAction": "block"
},
{
"name": "uncloaked tracker should contain original path and be checked against the ignore rules",
"siteURL": "https://randomsite123.com/",
"requestURL": "https://bad.cnames.test/breakage",
"requestType": "script",
"expectAction": "ignore",
"exceptPlatforms": [
"ios-browser"
]
},
{
"name": "random allows sub.cname tracker",
"siteURL": "https://randomsite123.com/",
"requestURL": "https://also.bad.cnames.test/something",
"requestType": "script",
"expectAction": null,
"exceptPlatforms": [
"ios-browser",
"web-extension-mv3"
]
},
{
"name": "random allows notbad cname tracker",
"siteURL": "https://randomsite123.com/",
"requestURL": "https://notbad.cnames.test/something",
"requestType": "script",
"expectAction": null
},
{
"name": "tracker.test CNAME'd to ignore.test should still be blocked",
"siteURL": "https://randomsite123.com/",
"requestURL": "https://fake-ignore.tracker.test/spy/script.js",
"requestType": "script",
"expectAction": "block",
"exceptPlatforms": [
"ios-browser"
]
},
{
"name": "no blocklist entry for an uncloacked domain - request should not be blocked",
"siteURL": "https://randomsite123.com/",
"requestURL": "https://domain.cloaked.test/some/script.js",
"requestType": "script",
"expectAction": null
},
{
"name": "sub.ignore loads tracker",
"siteURL": "https://sub.ignore.test/",
"requestURL": "https://bad.third-party.site/",
"requestType": "image",
"expectAction": "ignore"
},
{
"name": "tracker loads ignore resource type",
"siteURL": "https://bad.third-party.site/",
"requestURL": "https://ignore.test/",
"requestType": "image",
"expectAction": "ignore"
},
{
"name": "tracker blocks non-ignore resource type",
"siteURL": "https://bad.third-party.site/",
"requestURL": "https://ignore.test/",
"requestType": "script",
"expectAction": "ignore"
},
{
"name": "tracker loads random",
"siteURL": "https://bad.third-party.site/",
"requestURL": "https://random.test/",
"requestType": "script",
"expectAction": null
},
{
"name": "random does not load tracker",
"siteURL": "https://random.test/",
"requestURL": "https://bad.third-party.site/",
"requestType": "script",
"expectAction": "block"
},
{
"name": "random loads itself",
"siteURL": "https://random.test/",
"requestURL": "https://random.test/",
"requestType": "script",
"expectAction": null
},
{
"name": "random loads ignore path on tracker",
"siteURL": "https://random.test/",
"requestURL": "https://bad.third-party.site/ignore",
"requestType": "script",
"expectAction": "ignore"
},
{
"name": "random loads broken.site",
"siteURL": "https://random.test/",
"requestURL": "https://broken.third-party.site/",
"requestType": "script",
"expectAction": "ignore"
},
{
"name": "random loads randomsub.third-party.site",
"siteURL": "https://random.test/",
"requestURL": "https://randomsub.third-party.site/",
"requestType": "script",
"expectAction": null
},
{
"name": "random doesn't load randomsub.tracker",
"siteURL": "https://random.test/",
"requestURL": "https://randomsub.tracker.test/",
"requestType": "script",
"expectAction": "block"
},
{
"name": "tracker loads permitted for same entity",
"siteURL": "https://third-party.site/",
"requestURL": "https://tracker.test/",
"requestType": "script",
"expectAction": "ignore"
},
{
"name": "block tracker path in ignore domain",
"siteURL": "https://random.test/",
"requestURL": "https://ignore.test/tracker?abc=2",
"requestType": "script",
"expectAction": "block"
},
{
"name": "ports are ignored when matching rules",
"siteURL": "https://random.test/",
"requestURL": "https://bad.third-party.site:8080/ignore",
"requestType": "script",
"expectAction": "ignore",
"exceptPlatforms": [
"web-extension",
"ios-browser",
"web-extension-mv3"
]
},
{
"name": "unknown site default action results in default behavior",
"siteURL": "https://random678.site/",
"requestURL": "https://unknown-action.site/",
"requestType": "script",
"expectAction": "ignore"
},
{
"name": "unknown rule action results in default ignore behavior",
"siteURL": "https://random.test/",
"requestURL": "action.ignore.test/tracker",
"requestType": "script",
"expectAction": null
},
{
"name": "unknown rule action results in default block behavior",
"siteURL": "https://random678.site/",
"requestURL": "https://tracker.test/new-new-thing/",
"requestType": "script",
"expectAction": "block"
}
]
},
"surrogateTests": {
"name": "surrogate-tests",
"desc": "interactions between root domain and resource URLs for surrogates",
"tests": [
{
"name": "handle surrogates",
"siteURL": "https://random.test/",
"requestURL": "https://surrogates.test/tracker?abc=2",
"requestType": "script",
"expectAction": "redirect",
"expectRedirect": "data:application/javascript;base64,KGZ1bmN0aW9uKCkge3ZhciB0cmFja2VyPXRydWV9KSgpOw=="
},
{
"name": "skip surrogates for same entity",
"siteURL": "https://other-surrogates.test/",
"requestURL": "https://surrogates.test/tracker?abc=2",
"requestType": "script",
"expectAction": "ignore"
},
{
"name": "surrogates match on substrings",
"siteURL": "https://random.test/",
"requestURL": "https://surrogates.test/trackerNOT?abc=2",
"requestType": "script",
"expectAction": "redirect",
"expectRedirect": "data:application/javascript;base64,KGZ1bmN0aW9uKCkge3ZhciB0cmFja2VyPXRydWV9KSgpOw=="
},
{
"name": "require exact match for surrogates",
"siteURL": "https://random.test/",
"requestURL": "https://surrogates.test/NOTtracker?abc=2",
"requestType": "script",
"expectAction": "ignore"
},
{
"name": "block on undefined surrogates",
"siteURL": "https://random.test/",
"requestURL": "https://surrogates.test/anothertracker?abc=2",
"requestType": "script",
"expectAction": "block"
},
{
"name": "ignore on default-block tracker's surrogates that match rule exception",
"siteURL": "https://exceptedfromsurrogates.org/random",
"requestURL": "https://blockedsurrogates.test/tracker?abc=2",
"requestType": "script",
"expectAction": "ignore"
},
{
"name": "ignore on default-ignore tracker's surrogates that match rule exception",
"siteURL": "https://exceptedfromsurrogates.org/random",
"requestURL": "https://surrogates.test/tracker?abc=2",
"requestType": "script",
"expectAction": "ignore"
}
]
}
}