-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathregression-tests.action
1154 lines (1058 loc) · 41.6 KB
/
regression-tests.action
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
#############################################################################
#
# This is a configuration file for Privoxy-Regression-Test
# (included in the source tarball's tools directory and available at
# https://www.privoxy.org/gitweb/?p=privoxy.git;a=blob;f=tools/privoxy-regression-test.pl;hb=HEAD).
#
# After referencing this file in your Privoxy configuration both Privoxy and
# Privoxy-Regression-Test should be good to go.
#
#############################################################################
#
# Copyright (c) 2007-2021 Fabian Keil <[email protected]>
#
# Permission to use, copy, modify, and distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
# copyright notice and this permission notice appear in all copies.
#
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#
#############################################################################
{{settings}}
for-privoxy-version=3.0.33
# Some dependencies Privoxy-Regression-Test should know about:
#
# Level 9 needs = config line user-manual\s+(\.?\.?/|[A-Za-z]:)
# Level 12 needs = feature status FEATURE_CGI_EDIT_ACTIONS Yes
# Level 12 needs = config line enable-edit-actions\s+1
# Level 13 needs = feature status FEATURE_CONNECTION_KEEP_ALIVE Yes
# Level 13 needs = config line keep-alive-timeout\s+(2[1-9]+|[3-9]\d+|1\d{2,})
# Level 14 needs = feature status FEATURE_CONNECTION_KEEP_ALIVE No
# Level 15 needs = config line connection-sharing\s+0
# Level 16 needs = feature status FEATURE_CONNECTION_KEEP_ALIVE Yes
# Level 16 needs = config line connection-sharing\s+1
# Level 17 needs = feature status FEATURE_64_BIT_TIME_T Yes
# Level 18 needs = feature status FEATURE_GRACEFUL_TERMINATION No
# Level 19 needs = feature status FEATURE_GRACEFUL_TERMINATION Yes
# Level 20 needs = config line enable-remote-toggle\s+1
# Level 21 needs = config line enable-remote-toggle\s+0
# Level 22 needs = config line enable-proxy-authentication-forwarding\s+0
# Level 23 needs = config line enable-proxy-authentication-forwarding\s+1
# Level 24 needs = feature status FEATURE_CLIENT_TAGS Yes
# Level 25 needs = feature status FEATURE_HTTPS_INSPECTION No
# Level 26 needs = feature status FEATURE_PCRE_HOST_PATTERNS Yes
#######################################################
# Enable taggers to activate the tests on demand
# and suppress hiding the User-Agent for
# Privoxy-Regression-Test to save log space.
#######################################################
{\
+client-header-tagger{user-agent} \
+client-header-tagger{privoxy-control} \
+client-header-filter{privoxy-control} \
}
config.privoxy.org/
p.p/
127.0.0.1/
{-hide-user-agent}
TAG:^User-Agent: Privoxy-Regression-Test
#######################################################
# Test accept-language{}.
#######################################################
{+hide-accept-language{en-gb}}
# Set Header = Accept-Language: de-de
# Expect Header = Accept-Language: en-gb
TAG:^hide-accept-language\{en-gb\}$
{+hide-accept-language{block}}
# Set Header = Accept-Language: de-de
# Expect Header = REMOVAL
TAG:^hide-accept-language\{block\}$
#######################################################
# Sections for hide-referrer{} to test:
#
# 1) conditional-block
# 2) conditional-forge
# 3) forge
# 4) block
# 5) a parameter that looks like a valid fake referrer
# 6) a parameter that looks like an invalid fake referrer
#######################################################
{+hide-referrer{conditional-block}}
# Set Header = Referer: http://www.example.org/foo
# Expect Header = REMOVAL
#
# Set Header = Referer: http://p.p/foo
# Expect Header = NO CHANGE
#
# Set Header = Referer: p.p/
# Expect Header = REMOVAL
#
# Set Header = Referer: p
# Expect Header = REMOVAL
#
# Set Header = Referer: http://
# Expect Header = REMOVAL
#
# Set Header = Referer: https://www.privoxy.org/
# Expect Header = REMOVAL
#
# Set Header = Referer: http://www.privoxy.org/
# Expect Header = REMOVAL
TAG:^hide-referrer\{conditional-block\}$
{+hide-referrer{conditional-forge}}
# Set Header = Referer: http://www.example.org/foo
# Expect Header = Referer: http://p.p/
#
# Set Header = Referer: http://p.p/foo
# Expect Header = NO CHANGE
#
# Set Header = Referer: p.p/
# Expect Header = Referer: http://p.p/
#
# Set Header = Referer: p
# Expect Header = Referer: http://p.p/
#
# Set Header = Referer: http://
# Expect Header = Referer: http://p.p/
#
# Set Header = Referer: https://www.privoxy.org/
# Expect Header = Referer: http://p.p/
#
# Set Header = Referer: http://www.privoxy.org/
# Expect Header = Referer: http://p.p/
TAG:^hide-referrer\{conditional-forge\}$
{+hide-referrer{forge}}
# Set Header = Referer: http://www.example.org/foo
# Expect Header = Referer: http://p.p/
TAG:^hide-referrer\{forge\}$
{+hide-referrer{block}}
# Set Header = Referer: http://www.example.org/foo
# Expect Header = REMOVAL
TAG:^hide-referrer\{block\}$
{+hide-referrer{invalid}}
# Set Header = Referer: http://www.example.org/foo
# Expect Header = Referer: invalid
TAG:^hide-referrer\{invalid\}$
{+hide-referrer{http://www.privoxy.org/}}
# Set Header = Referer: http://www.example.org/asdf
# Expect Header = Referer: http://www.privoxy.org/
TAG:^hide-referrer\{http://www.privoxy.org/\}$
#{+hide-referrer{}}
#TAG:^hide-referrer\{\}$
#######################################################
# Test hide-user-agent{}.
#######################################################
{+hide-user-agent{Mozilla/5.0 (X11; U; FreeBSD alpha; en-GB; rv:1.8.1.6) Gecko/20070913 Firefox/2.0.0.6}}
# Set Header = User-Agent: Mozilla/5.0 (X11; U; NetBSD i386; de-CH; rv:1.8.1.6) Gecko/20070806 Firefox/2.0.0.6
# Expect Header = User-Agent: Mozilla/5.0 (X11; U; FreeBSD alpha; en-GB; rv:1.8.1.6) Gecko/20070913 Firefox/2.0.0.6
TAG:^hide-user-agent\{Mozilla/5\.0 \(X11; U; FreeBSD alpha; en-GB; rv:1\.8\.1\.6\) Gecko/20070913 Firefox/2\.0\.0\.6\}$
{+hide-user-agent{block}}
# XXX: Check the code that is tested here.
# Set Header = ua-blah: blah
# Expect Header = REMOVAL
TAG:^hide-user-agent{block}$
{-hide-user-agent{}}
# Set Header = ua-blah: blah
# Expect Header = NO CHANGE
TAG:^-hide-user-agent{block}$
#######################################################
# Test add-header{}.
#######################################################
{+add-header{X-Custom-Header: yes, please}}
# Set Header = X-Whatever: foo
# Expect Header = X-Custom-Header: yes, please
TAG:^add-header\{X-Custom-Header: yes, please\}$
#######################################################
# Test client-header-filter{hide-tor-exit-notation}.
#######################################################
{+client-header-filter{hide-tor-exit-notation} -hide-referer}
# Set Header = Referer: http://p.p.zwiebelsuppe.exit/
# Expect Header = Referer: http://p.p/
#
# Set Header = Referer: http://p.p.zwiebelsuppe.exit/foo/bar/baaz/
# Expect Header = Referer: http://p.p/foo/bar/baaz/
#
# Set Header = Referer: http://p.p/
# Expect Header = NO CHANGE
#
# Set Header = Referer: http://config.privoxy.org.zwiebelsuppe.exit/foo/bar/baaz.html
# Expect Header = Referer: http://config.privoxy.org/foo/bar/baaz.html
#
# Set Header = Host: p.p.zwiebelsuppe.exit
# Expect Header = Host: p.p
#
# Set Header = Host: p.p
# Expect Header = NO CHANGE
#
# Set Header = Referer: http://config.privoxy.org.ad356ef8e87a89e6c898b74500d58607ac691178.exit/foo/baaz.html
# Expect Header = Referer: http://config.privoxy.org/foo/baaz.html
TAG:^client-header-filter\{hide-tor-exit-notation\}$
#######################################################
# Test client-header-filter{no-brotli-accepted}.
#######################################################
{+client-header-filter{no-brotli-accepted}}
# Set Header = Accept-Encoding: gzip, deflate, br
# Expect Header = Accept-Encoding: gzip, deflate
#
# Set Header = Accept-Encoding: gzip, br, deflate
# Expect Header = Accept-Encoding: gzip, deflate
#
# Set Header = Accept-Encoding: br, gzip, deflate
# Expect Header = Accept-Encoding: gzip, deflate
#
# Set Header = Accept-Encoding: br
# Expect Header = Accept-Encoding:
#
# Set Header = Accept-Encoding: gzip, deflate
# Expect Header = NO CHANGE
#
TAG:^client-header-filter\{no-brotli-accepted\}$
#######################################################
# Test crunch-client-header{}.
#######################################################
{+crunch-client-header{text/html}}
# Set Header = Content-Type: text/html
# Expect Header = REMOVAL
#
# Set Header = Content-Type: text/html; charset=4711
# Expect Header = REMOVAL
#
# Set Header = Content-Type: text/plain
# Expect Header = NO CHANGE
TAG:^crunch-client-header\{text/plain\}$
#######################################################
# Test crunch-if-none-match.
#######################################################
{+crunch-if-none-match -hide-if-modified-since}
# Set Header = If-None-Match: 8987afd239d2093kd2309kd
# Expect Header = REMOVAL
#
# Set Header = If-None-Match: 82c3cb50c984ef11b1fed749949b2a16
# Expect Header = REMOVAL
#
# Set Header = If-Modified-Since: Thu, 04 Oct 2007 09:56:35 GMT
# Expect Header = NO CHANGE
TAG:^crunch-if-none-match$
#######################################################
# Test hide-if-modified-since
#######################################################
{+hide-if-modified-since{block} -crunch-if-none-match}
# Set Header = If-Modified-Since: Thu, 04 Oct 2007 09:56:35 GMT
# Expect Header = REMOVAL
#
# Set Header = If-None-Match: 82c3cb50c984ef11b1fed749949b2a16
# Expect Header = NO CHANGE
TAG:^hide-if-modified-since\{block\}$
{+hide-if-modified-since{-60} -crunch-if-none-match}
# Set Header = If-Modified-Since: Gee, this date is invalid
# Expect Header = REMOVAL
#
# Set Header = If-Modified-Since: Thu, 04 Oct 2007 09:56:35 GMT
# Expect Header = SOME CHANGE
# Set Header = If-Modified-Since: Thu, 04-Oct-07 09:56:35 GMT
# Expect Header = SOME CHANGE
# Set Header = If-Modified-Since: Thursday, 04-Oct-2007 09:56:35 GMT
# Expect Header = SOME CHANGE
# Set Header = If-Modified-Since: Thu, 04-Oct-2007 09:56:35 GMT
# Expect Header = SOME CHANGE
# Set Header = If-Modified-Since: Thursday Oct 04 09:56:35 2007 GMT
# Expect Header = SOME CHANGE
#
# Set Header = If-Modified-Since: Thu, 1 Jan 1970 00:00:00 GMT
# Expect Header = SOME CHANGE
# Level = 17
# Set Header = If-Modified-Since: Thu, 01-Jan-70 00:00:00 GMT
# Expect Header = SOME CHANGE
# Level = 17
# Set Header = If-Modified-Since: Thursday, 01-Jan-1970 00:00:00 GMT
# Expect Header = SOME CHANGE
# Level = 17
# Set Header = If-Modified-Since: Thu, 01-Jan-1970 00:00:00 GMT
# Expect Header = SOME CHANGE
# Level = 17
# Set Header = If-Modified-Since: Thursday Jan 01 00:00:00 1970 GMT
# Expect Header = SOME CHANGE
# Level = 17
#
# Set Header = If-Modified-Since: Thu, 1 Jan 123456789 00:00:00 GMT
# Expect Header = REMOVAL
# Set Header = If-Modified-Since: Thu, 01-Jan-123456789 00:00:00 GMT
# Expect Header = REMOVAL
# Set Header = If-Modified-Since: Thursday, 01-Jan-123456789 00:00:00 GMT
# Expect Header = REMOVAL
# Set Header = If-Modified-Since: Thu, 01-Jan-123456789 00:00:00 GMT
# Expect Header = REMOVAL
# Set Header = If-Modified-Since: Thursday Jan 01 00:00:00 123456789 GMT
# Expect Header = REMOVAL
#
# Set Header = If-Modified-Since: Mon, 1 Jan 2525 00:00:00 GMT
# Expect Header = SOME CHANGE
# Level = 17
# Set Header = If-Modified-Since: Mon, 01-Jan-25 00:00:00 GMT
# Expect Header = SOME CHANGE
# Level = 17
# Set Header = If-Modified-Since: Monday, 01-Jan-2525 00:00:00 GMT
# Expect Header = SOME CHANGE
# Level = 17
# Set Header = If-Modified-Since: Mon, 01-Jan-2525 00:00:00 GMT
# Expect Header = SOME CHANGE
# Level = 17
# Set Header = If-Modified-Since: Monday Jan 01 00:00:00 2525 GMT
# Expect Header = SOME CHANGE
# Level = 17
#
# Set Header = If-Modified-Since: Thu, 1 Jan 1970 02:00:00 GMT
# Expect Header = SOME CHANGE
# Set Header = If-Modified-Since: Thu, 01-Jan-70 02:00:00 GMT
# Expect Header = SOME CHANGE
# Set Header = If-Modified-Since: Thursday, 01-Jan-1970 02:00:00 GMT
# Expect Header = SOME CHANGE
# Set Header = If-Modified-Since: Thu, 01-Jan-1970 02:00:00 GMT
# Expect Header = SOME CHANGE
# Set Header = If-Modified-Since: Thursday Jan 01 02:00:00 1970 GMT
# Expect Header = SOME CHANGE
TAG:^hide-if-modified-since\{-60\}$
{+hide-if-modified-since{+60} -crunch-if-none-match}
# Set Header = If-Modified-Since: Gee, this date is invalid
# Expect Header = REMOVAL
# Set Header = If-Modified-Since: Thu, 04 Oct 2007 09:56:35 GMT
# Expect Header = SOME CHANGE
# Set Header = If-Modified-Since: Wed, 31 Dec 1969 23:59:59 GMT
# Expect Header = SOME CHANGE
# Level = 17
TAG:^hide-if-modified-since\{\+60\}$
{+hide-if-modified-since{60} -crunch-if-none-match}
# Set Header = If-Modified-Since: Gee, this date is invalid
# Expect Header = REMOVAL
# Set Header = If-Modified-Since: Thu, 04 Oct 2007 09:56:35 GMT
# Expect Header = SOME CHANGE
TAG:^hide-if-modified-since\{60\}$
{+hide-if-modified-since{+0} -crunch-if-none-match}
# Set Header = If-Modified-Since: Gee, this date is invalid
# Expect Header = REMOVAL
# Set Header = If-Modified-Since: Thu, 04 Oct 2007 09:56:35 GMT
# Expect Header = NO CHANGE
TAG:^hide-if-modified-since\{\+0\}$
{+hide-if-modified-since{-0} -crunch-if-none-match}
# Set Header = If-Modified-Since: Gee, this date is invalid
# Expect Header = REMOVAL
# Set Header = If-Modified-Since: Thu, 04 Oct 2007 09:56:35 GMT
# Expect Header = NO CHANGE
TAG:^hide-if-modified-since\{-0\}$
{+hide-if-modified-since{0} -crunch-if-none-match}
# Set Header = If-Modified-Since: Gee, this date is invalid
# Expect Header = REMOVAL
# Set Header = If-Modified-Since: Thu, 04 Oct 2007 09:56:35 GMT
# Expect Header = NO CHANGE
TAG:^hide-if-modified-since\{0\}$
{+hide-if-modified-since{NaN} -crunch-if-none-match}
# Set Header = If-Modified-Since: Gee, this date is invalid
# Expect Header = REMOVAL
# Set Header = If-Modified-Since: Thu, 04 Oct 2007 09:56:35 GMT
# Expect Header = NO CHANGE
TAG:^hide-if-modified-since\{NaN\}$
#######################################################
# Test crunch-outgoing-cookies
#######################################################
{\
+crunch-outgoing-cookies \
-crunch-incoming-cookies \
-limit-cookie-lifetime \
-session-cookies-only \
-hide-if-modified-since \
}
# Set Header = If-Modified-Since: Gee, this date is invalid
# Expect Header = NO CHANGE
#
# Set Header = Cookie: PREF=ID=6cf0abd34262:TM=117335617:LM=1617:S=jZypyJ7LPiwFi1_
# Expect Header = REMOVAL
TAG:^crunch-outgoing-cookies$
#######################################################
# Test session-cookies-only
#
# XXX: pretty useless as session-cookies-only doesn't
# affect client headers.
#######################################################
{\
-crunch-outgoing-cookies \
-crunch-incoming-cookies \
-limit-cookie-lifetime \
+session-cookies-only \
-hide-if-modified-since \
}
# Set Header = Cookie: NSC_gffe-iuuq-mc-wtfswfs=8efb330d3660;expires=Thu, 04-Oct-07 19:11:34 GMT;path=/
# Expect Header = NO CHANGE
#
# Set Header = Cookie: PREF=ID=6cf0abd34262:TM=117335617:LM=1617:S=jZypyJ7LPiwFi1_
# Expect Header = NO CHANGE
TAG:^session-cookies-only$
#######################################################
# Test change-x-forwarded-for
#######################################################
{\
-change-x-forwarded-for \
}
# Set Header = X-Forwarded-For: 10.0.0.1
# Expect Header = NO CHANGE
TAG:^-change-x-forwarded-for$
{\
+change-x-forwarded-for{block} \
}
# Set Header = X-Forwarded-For: 10.0.0.1
# Expect Header = REMOVAL
TAG:^change-x-forwarded-for\{block\}$
{\
+change-x-forwarded-for{add} \
}
# Set Header = X-Forwarded-For: 10.0.0.1
# Expect Header = SOME CHANGE
TAG:^change-x-forwarded-for\{add\}$
#######################################################
# Test hide-from-header
#######################################################
{\
+hide-from-header{block}\
}
# Set Header = From: [email protected]
# Expect Header = REMOVAL
TAG:^hide-from-header\{block\}$
{\
+hide-from-header{[email protected]}\
}
# Set Header = From: [email protected]
# Expect Header = From: [email protected]
TAG:^hide-from-header\{[email protected]\}$
#######################################################
# Test prevent-compression
#######################################################
{\
+prevent-compression\
}
# Set Header = Accept-Encoding: gzip, deflate
# Expect Header = REMOVAL
#
# Set Header = Accept-Encoding: gzip
# Expect Header = REMOVAL
#
# Set Header = Accept-Encoding: deflate
# Expect Header = REMOVAL
TAG:^prevent-compression$
#######################################################
# Test content filters which could cause problems with
# range requests.
#######################################################
{\
-client-header-tagger{range-requests} \
+deanimate-gifs{last} \
-filter \
}
# Set Header = Range: bytes=1234-5678
# Expect Header = REMOVAL
# Set Header = Range: bytes=1-5
# Expect Header = REMOVAL
# Set Header = If-Range: bytes=1234-5678
# Expect Header = REMOVAL
# Set Header = Request-Range: bytes=1234-5678
# Expect Header = REMOVAL
# Set Header = Range: foo
# Expect Header = REMOVAL
# Set Header = If-Range: foo
# Expect Header = REMOVAL
# Set Header = Request-Range: foo
# Expect Header = REMOVAL
# Set Header = Range: bytes=0-5678
# Expect Header = NO CHANGE
# Set Header = Range: bytes=0-
# Expect Header = NO CHANGE
# Set Header = If-Range: bytes=0-5678
# Expect Header = NO CHANGE
# Set Header = If-Range: bytes=0-
# Expect Header = NO CHANGE
# Set Header = Request-Range: bytes=0-5678
# Expect Header = NO CHANGE
# Set Header = Request-Range: bytes=0-
# Expect Header = NO CHANGE
TAG:^deanimate-gifs\{last\}$
{\
-client-header-tagger{range-requests} \
-deanimate-gifs \
+filter{banners-by-size} \
}
# Set Header = Range: bytes=1234-5678
# Expect Header = REMOVAL
# Set Header = Range: bytes=1-5
# Expect Header = REMOVAL
# Set Header = If-Range: bytes=1234-5678
# Expect Header = REMOVAL
# Set Header = Request-Range: bytes=1234-5678
# Expect Header = REMOVAL
# Set Header = Range: bytes=1-5
# Expect Header = REMOVAL
# Set Header = If-Range: bytes=1234-5678
# Expect Header = REMOVAL
# Set Header = Request-Range: bytes=1234-5678
# Expect Header = REMOVAL
# Set Header = Range: foo
# Expect Header = REMOVAL
# Set Header = If-Range: foo
# Expect Header = REMOVAL
# Set Header = Request-Range: foo
# Expect Header = REMOVAL
# Set Header = Range: bytes=0-5678
# Expect Header = NO CHANGE
# Set Header = Range: bytes=0-
# Expect Header = NO CHANGE
# Set Header = If-Range: bytes=0-5678
# Expect Header = NO CHANGE
# Set Header = If-Range: bytes=0-
# Expect Header = NO CHANGE
# Set Header = Request-Range: bytes=0-5678
# Expect Header = NO CHANGE
# Set Header = Request-Range: bytes=0-
# Expect Header = NO CHANGE
TAG:^filter\{banners-by-size\}$
{\
-client-header-tagger{range-requests} \
-deanimate-gifs \
-filter \
}
# Set Header = Range: bytes=1234-5678
# Expect Header = NO CHANGE
# Set Header = If-Range: bytes=1234-5678
# Expect Header = NO CHANGE
# Set Header = Request-Range: bytes=1234-5678
# Expect Header = NO CHANGE
TAG:^no-content-filter$
{}
# Set Header = Connection: keep-alive
# Expect Header = NO CHANGE
# Level = 13
# Set Header = Connection:
# Expect Header = REMOVAL
# Level = 13
TAG:^Connection: keep-alive$
{}
# Set Header = Connection: keep-alive
# Expect Header = Connection: close
# Level = 14
# Set Header = Connection:
# Expect Header = Connection: close
# Level = 14
TAG:^Connection: close$
{}
# Set Header = Connection: close
# Expect Header = NO CHANGE
# Level = 15
TAG:^connection-sharing disabled$
{}
# XXX: This test is expected to fail when using "https://p.p/"
# as CGI prefix with https inspection enabled but can't
# yet be automatically skipped. By design connections aren't
# shared when using "https://" so Privoxy does not remove the
# header.
# Set Header = Connection: close
# Expect Header = REMOVAL
# Level = 16
# Set Header = Connection: keep-alive
# Expect Header = NO CHANGE
# Level = 16
TAG:^connection-sharing enabled$
{}
# XXX: Removing a header by not specifying a value is
# an inherited curl feature and could be viewed as a
# bug as far as Privoxy-Regression-Test is concerned.
#
# Set Header = Host:
# Expect Header = Host: p.p
TAG:^No Host header$
{}
# XXX: This test is expected to fail when using "https://p.p/"
# as CGI prefix with https inspection enabled but can't
# yet be automatically skipped. The reason for the test
# failure is that Privoxy-Regression-Test only modifies
# the Host header for the CONNECT request, not for the
# actual request that follows. Changing that would not
# fix the test though as a modified Host header in the
# actual request would result in Privoxy attempting to
# connect to it.
# Set Header = Host: whatever.example.org
# Expect Header = NO CHANGE
TAG:^Host header other than the target host$
{}
# Set Header = Keep-Alive: 20
# Expect Header = NO CHANGE
# Level = 13
# Set Header = Keep-Alive: timeout=20, max=3
# Expect Header = NO CHANGE
# Level = 13
# Set Header = Keep-Alive: blah=fasel, timeout=20, max=3
# Expect Header = NO CHANGE
# Level = 13
# Set Header = Keep-Alive: timeuot=20, max=3
# Expect Header = REMOVAL
# Level = 13
# Set Header = Keep-Alive: twenty seconds please
# Expect Header = REMOVAL
# Level = 13
TAG:^Parse Keep-Alive header$
{}
# Set Header = Keep-Alive: 20
# Expect Header = REMOVAL
# Level = 14
# Set Header = Keep-Alive: timeout=20, max=3
# Expect Header = REMOVAL
# Level = 14
# Set Header = Keep-Alive: blah=fasel, timeout=20, max=3
# Expect Header = REMOVAL
# Level = 14
TAG:^Keep-Alive header removal$
{}
# XXX: check the RFC to use a real value
# Set Header = proxy-connection: keep-alive
# Expect Header = REMOVAL
TAG:^Proxy-Connection removal$
{}
# Set Header = Proxy-Connection: keep-alive
# Expect Header = REMOVAL
TAG:^Proxy-Connection removal$
{}
# These are somewhat redundant when testing with
# GET requests, but I want to remember then when
# TRACE requests are supported.
#
# Set Header = Max-Forwards: 0
# Expect Header = NO CHANGE
# Set Header = Max-Forwards: 1
# Expect Header = NO CHANGE
# Set Header = Max-Forwards: -1
# Expect Header = NO CHANGE
# Set Header = Max-Forwards: 3
# Expect Header = NO CHANGE
TAG:^Max-Forwards header without TRACE method$
{}
# Set Header = Proxy-Authorization: blafaseldieda
# Expect Header = REMOVAL
# Level = 22
TAG:^Proxy-Authorization header removal$
{}
# Set Header = Proxy-Authorization: blafaseldieda
# Expect Header = Proxy-Authorization: blafaseldieda
# Level = 23
TAG:^Proxy-Authorization header forwarding$
################################################################
#
# Fairly dumb tests for Privoxy CGI pages.
#
# These are mainly useful for checking for memory leaks
# with Valgrind or whether or not the user manual is installed
# correctly.
#
# Note that if "Expect Status Code" is missing, 200 is implied.
#
################################################################
# Fetch Test = http://p.p/
# Fetch Test = http://p.p/die
# Expect Status Code = 404
# Level = 18
# Fetch Test = http://p.p/die
# Expect Status Code = 403
# Level = 19
# Fetch Test = http://p.p/show-status
# Fetch Test = http://config.privoxy.org/show-status?file=actions&index=0
# Fetch Test = http://config.privoxy.org/show-status?file=filter&index=0
# XXX: for the invalid ones we probably shouldn't return status code 200.
# Fetch Test = http://config.privoxy.org/show-status?file=actions&index=100
# Fetch Test = http://config.privoxy.org/show-status?file=actions&index=NaN
# Fetch Test = http://config.privoxy.org/show-status?file=actions
# Fetch Test = http://config.privoxy.org/show-status?file=filter&index=100
# Fetch Test = http://config.privoxy.org/show-status?file=filter&index=NaN
# Fetch Test = http://config.privoxy.org/show-status?file=filter
# Fetch Test = http://config.privoxy.org/show-status?file=invalid
# Fetch Test = http://config.privoxy.org/show-status?file=trust
# Fetch Test = http://p.p/show-version
# Expect Status Code = 404
# Fetch Test = http://p.p/show-request
# Fetch Test = http://p.p/show-url-info
# Fetch Test = http://p.p/show-url-info?url=www.privoxy.org%2F
# Fetch Test = http://p.p/show-url-info?url=http:%2F%2Fwww.privoxy.org%2F
# Fetch Test = http://p.p/show-url-info?url=HTTp:%2F%2Fwww.privoxy.org%2F
# Fetch Test = http://p.p/show-url-info?url=https:%2F%2Fwww.privoxy.org%2F
# Fetch Test = http://p.p/show-url-info?url=HtTps:%2F%2Fwww.privoxy.org%2F
# Fetch Test = http://p.p/show-url-info?url=ftp:%2F%2Fwww.privoxy.org%2F
# Fetch Test = http://p.p/show-url-info?url=FTp:%2F%2Fwww.privoxy.org%2F
# Fetch Test = http://p.p/show-url-info?url=
# Fetch Test = http://p.p/show-url-info?url=%2F
# Depends on FEATURE_TOGGLE
# Fetch Test = http://p.p/toggle
# Level = 20
# Fetch Test = http://p.p/toggle
# Expect Status Code = 403
# Level = 21
# Fetch Test = http://p.p/edit-actions
# Expect Status Code = 403
# Level = 12
# Fetch Test = http://p.p/eaa
# Expect Status Code = 403
# Level = 12
# Fetch Test = http://p.p/eau
# Expect Status Code = 403
# Level = 12
# Fetch Test = http://p.p/ear
# Expect Status Code = 403
# Level = 12
# Fetch Test = http://p.p/eal
# Expect Status Code = 403
# Level = 12
# Fetch Test = http://p.p/eafu
# Expect Status Code = 403
# Level = 12
# Fetch Test = http://p.p/eas
# Expect Status Code = 403
# Level = 12
# Fetch Test = http://p.p/easa
# Expect Status Code = 403
# Level = 12
# Fetch Test = http://p.p/easr
# Expect Status Code = 403
# Level = 12
# Fetch Test = http://p.p/eass
# Expect Status Code = 403
# Level = 12
# Fetch Test = http://p.p/edit-actions-for-url
# Expect Status Code = 403
# Level = 12
# Fetch Test = http://p.p/edit-actions-list
# Level = 12
# Fetch Test = http://p.p/edit-actions-submit
# Expect Status Code = 403
# Level = 12
# Expect Status Code = 403
# Fetch Test = http://p.p/edit-actions-url
# Expect Status Code = 403
# Level = 12
# Fetch Test = http://p.p/edit-actions-url-form
# Expect Status Code = 403
# Level = 12
# Fetch Test = http://p.p/edit-actions-add-url
# Expect Status Code = 403
# Level = 12
# Fetch Test = http://p.p/edit-actions-add-url-form
# Expect Status Code = 403
# Level = 12
# Fetch Test = http://p.p/edit-actions-remove-url
# Expect Status Code = 403
# Level = 12
# Fetch Test = http://p.p/edit-actions-remove-url-form
# Expect Status Code = 403
# Level = 12
# Fetch Test = http://p.p/edit-actions-section-add
# Expect Status Code = 403
# Level = 12
# Fetch Test = http://p.p/edit-actions-section-remove
# Expect Status Code = 403
# Level = 12
# Fetch Test = http://p.p/edit-actions-section-swap
# Expect Status Code = 403
# Level = 12
# Fetch Test = http://p.p/error-favicon.ico
# Fetch Test = http://p.p/favicon.ico
# Fetch Test = http://p.p/robots.txt
# Fetch Test = http://p.p/send-banner
# Fetch Test = http://p.p/send-banner?type=r
# Fetch Test = http://p.p/send-banner?type=auto
# Fetch Test = http://p.p/send-banner?type=blank
# Fetch Test = http://p.p/send-banner?type=pattern
# Trusted CGI Request = http://p.p/send-stylesheet
# Fetch Test = http://p.p/send-stylesheet
# Expect Status Code = 403
# Fetch Test = http://p.p/t
# Fetch Test = http://p.p/url-info-osd.xml
# Fetch Test = http://p.p/client-tags
# Level = 24
# Trusted CGI Request = http://p.p/toggle-client-tag
# Expect Status Code = 302
# Level = 24
# Fetch Test = http://p.p/toggle-client-tag
# Expect Status Code = 403
# Level = 24
# Fetch Test = http://p.p/wpad.dat
# Trusted CGI Request = http://p.p/edit-actions
# Expect Status Code = 302
# Level = 12 # Depends on the CGI editor being enabled
# Fetch Test = http://p.p/does-not-exist
# Expect Status Code = 404
# Trusted CGI Request = http://p.p/eaa
# Level = 12
# Trusted CGI Request = http://p.p/eau
# Level = 12
# Trusted CGI Request = http://p.p/ear
# Level = 12
# Trusted CGI Request = http://p.p/eal
# Level = 12
# Trusted CGI Request = http://p.p/eafu
# Level = 12
# Trusted CGI Request = http://p.p/eas
# Level = 12
# Trusted CGI Request = http://p.p/easa
# Level = 12
# Trusted CGI Request = http://p.p/easr
# Level = 12
# Trusted CGI Request = http://p.p/eass
# Level = 12
# Trusted CGI Request = http://p.p/edit-actions-for-url
# Level = 12
# Trusted CGI Request = http://p.p/edit-actions-list
# Level = 12
# Trusted CGI Request = http://p.p/edit-actions-submit
# Level = 12
# Trusted CGI Request = http://p.p/edit-actions-url
# Level = 12
# Trusted CGI Request = http://p.p/edit-actions-url-form
# Level = 12
# Trusted CGI Request = http://p.p/edit-actions-add-url
# Level = 12
# Trusted CGI Request = http://p.p/edit-actions-add-url-form
# Level = 12
# Trusted CGI Request = http://p.p/edit-actions-remove-url
# Level = 12
# Trusted CGI Request = http://p.p/edit-actions-remove-url-form
# Level = 12
# Trusted CGI Request = http://p.p/edit-actions-section-add
# Level = 12
# Trusted CGI Request = http://p.p/edit-actions-section-remove
# Level = 12
# Trusted CGI Request = http://p.p/edit-actions-section-swap
# Level = 12
# Trusted CGI Request = http://p.p/send-stylesheet
# CVE-2021-20217
# Fetch Test = http://config.privoxy.org/?1&0
# OVE-20210203-0001
# Fetch Test = http://config.privoxy.org/show-url-info?url=0%%0A0
# The following tests depend on Privoxy being configured to deliver the user manual
# Fetch Test = http://p.p/user-manual
# Expect Status Code = 302
# Level = 9
# Fetch Test = http://p.p/user-manual/
# Level = 9
# Fetch Test = http://p.p/user-manual/actions-file.html
# Level = 9
# Fetch Test = http://p.p/user-manual/appendix.html
# Level = 9
# Fetch Test = http://p.p/user-manual/config.html
# Level = 9
# Fetch Test = http://p.p/user-manual/configuration.html
# Level = 9
# Fetch Test = http://p.p/user-manual/contact.html
# Level = 9
# Fetch Test = http://p.p/user-manual/copyright.html
# Level = 9
# Fetch Test = http://p.p/user-manual/files-in-use.jpg
# Level = 9
# Fetch Test = http://p.p/user-manual/filter-file.html
# Level = 9
# Fetch Test = http://p.p/user-manual/index.html
# Level = 9
# Fetch Test = http://p.p/user-manual/installation.html
# Level = 9
# Fetch Test = http://p.p/user-manual/introduction.html
# Level = 9
# Fetch Test = http://p.p/user-manual/p_doc.css
# Level = 9
# Fetch Test = http://p.p/user-manual/proxy2.jpg
# Level = 9
# Fetch Test = http://p.p/user-manual/proxy_setup.jpg
# Level = 9
# Fetch Test = http://p.p/user-manual/quickstart.html
# Level = 9
# Fetch Test = http://p.p/user-manual/seealso.html
# Level = 9
# Fetch Test = http://p.p/user-manual/startup.html
# Level = 9
# Fetch Test = http://p.p/user-manual/templates.html
# Level = 9
# Fetch Test = http://p.p/user-manual/whatsnew.html
# Level = 9
# Method Test = OPTIONS
# Method Test = GET
# Method Test = get
# Method Test = gEt
# Method Test = HEAD
# Method Test = POST
# Method Test = PUT
# Method Test = DELETE
# Method Test = OPTIONS
# Method Test = TRACE
# Method Test = CONNECT
# Level = 25
# Method Test = PROPFIND
# Method Test = PROPPATCH
# Method Test = MOVE
# Method Test = COPY
# Method Test = MKCOL
# Method Test = LOCK
# Method Test = UNLOCK
# Method Test = BCOPY
# Method Test = BMOVE
# Method Test = BDELETE
# Method Test = BPROPFIND
# Method Test = BPROPPATCH
# Method Test = SUBSCRIBE
# Method Test = UNSUBSCRIBE
# Method Test = NOTIFY
# Method Test = POLL
# Method Test = VERSION-CONTROL
# Method Test = REPORT
# Method Test = CHECKOUT
# Method Test = CHECKIN
# Method Test = UNCHECKOUT
# Method Test = MKWORKSPACE
# Method Test = UPDATE
# Method Test = LABEL
# Method Test = MERGE
# Method Test = BASELINE-CONTROL
# Method Test = MKACTIVITY
# Method Test = PATCH
# Method Test = PRIVOXY-REGRESSION-TEST-IN-THE-HOUSE
# Expect Status Code = 400