-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathdomain_matching_tests.json
More file actions
1103 lines (1103 loc) · 46.8 KB
/
domain_matching_tests.json
File metadata and controls
1103 lines (1103 loc) · 46.8 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
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"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"
},
{
"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": "uncloacked 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": "Tracker URL, same entity; CNAME is tracker (ignore): ignore",
"siteURL": "https://third-party.site/",
"requestURL": "https://fake-ignore.tracker.test/spy/script.js",
"requestType": "script",
"expectAction": "ignore",
"exceptPlatforms": [
"ios-browser"
]
},
{
"name": "Non tracker URL; CNAME is tracker (block), same entity: ignore",
"siteURL": "https://third-party.site/",
"requestURL": "https://bad.cnames.test/spy/script.js",
"requestType": "script",
"expectAction": "ignore",
"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 rule action ignored, default block",
"siteURL": "https://random.test/",
"requestURL": "https://tracker.test/unsupported-action",
"requestType": "script",
"expectAction": "block"
},
{
"name": "unknown rule action ignored, default ignore",
"siteURL": "https://random.test/",
"requestURL": "https://ignore.test/unsupported-action",
"requestType": "script",
"expectAction": "ignore"
},
{
"name": "block tracker with site matching options domains",
"siteURL": "https://site-that-tracks.com",
"requestURL": "https://sometimes-bad.third-party.site/option-blocking-only",
"requestType": "image",
"expectAction": "block"
},
{
"name": "test option match fallback to next rule",
"siteURL": "https://site-that-tracks.com",
"requestURL": "https://sometimes-bad.third-party.site/option-fallback/option-blocking-only2",
"requestType": "image",
"expectAction": "block"
},
{
"name": "don't block tracker with site not matching the option subdomain",
"siteURL": "https://ok-subdomain.also-site-that-tracks.com",
"requestURL": "https://sometimes-bad.third-party.site/option-blocking-only",
"requestType": "image",
"expectAction": "ignore",
"exceptPlatforms": [
"web-extension",
"web-extension-mv3"
]
},
{
"name": "don't block tracker with site matching options domains but not types",
"siteURL": "https://site-that-tracks.com",
"requestURL": "https://sometimes-bad.third-party.site/option-blocking-only",
"requestType": "script",
"expectAction": "ignore"
},
{
"name": "don't block tracker with site matching options domains and exceptions",
"siteURL": "https://site-that-tracks.com",
"requestURL": "https://sometimes-bad.third-party.site/option-blocking-only",
"requestType": "script",
"expectAction": "ignore"
},
{
"name": "don't block tracker with site not matching options domains",
"siteURL": "https://example.com",
"requestURL": "https://sometimes-bad.third-party.site/option-blocking-only",
"requestType": "image",
"expectAction": "ignore"
},
{
"name": "block default block tracker matching option domains",
"siteURL": "https://example.com",
"requestURL": "https://tracker.test/with-options",
"requestType": "image",
"expectAction": "block"
},
{
"name": "block default block tracker not matching option domains",
"siteURL": "https://example2.com",
"requestURL": "https://tracker.test/with-options",
"requestType": "image",
"expectAction": "block",
"exceptPlatforms": [
"ios-browser"
]
},
{
"name": "standard1 - path matches ignore",
"siteURL": "https://example1.com",
"requestURL": "https://standard1.test/ignore1",
"requestType": "script",
"expectAction": "ignore"
},
{
"name": "standard1 - path matches ignore (sandwiched) (type=script)",
"siteURL": "https://example1.com",
"requestURL": "https://standard1.test/request-1b",
"requestType": "script",
"expectAction": "ignore"
},
{
"name": "standard1 - path matches ignore (sandwiched) (type=font)",
"siteURL": "https://example1.com",
"requestURL": "https://standard1.test/request-1b",
"requestType": "font",
"expectAction": "ignore",
"exceptPlatforms": [
"ios-browser"
]
},
{
"name": "standard1 - path matches, exception does not (wrong domain, correct type)",
"siteURL": "https://example1.com",
"requestURL": "https://standard1.test/request-1a",
"requestType": "script",
"expectAction": "block",
"exceptPlatforms": [
"ios-browser"
]
},
{
"name": "standard1 - path matches, exception does not (correct domain, wrong type)",
"siteURL": "https://example2.com",
"requestURL": "https://standard1.test/request-1a",
"requestType": "image",
"expectAction": "block",
"exceptPlatforms": [
"ios-browser"
]
},
{
"name": "standard1 - path (2) matches, exception does not (wrong domain, correct type)",
"siteURL": "https://example1.com",
"requestURL": "https://standard1.test/request-1",
"requestType": "script",
"expectAction": "block",
"exceptPlatforms": [
"ios-browser"
]
},
{
"name": "standard1 - path (2) matches, exception does not (correct domain, wrong type)",
"siteURL": "https://example3.com",
"requestURL": "https://standard1.test/request-1",
"requestType": "stylesheet",
"expectAction": "block",
"exceptPlatforms": [
"ios-browser"
]
},
{
"name": "standard1 - path matches, exception does not (should not confuse with following exception)",
"siteURL": "https://example3.com",
"requestURL": "https://standard1.test/request-1a",
"requestType": "script",
"expectAction": "block",
"exceptPlatforms": [
"ios-browser"
]
},
{
"name": "standard1 - path matches, exception matches",
"siteURL": "https://example2.com",
"requestURL": "https://standard1.test/request-1a",
"requestType": "script",
"expectAction": "ignore"
},
{
"name": "standard1 - path matches, exception matches (2)",
"siteURL": "https://example2a.com",
"requestURL": "https://standard1.test/request-1a",
"requestType": "stylesheet",
"expectAction": "ignore",
"exceptPlatforms": [
"ios-browser"
]
},
{
"name": "standard1 - path (2) matches, exception matches",
"siteURL": "https://example3.com",
"requestURL": "https://standard1.test/request-1",
"requestType": "script",
"expectAction": "ignore"
},
{
"name": "standard1 - path (2) matches, exception matches (2)",
"siteURL": "https://example3a.com",
"requestURL": "https://standard1.test/request-1",
"requestType": "image",
"expectAction": "ignore"
},
{
"name": "standard1 - following ignore matches",
"siteURL": "https://example1.com",
"requestURL": "https://standard1.test/request",
"requestType": "script",
"expectAction": "ignore"
},
{
"name": "standard1 - following ignore matches (2)",
"siteURL": "https://example1.com",
"requestURL": "https://standard1.test/request-2",
"requestType": "script",
"expectAction": "ignore"
},
{
"name": "standard1 - fall back to default",
"siteURL": "https://example1.com",
"requestURL": "https://standard1.test/other",
"requestType": "script",
"expectAction": "block"
},
{
"name": "standard2 - path matches block",
"siteURL": "https://example1.com",
"requestURL": "https://standard2.test/block",
"requestType": "script",
"expectAction": "block"
},
{
"name": "standard2 - path matches ignore (sandwiched) (type=script)",
"siteURL": "https://example1.com",
"requestURL": "https://standard2.test/request-1b",
"requestType": "script",
"expectAction": "ignore",
"exceptPlatforms": [
"ios-browser"
]
},
{
"name": "standard2 - path matches ignore (sandwiched) (type=font)",
"siteURL": "https://example1.com",
"requestURL": "https://standard2.test/request-1b",
"requestType": "font",
"expectAction": "ignore",
"exceptPlatforms": [
"ios-browser"
]
},
{
"name": "standard2 - path matches, exception does not (wrong domain, correct type)",
"siteURL": "https://example1.com",
"requestURL": "https://standard2.test/request-1a",
"requestType": "script",
"expectAction": "block"
},
{
"name": "standard2 - path matches, exception does not (correct domain, wrong type)",
"siteURL": "https://example2.com",
"requestURL": "https://standard2.test/request-1a",
"requestType": "image",
"expectAction": "block"
},
{
"name": "standard2 - path (2) matches, exception does not (wrong domain, correct type)",
"siteURL": "https://example1.com",
"requestURL": "https://standard2.test/request-1",
"requestType": "script",
"expectAction": "block"
},
{
"name": "standard2 - path (2) matches, exception does not (correct domain, wrong type)",
"siteURL": "https://example3.com",
"requestURL": "https://standard2.test/request-1",
"requestType": "stylesheet",
"expectAction": "block",
"exceptPlatforms": [
"ios-browser"
]
},
{
"name": "standard2 - path matches, exception does not (should not confuse with following exception)",
"siteURL": "https://example3.com",
"requestURL": "https://standard2.test/request-1a",
"requestType": "script",
"expectAction": "block"
},
{
"name": "standard2 - path matches, exception matches",
"siteURL": "https://example2.com",
"requestURL": "https://standard2.test/request-1a",
"requestType": "script",
"expectAction": "ignore",
"exceptPlatforms": [
"ios-browser"
]
},
{
"name": "standard2 - path matches, exception matches (2)",
"siteURL": "https://example2a.com",
"requestURL": "https://standard2.test/request-1a",
"requestType": "stylesheet",
"expectAction": "ignore",
"exceptPlatforms": [
"ios-browser"
]
},
{
"name": "standard2 - path (2) matches, exception matches",
"siteURL": "https://example3.com",
"requestURL": "https://standard2.test/request-1",
"requestType": "script",
"expectAction": "ignore",
"exceptPlatforms": [
"ios-browser"
]
},
{
"name": "standard2 - path (2) matches, exception matches (2)",
"siteURL": "https://example3a.com",
"requestURL": "https://standard2.test/request-1",
"requestType": "image",
"expectAction": "ignore",
"exceptPlatforms": [
"ios-browser"
]
},
{
"name": "standard2 - following ignore matches",
"siteURL": "https://example1.com",
"requestURL": "https://standard2.test/request",
"requestType": "script",
"expectAction": "ignore",
"exceptPlatforms": [
"ios-browser"
]
},
{
"name": "standard2 - following ignore matches (2)",
"siteURL": "https://example1.com",
"requestURL": "https://standard2.test/request-2",
"requestType": "script",
"expectAction": "ignore",
"exceptPlatforms": [
"ios-browser"
]
},
{
"name": "standard2 - block following ignore matches",
"siteURL": "https://example1.com",
"requestURL": "https://standard2.test/reques",
"requestType": "script",
"expectAction": "block"
},
{
"name": "standard2 - fall back to default",
"siteURL": "https://example1.com",
"requestURL": "https://standard2.test/other",
"requestType": "script",
"expectAction": "ignore"
},
{
"name": "robustness1 - default:block, less general block after ignore obeys ignore",
"siteURL": "https://example1.com",
"requestURL": "https://robustness1.test/request-1",
"requestType": "script",
"expectAction": "ignore",
"exceptPlatforms": [
"ios-browser"
]
},
{
"name": "robustness2 - default:ignore, less general block after ignore obeys ignore",
"siteURL": "https://example1.com",
"requestURL": "https://robustness2.test/request-1",
"requestType": "script",
"expectAction": "ignore",
"exceptPlatforms": [
"ios-browser"
]
},
{
"name": "options1 - ignore on catch ignore after options",
"siteURL": "https://example2.com",
"requestURL": "https://options1.test/script.js",
"requestType": "script",
"expectAction": "ignore"
},
{
"name": "options1 - block on catch ignore after options",
"siteURL": "https://example.com",
"requestURL": "https://options1.test/script2.js",
"requestType": "script",
"expectAction": "block"
},
{
"name": "options2 - ignore on non-matching options fallback ignore",
"siteURL": "https://example2.com",
"requestURL": "https://options2.test/script.js",
"requestType": "script",
"expectAction": "ignore"
},
{
"name": "options2 - block on matching options (fallthrough subpath)",
"siteURL": "https://example3.com",
"requestURL": "https://options2.test/script.js",
"requestType": "script",
"expectAction": "block",
"exceptPlatforms": [
"ios-browser"
]
},
{
"name": "options2 - block on matching options (fallthrough)",
"siteURL": "https://example2.com",
"requestURL": "https://options2.test/script2.js",
"requestType": "script",
"expectAction": "block",
"exceptPlatforms": [
"ios-browser"
]
},
{
"name": "options2 - block on matching options (subpath match)",
"siteURL": "https://example3.com",
"requestURL": "https://options2.test/script2.js",
"requestType": "script",
"expectAction": "block",
"exceptPlatforms": [
"ios-browser"
]
},
{
"name": "options3 - ignore on non-matching options (fallback exception)",
"siteURL": "https://example2.com",
"requestURL": "https://options3.test/script.js",
"requestType": "script",
"expectAction": "ignore"
},
{
"name": "options3 - block on non-matching options (non-matching exception)",
"siteURL": "https://example4.com",
"requestURL": "https://options3.test/script.js",
"requestType": "stylesheet",
"expectAction": "block",
"exceptPlatforms": [
"ios-browser"
]
},
{
"name": "options3 - block on matching options (fallthrough subpath)",
"siteURL": "https://example3.com",
"requestURL": "https://options3.test/script.js",
"requestType": "script",
"expectAction": "block",
"exceptPlatforms": [
"ios-browser"
]
},
{
"name": "options3 - block on matching options (fallthrough)",
"siteURL": "https://example2.com",
"requestURL": "https://options3.test/script2.js",
"requestType": "script",
"expectAction": "block"
},
{
"name": "options3 - block on matching options (subpath match)",
"siteURL": "https://example3.com",
"requestURL": "https://options3.test/script2.js",
"requestType": "script",
"expectAction": "block",
"exceptPlatforms": [
"ios-browser"
]
},
{
"name": "options4 - default:block - both exceptions and options match (just domains) ignores",
"siteURL": "https://example1.com",
"requestURL": "https://options4.test/script1.js",
"requestType": "script",
"expectAction": "ignore"
},
{
"name": "options4 - default:block - both exceptions and options match (domain + type) ignores",
"siteURL": "https://example1.com",
"requestURL": "https://options4.test/script2.js",
"requestType": "image",
"expectAction": "ignore"
},
{
"name": "options4 - default:block - options match, exceptions only partially match - block",
"siteURL": "https://example1.com",
"requestURL": "https://options4.test/script3.js",
"requestType": "script",
"expectAction": "block"
},
{
"name": "options4 - default:block - options don't match, exceptions match - block",
"siteURL": "https://example1.com",
"requestURL": "https://options4.test/script4.js",
"requestType": "script",
"expectAction": "block",
"exceptPlatforms": [
"ios-browser",
"web-extension-mv3"
]
},
{
"name": "options5 - default:ignore - both exceptions and options match (just domains) ignores",
"siteURL": "https://example1.com",
"requestURL": "https://options5.test/script1.js",
"requestType": "script",
"expectAction": "ignore"
},
{
"name": "options5 - default:ignore - both exceptions and options match (domain + type) ignores",
"siteURL": "https://example1.com",
"requestURL": "https://options5.test/script2.js",
"requestType": "image",
"expectAction": "ignore"
},
{
"name": "options5 - default:ignore - options match, exceptions only partially match - block",
"siteURL": "https://example1.com",
"requestURL": "https://options5.test/script3.js",
"requestType": "script",
"expectAction": "block"
},
{
"name": "options6 - default:block - options match with action:ignore",
"siteURL": "https://example1.com",
"requestURL": "https://options6.test/script1.js",
"requestType": "script",
"expectAction": "ignore"
},
{
"name": "options6 - default:block - rule matches, options don't, action:ignore",
"siteURL": "https://example2.com",
"requestURL": "https://options6.test/script1.js",
"requestType": "script",
"expectAction": "block",
"exceptPlatforms": [
"ios-browser",
"web-extension-mv3"
]
},
{
"name": "options7 - default:ignore - options match with action:ignore",
"siteURL": "https://example1.com",
"requestURL": "https://options7.test/script1.js",
"requestType": "script",
"expectAction": "ignore"
},
{
"name": "options7 - default:ignore - rule matches, options don't, action:ignore",
"siteURL": "https://example2.com",
"requestURL": "https://options7.test/script1.js",
"requestType": "script",
"expectAction": "ignore",
"exceptPlatforms": [
"ios-browser"
]
},
{
"name": "options-trailing-exception - block on options match",
"siteURL": "https://example.com",
"requestURL": "https://options-trailing-exception.test/script.js",
"requestType": "stylesheet",
"expectAction": "block",
"exceptPlatforms": [
"ios-browser"
]
},
{
"name": "options-trailing-exception - ignore on no options match",
"siteURL": "https://example2.com",
"requestURL": "https://options-trailing-exception.test/script.js",
"requestType": "stylesheet",
"expectAction": "ignore",
"exceptPlatforms": [
"ios-browser"
]
},
{
"name": "options-trailing-ignore - block on options match",
"siteURL": "https://example.com",
"requestURL": "https://options-trailing-ignore.test/script.js",
"requestType": "stylesheet",
"expectAction": "block",
"exceptPlatforms": [
"ios-browser"
]
},
{
"name": "options-trailing-ignore - ignore on no options match",
"siteURL": "https://example2.com",
"requestURL": "https://options-trailing-ignore.test/script.js",
"requestType": "stylesheet",
"expectAction": "ignore",
"exceptPlatforms": [
"ios-browser"
]
},
{
"name": "format.test - supports unescaped slashes",
"siteURL": "https://example.com",
"requestURL": "https://format.test/test1.js",
"requestType": "script",
"expectAction": "ignore"
},
{
"name": "format.test - supports simple regexp - matching request",
"siteURL": "https://example.com",
"requestURL": "https://format.test/1/test2.js",
"requestType": "script",
"expectAction": "ignore"
},
{
"name": "format.test - supports simple regexp - nonmatching request",
"siteURL": "https://example.com",
"requestURL": "https://format.test/a/test2.js",
"requestType": "script",
"expectAction": "block"
},
{
"name": "format.test - supports CBR regexp - matching request (1)",
"siteURL": "https://example.com",
"requestURL": "https://format.test/aa123b.cdeffffg/test2b.js",
"requestType": "script",
"expectAction": "ignore"
},
{
"name": "format.test - supports CBR regexp - matching request (2)",
"siteURL": "https://example.com",
"requestURL": "https://format.test/ab.cd/test2b.js",
"requestType": "script",
"expectAction": "ignore"
},
{
"name": "format.test - supports CBR regexp - nonmatching request (1)",
"siteURL": "https://example.com",
"requestURL": "https://format.test/aa123b.cffffg/test2b.js",
"requestType": "script",
"expectAction": "block"
},
{
"name": "format.test - supports CBR regexp - nonmatching request (2)",
"siteURL": "https://example.com",
"requestURL": "https://format.test/ab1cd/test2b.js",
"requestType": "script",
"expectAction": "block"
},
{
"name": "format.test - with subdomain - match on sub subdomain",
"siteURL": "https://example.com",
"requestURL": "https://sub0.sub1.sub2.format.test/test4.js",
"requestType": "script",
"expectAction": "ignore"
},
{
"name": "format.test - with subdomain - don't match on just lower subdomain",
"siteURL": "https://example.com",
"requestURL": "https://sub1.format.test/test4.js",
"requestType": "script",
"expectAction": "block"
},
{
"name": "format.test - with subdomain - match on full subdomain",
"siteURL": "https://example.com",
"requestURL": "https://sub1.sub2.format.test/test4.js",
"requestType": "script",
"expectAction": "ignore"
},
{
"name": "format.test - with subdomain - don't match for incorrect subdomain",
"siteURL": "https://example.com",
"requestURL": "https://sub1nsub2.format.test/test4.js",
"requestType": "script",
"expectAction": "block"
},
{
"name": "format.test - with subdomain - don't match on incorrect subdomain",
"siteURL": "https://example.com",
"requestURL": "https://sub0.sub2.format.test/test4.js",
"requestType": "script",
"expectAction": "block"
},
{
"name": "format.test - with subdomain and regexp - match on sub subdomain",
"siteURL": "https://example.com",
"requestURL": "https://sub0.sub1.sub2.format.test/a/test4a.js",
"requestType": "script",
"expectAction": "ignore"
},
{
"name": "format.test - with subdomain and regexp - don't match on just lower subdomain",
"siteURL": "https://example.com",
"requestURL": "https://sub1.format.test/a/test4a.js",
"requestType": "script",
"expectAction": "block"
},
{
"name": "format.test - with subdomain and regexp - match on full subdomain",
"siteURL": "https://example.com",
"requestURL": "https://sub1.sub2.format.test/a/test4a.js",
"requestType": "script",
"expectAction": "ignore"
},
{
"name": "format.test - with subdomain and regexp - don't match for incorrect subdomain",
"siteURL": "https://example.com",
"requestURL": "https://sub1nsub2.format.test/a/test4a.js",
"requestType": "script",
"expectAction": "block"
},
{
"name": "format.test - with subdomain and regexp - don't match on incorrect subdomain",
"siteURL": "https://example.com",
"requestURL": "https://sub0.sub2.format.test/a/test4a.js",
"requestType": "script",
"expectAction": "block"
},
{
"name": "format.test - domain in rule - match on full request",
"siteURL": "https://example.com",
"requestURL": "https://sub1.format.test/sub2.format.test/test4b.js",
"requestType": "script",
"expectAction": "ignore"
},
{
"name": "format.test - domain in rule - don't match the inner request",
"siteURL": "https://example.com",
"requestURL": "https://sub2.format.test/test4b.js",
"requestType": "script",
"expectAction": "block"
},
{
"name": "format.test - no escape on domain - matching request",
"siteURL": "https://example.com",
"requestURL": "https://format.test/test5.js",
"requestType": "script",
"expectAction": "ignore"
},
{
"name": "format.test - no escape on subdomain - match with periods",
"siteURL": "https://example.com",
"requestURL": "https://sub1.sub2.format.test/test6.js",
"requestType": "script",
"expectAction": "ignore"
},
{
"name": "format.test - no escape on subdomain - match with replacements",
"siteURL": "https://example.com",
"requestURL": "https://sub1asub2.format.test/test6.js",
"requestType": "script",
"expectAction": "ignore"
},
{
"name": "private eTLD+1 tracker - default block match",
"siteURL": "https://example.com",
"requestURL": "https://privateetld.appspot.com/script.js",
"requestType": "script",
"expectAction": "block"
},
{
"name": "private eTLD+1 other domain - no match",
"siteURL": "https://example.com",
"requestURL": "https://other.appspot.com/script.js",
"requestType": "script"
},
{
"name": "private eTLD tracker - default block match",
"siteURL": "https://example.com",
"requestURL": "https://track.withgoogle.com/script.js",
"requestType": "script",
"expectAction": "block"
}
]
},