privoxy-regression-test: Use --proxy-header when using a CGI prefix with https://
[privoxy.git] / tools / privoxy-regression-test.pl
1 #!/usr/bin/perl
2
3 ############################################################################
4 #
5 # Privoxy-Regression-Test
6 #
7 # A regression test "framework" for Privoxy. For documentation see:
8 # perldoc privoxy-regression-test.pl
9 #
10 # Wish list:
11 #
12 # - Update documentation
13 # - Validate HTTP times.
14 # - Implement a HTTP_VERSION directive or allow to
15 #   specify whole request lines.
16 # - Support filter regression tests.
17 # - Document magic Expect Header values
18 # - Internal fuzz support?
19 #
20 # Copyright (c) 2007-2020 Fabian Keil <fk@fabiankeil.de>
21 #
22 # Permission to use, copy, modify, and distribute this software for any
23 # purpose with or without fee is hereby granted, provided that the above
24 # copyright notice and this permission notice appear in all copies.
25 #
26 # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
27 # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
28 # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
29 # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
30 # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
31 # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
32 # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
33 #
34 ############################################################################
35
36 use warnings;
37 use strict;
38 use Getopt::Long;
39
40 use constant {
41     PRT_VERSION => 'Privoxy-Regression-Test 0.7.2',
42  
43     CURL => 'curl',
44
45     # CLI option defaults
46     CLI_RETRIES   => 1,
47     CLI_LOOPS     => 1,
48     CLI_MAX_TIME  => 5,
49     CLI_MIN_LEVEL => 0,
50     # XXX: why limit at all?
51     CLI_MAX_LEVEL => 100,
52     CLI_FORKS     => 0,
53     CLI_SLEEP_TIME => 0,
54
55     PRIVOXY_CGI_URL  => 'http://p.p/',
56     FELLATIO_URL     => 'http://127.0.0.1:8080/',
57     LEADING_LOG_DATE => 1,
58     LEADING_LOG_TIME => 1,
59
60     DEBUG_LEVEL_FILE_LOADING    => 0,
61     DEBUG_LEVEL_PAGE_FETCHING   => 0,
62     DEBUG_LEVEL_VERBOSE_FAILURE => 1,
63     # XXX: Only partly implemented and mostly useless.
64     DEBUG_LEVEL_VERBOSE_SUCCESS => 0,
65     DEBUG_LEVEL_STATUS          => 1,
66
67     # Internal use, don't modify
68     # Available debug bits:
69     LL_SOFT_ERROR       =>  1,
70     LL_VERBOSE_FAILURE  =>  2,
71     LL_PAGE_FETCHING    =>  4,
72     LL_FILE_LOADING     =>  8,
73     LL_VERBOSE_SUCCESS  => 16,
74     LL_STATUS           => 32,
75
76     CLIENT_HEADER_TEST  =>  1,
77     SERVER_HEADER_TEST  =>  2,
78     DUMB_FETCH_TEST     =>  3,
79     METHOD_TEST         =>  4,
80     STICKY_ACTIONS_TEST =>  5,
81     TRUSTED_CGI_REQUEST =>  6,
82     BLOCK_TEST          =>  7,
83     REDIRECT_TEST       =>108,
84 };
85
86 sub init_our_variables() {
87
88     our $leading_log_time = LEADING_LOG_TIME;
89     our $leading_log_date = LEADING_LOG_DATE;
90     our $privoxy_cgi_url  = PRIVOXY_CGI_URL;
91     our $log_level = get_default_log_level();
92 }
93
94 sub get_default_log_level() {
95     
96     my $log_level = 0;
97
98     $log_level |= LL_FILE_LOADING    if DEBUG_LEVEL_FILE_LOADING;
99     $log_level |= LL_PAGE_FETCHING   if DEBUG_LEVEL_PAGE_FETCHING;
100     $log_level |= LL_VERBOSE_FAILURE if DEBUG_LEVEL_VERBOSE_FAILURE;
101     $log_level |= LL_VERBOSE_SUCCESS if DEBUG_LEVEL_VERBOSE_SUCCESS;
102     $log_level |= LL_STATUS          if DEBUG_LEVEL_STATUS;
103
104     # This one is supposed to be always on.
105     $log_level |= LL_SOFT_ERROR;
106
107     return $log_level;
108 }
109
110 ############################################################################
111 #
112 # File loading functions
113 #
114 ############################################################################
115
116 sub parse_tag($) {
117
118     my $tag = shift;
119
120     # Remove anchors
121     $tag =~ s@[\$\^]@@g;
122     # Unescape brackets and dots
123     $tag =~ s@\\(?=[{}().+])@@g;
124
125     # log_message("Parsed tag: " . $tag);
126
127     check_for_forbidden_characters($tag);
128
129     return $tag;
130 }
131
132 sub check_for_forbidden_characters($) {
133
134     my $string = shift;
135     my $allowed = '[-=\dA-Za-z~{}\[\]:./();\t ,+@"_%?&*^|]';
136
137     unless ($string =~ m/^$allowed*$/o) {
138         my $forbidden = $string;
139         $forbidden =~ s@^$allowed*(.).*@$1@;
140
141         log_and_die("'" . $string . "' contains character '" . $forbidden. "' which is unacceptable.");
142     }
143 }
144
145 sub load_regression_tests() {
146     if (cli_option_is_set('local-test-file')) {
147         load_regression_tests_from_file(get_cli_option('local-test-file'));
148     } else {
149         load_regression_tests_through_privoxy();
150     }
151 }
152
153 # XXX: Contains a lot of code duplicated from load_action_files()
154 #      that should be factored out.
155 sub load_regression_tests_from_file($) {
156     my $action_file = shift;
157
158     # initialized here
159     our %actions;
160     our @regression_tests;
161
162     my $si = 0;  # Section index
163     my $ri = -1; # Regression test index
164     my $count = 0;
165
166     my $ignored = 0;
167
168     my $sticky_actions = undef;
169
170     l(LL_STATUS, "Gathering regression tests from local file " . $action_file);
171
172     open(my $ACTION_FILE, "<", $action_file)
173         or log_and_die("Failed to open $action_file: $!");
174
175     while (<$ACTION_FILE>) {
176
177         my $no_checks = 0;
178         chomp;
179         my ($token, $value) = tokenize($_);
180
181         next unless defined $token;
182
183         # Load regression tests
184
185         if (token_starts_new_test($token)) {
186
187             # Beginning of new regression test.
188             $ri++;
189             $count++;
190             enlist_new_test(\@regression_tests, $token, $value, $si, $ri, $count);
191             $no_checks = 1; # Already validated by enlist_new_test().
192         }
193
194         if ($token =~ /level\s+(\d+)/i) {
195
196             my $level = $1;
197             register_dependency($level, $value);
198         }
199
200         if ($token eq 'sticky actions') {
201
202             # Will be used by each following Sticky URL.
203             $sticky_actions = $value;
204             if ($sticky_actions =~ /{[^}]*\s/) {
205                 log_and_die("'Sticky Actions' with whitespace inside the " .
206                             "action parameters are currently unsupported.");
207             }
208         }
209
210         if ($si == -1 || $ri == -1) {
211             # No beginning of a test detected yet,
212             # so we don't care about any other test
213             # attributes.
214             next;
215         }
216
217         if ($token eq 'expect header') {
218
219             l(LL_FILE_LOADING, "Detected expectation: " . $value);
220             $regression_tests[$si][$ri]{'expect-header'} = $value;
221
222         } elsif ($token eq 'tag') {
223
224             next if ($ri == -1);
225
226             my $tag = parse_tag($value);
227
228             # We already checked in parse_tag() after filtering
229             $no_checks = 1;
230
231             l(LL_FILE_LOADING, "Detected TAG: " . $tag);
232
233             # Save tag for all tests in this section
234             do {
235                 $regression_tests[$si][$ri]{'tag'} = $tag;
236             } while ($ri-- > 0);
237
238             $si++;
239             $ri = -1;
240
241         } elsif ($token eq 'ignore' && $value =~ /Yes/i) {
242
243             l(LL_FILE_LOADING, "Ignoring section: " . test_content_as_string($regression_tests[$si][$ri]));
244             $regression_tests[$si][$ri]{'ignore'} = 1;
245             $ignored++;
246
247         } elsif ($token eq 'expect status code') {
248
249             l(LL_FILE_LOADING, "Expecting status code: " . $value);
250             $regression_tests[$si][$ri]{'expected-status-code'} = $value;
251
252         } elsif ($token eq 'level') { # XXX: stupid name
253
254             $value =~ s@(\d+).*@$1@;
255             l(LL_FILE_LOADING, "Level: " . $value);
256             $regression_tests[$si][$ri]{'level'} = $value;
257
258         } elsif ($token eq 'method') {
259
260             l(LL_FILE_LOADING, "Method: " . $value);
261             $regression_tests[$si][$ri]{'method'} = $value;
262
263         } elsif ($token eq 'redirect destination') {
264
265             l(LL_FILE_LOADING, "Redirect destination: " . $value);
266             $regression_tests[$si][$ri]{'redirect destination'} = $value;
267
268         } elsif ($token eq 'url') {
269
270             if (defined $sticky_actions) {
271                 die "WTF? Attempted to overwrite Sticky Actions"
272                     if defined ($regression_tests[$si][$ri]{'sticky-actions'});
273
274                 l(LL_FILE_LOADING, "Sticky actions: " . $sticky_actions);
275                 $regression_tests[$si][$ri]{'sticky-actions'} = $sticky_actions;
276             } else {
277                 log_and_die("Sticky URL without Sticky Actions in $action_file: $value");
278             }
279
280         } else {
281
282             # We don't use it, so we don't need
283             $no_checks = 1;
284             l(LL_STATUS, "Enabling no_checks for $token") unless $no_checks;
285         }
286
287         # XXX: Necessary?
288         unless ($no_checks)  {
289             check_for_forbidden_characters($value);
290             check_for_forbidden_characters($token);
291         }
292     }
293
294     l(LL_FILE_LOADING, "Done loading " . $count . " regression tests."
295       . " Of which " . $ignored. " will be ignored)\n");
296
297 }
298
299
300 sub load_regression_tests_through_privoxy() {
301
302     our $privoxy_cgi_url;
303     our @privoxy_config;
304     our %privoxy_features;
305     my @actionfiles;
306     my $curl_url = '';
307     my $file_number = 0;
308     my $feature;
309     my $privoxy_version = '(Unknown version!)';
310
311     $curl_url .= $privoxy_cgi_url;
312     $curl_url .= 'show-status';
313
314     l(LL_STATUS, "Asking Privoxy for the number of action files available ...");
315
316     # Dear Privoxy, please reload the config file if necessary ...
317     get_cgi_page_or_else($curl_url);
318
319     # ... so we get the latest one here.
320     foreach (@{get_cgi_page_or_else($curl_url)}) {
321
322         chomp;
323         if (/<td>(.*?)<\/td><td class=\"buttons\"><a href=\"\/show-status\?file=actions&amp;index=(\d+)\">/) {
324
325             my $url = $privoxy_cgi_url . 'show-status?file=actions&index=' . $2;
326             $actionfiles[$file_number++] = $url;
327
328         } elsif (m@config\.html#.*\">([^<]*)</a>\s+(.*)<br>@) {
329
330             my $directive = $1 . " " . $2;
331             push (@privoxy_config, $directive);
332
333         } elsif (m@<td><code>([^<]*)</code></td>@) {
334
335             $feature = $1;
336
337         } elsif (m@<td> (Yes|No) </td>@) {
338
339             $privoxy_features{$feature} = $1 if defined $feature;
340             $feature = undef;
341
342         } elsif (m@This is <a href="https?://www.privoxy.org/">Privoxy</a> (\d+\.\d+\.\d+) on@) {
343             $privoxy_version = $1;
344         }
345     }
346
347     l(LL_STATUS, "Gathering regression tests from " .
348       @actionfiles . " action file(s) delivered by Privoxy $privoxy_version.");
349
350     load_action_files(\@actionfiles);
351 }
352
353 sub token_starts_new_test($) {
354
355     my $token = shift;
356     my @new_test_directives = ('set header', 'fetch test',
357          'trusted cgi request', 'request header', 'method test',
358          'blocked url', 'url', 'redirected url');
359
360     foreach my $new_test_directive (@new_test_directives) {
361         return 1 if $new_test_directive eq $token;
362     }
363
364     return 0;
365 }
366
367 sub tokenize($) {
368
369     my ($token, $value) = (undef, undef);
370
371     # Remove leading and trailing white space and a
372     # a leading <pre> which is part of the first line.
373     s@^\s*(<pre>)?@@;
374     s@\s*$@@;
375
376     # Reverse HTML-encoding
377     # XXX: Seriously incomplete.
378     s@&quot;@"@g;
379     s@&amp;@&@g;
380
381     # Tokenize
382     if (/^\#\s*([^=:#]*?)\s*[=]\s*([^#]+)(?:#.*)?$/) {
383
384         $token = $1;
385         $value = $2;
386
387         $token =~ s@\s\s+@ @g;
388         $token =~ tr/[A-Z]/[a-z]/;
389
390     } elsif (/^TAG\s*:(.*)$/) {
391
392         $token = 'tag';
393         $value = $1;
394     }
395
396     return ($token, $value);
397 }
398
399 sub enlist_new_test($$$$$$) {
400
401     my ($regression_tests, $token, $value, $si, $ri, $number) = @_;
402     my $type;
403     my $executor;
404
405     if ($token eq 'set header') {
406
407         l(LL_FILE_LOADING, "Header to set: " . $value);
408         $type = CLIENT_HEADER_TEST;
409         $executor = \&execute_client_header_regression_test;
410
411     } elsif ($token eq 'request header') {
412
413         l(LL_FILE_LOADING, "Header to request: " . $value);
414         $type = SERVER_HEADER_TEST;
415         $executor = \&execute_server_header_regression_test;
416         $$regression_tests[$si][$ri]{'expected-status-code'} = 200;
417
418     } elsif ($token eq 'trusted cgi request') {
419
420         l(LL_FILE_LOADING, "CGI URL to test in a dumb way: " . $value);
421         $type = TRUSTED_CGI_REQUEST;
422         $executor = \&execute_dumb_fetch_test;
423         $$regression_tests[$si][$ri]{'expected-status-code'} = 200;
424
425     } elsif ($token eq 'fetch test') {
426
427         l(LL_FILE_LOADING, "URL to test in a dumb way: " . $value);
428         $type = DUMB_FETCH_TEST;
429         $executor = \&execute_dumb_fetch_test;
430         $$regression_tests[$si][$ri]{'expected-status-code'} = 200;
431
432     } elsif ($token eq 'method test') {
433
434         l(LL_FILE_LOADING, "Method to test: " . $value);
435         $type = METHOD_TEST;
436         $executor = \&execute_method_test;
437         $$regression_tests[$si][$ri]{'expected-status-code'} = 200;
438
439     } elsif ($token eq 'blocked url') {
440
441         l(LL_FILE_LOADING, "URL to block-test: " . $value);
442         $executor = \&execute_block_test;
443         $type = BLOCK_TEST;
444
445     } elsif ($token eq 'url') {
446
447         l(LL_FILE_LOADING, "Sticky URL to test: " . $value);
448         $type = STICKY_ACTIONS_TEST;
449         $executor = \&execute_sticky_actions_test;
450
451     } elsif ($token eq 'redirected url') {
452
453         l(LL_FILE_LOADING, "Redirected URL to test: " . $value);
454         $type = REDIRECT_TEST;
455         $executor = \&execute_redirect_test;
456
457     } else {
458
459         die "Incomplete '" . $token . "' support detected."; 
460     }
461
462     $$regression_tests[$si][$ri]{'type'} = $type;
463     $$regression_tests[$si][$ri]{'level'} = $type;
464     $$regression_tests[$si][$ri]{'executor'} = $executor;
465
466     check_for_forbidden_characters($value);
467
468     $$regression_tests[$si][$ri]{'data'} = $value;
469
470     # For function that only get passed single tests
471     $$regression_tests[$si][$ri]{'section-id'} = $si;
472     $$regression_tests[$si][$ri]{'regression-test-id'} = $ri;
473     $$regression_tests[$si][$ri]{'number'} = $number - 1;
474     l(LL_FILE_LOADING,
475       "Regression test " . $number . " (section:" . $si . "):");
476 }
477
478 sub mark_matching_tests_for_skipping($) {
479     my $overwrite_condition = shift;
480
481     our @regression_tests;
482
483     for (my $s = 0;  $s < @regression_tests; $s++) {
484
485         my $r = 0;
486
487         while (defined $regression_tests[$s][$r]) {
488
489             if ($regression_tests[$s][$r]{'data'} eq $overwrite_condition) {
490                 my $message = sprintf("Marking test %s for ignoring. Overwrite condition: %s.",
491                                       $regression_tests[$s][$r]{'number'}, $overwrite_condition);
492
493                 l(LL_FILE_LOADING, $message);
494
495                 # XXX: Should eventually get its own key so get_skip_reason()
496                 #      can tell about the overwrite condition.
497                 $regression_tests[$s][$r]{'ignore'} = 1;
498             }
499             $r++;
500         }
501     }
502 }
503
504
505 # XXX: Shares a lot of code with load_regression_tests_from_file()
506 #      that should be factored out.
507 sub load_action_files($) {
508
509     # initialized here
510     our %actions;
511     our @regression_tests;
512
513     my $actionfiles_ref = shift;
514     my @actionfiles = @{$actionfiles_ref};
515
516     my $si = 0;  # Section index
517     my $ri = -1; # Regression test index
518     my $count = 0;
519
520     my $ignored = 0;
521
522     for my $file_number (0 .. @actionfiles - 1) {
523
524         my $curl_url = quote($actionfiles[$file_number]);
525         my $actionfile = undef;
526         my $sticky_actions = undef;
527         my $level_offset = 0;
528
529         foreach (@{get_cgi_page_or_else($curl_url)}) {
530
531             my $no_checks = 0;
532             chomp;
533
534             if (/<h2>Contents of Actions File (.*?)</) {
535                 $actionfile = $1;
536                 next;
537             }
538             next unless defined $actionfile;
539
540             last if (/<\/pre>/);
541
542             my ($token, $value) = tokenize($_);
543
544             next unless defined $token;
545
546             # Load regression tests
547             if ($token eq 'default level offset') {
548
549                 $level_offset = $value;
550                 l(LL_FILE_LOADING, "Setting default level offset to " . $level_offset);
551             }
552
553             if (token_starts_new_test($token)) {
554
555                 # Beginning of new regression test.
556                 $ri++;
557                 $count++;
558                 enlist_new_test(\@regression_tests, $token, $value, $si, $ri, $count);
559                 $no_checks = 1; # Already validated by enlist_new_test().
560                 if ($level_offset != 0) {
561                     $regression_tests[$si][$ri]{'level'} += $level_offset;
562                 }
563             }
564
565             if ($token =~ /level\s+(\d+)/i) {
566
567                 my $level = $1;
568                 register_dependency($level, $value);
569             }
570
571             if ($token eq 'sticky actions') {
572
573                 # Will be used by each following Sticky URL.
574                 $sticky_actions = $value;
575                 if ($sticky_actions =~ /{[^}]*\s/) {
576                     log_and_die("'Sticky Actions' with whitespace inside the " .
577                                 "action parameters are currently unsupported.");
578                 }
579             }
580
581             if ($token eq 'overwrite condition') {
582
583                 l(LL_FILE_LOADING, "Detected overwrite condition: " . $value);
584                 # We can only skip matching tests that have already
585                 # be loaded but that is exactly what we want anyway.
586                 mark_matching_tests_for_skipping($value);
587                 next;
588             }
589
590             if ($si == -1 || $ri == -1) {
591                 # No beginning of a test detected yet,
592                 # so we don't care about any other test
593                 # attributes.
594                 next;
595             }
596
597             if ($token eq 'expect header') {
598
599                 l(LL_FILE_LOADING, "Detected expectation: " . $value);
600                 $regression_tests[$si][$ri]{'expect-header'} = $value;
601
602             } elsif ($token eq 'tag') {
603                 
604                 next if ($ri == -1);
605
606                 my $tag = parse_tag($value);
607
608                 # We already checked in parse_tag() after filtering
609                 $no_checks = 1;
610
611                 l(LL_FILE_LOADING, "Detected TAG: " . $tag);
612
613                 # Save tag for all tests in this section
614                 do {
615                     $regression_tests[$si][$ri]{'tag'} = $tag; 
616                 } while ($ri-- > 0);
617
618                 $si++;
619                 $ri = -1;
620
621             } elsif ($token eq 'ignore' && $value =~ /Yes/i) {
622
623                 l(LL_FILE_LOADING, "Ignoring section: " . test_content_as_string($regression_tests[$si][$ri]));
624                 $regression_tests[$si][$ri]{'ignore'} = 1;
625                 $ignored++;
626
627             } elsif ($token eq 'expect status code') {
628
629                 l(LL_FILE_LOADING, "Expecting status code: " . $value);
630                 $regression_tests[$si][$ri]{'expected-status-code'} = $value;
631
632             } elsif ($token eq 'level') { # XXX: stupid name
633
634                 $value =~ s@(\d+).*@$1@;
635                 l(LL_FILE_LOADING, "Level: " . $value);
636                 $regression_tests[$si][$ri]{'level'} = $value;
637
638             } elsif ($token eq 'method') {
639
640                 l(LL_FILE_LOADING, "Method: " . $value);
641                 $regression_tests[$si][$ri]{'method'} = $value;
642
643             } elsif ($token eq 'redirect destination') {
644
645                 l(LL_FILE_LOADING, "Redirect destination: " . $value);
646                 $regression_tests[$si][$ri]{'redirect destination'} = $value;
647
648             } elsif ($token eq 'url') {
649
650                 if (defined $sticky_actions) {
651                     die "WTF? Attempted to overwrite Sticky Actions"
652                         if defined ($regression_tests[$si][$ri]{'sticky-actions'});
653
654                     l(LL_FILE_LOADING, "Sticky actions: " . $sticky_actions);
655                     $regression_tests[$si][$ri]{'sticky-actions'} = $sticky_actions;
656                 } else {
657                     log_and_die("Sticky URL without Sticky Actions in $actionfile: $value");
658                 }
659
660             } else {
661
662                 # We don't use it, so we don't need
663                 $no_checks = 1;
664                 l(LL_STATUS, "Enabling no_checks for $token") unless $no_checks;
665             }
666
667             # XXX: Necessary?
668             unless ($no_checks)  {
669                 check_for_forbidden_characters($value);
670                 check_for_forbidden_characters($token);
671             }
672         }
673     }
674
675     l(LL_FILE_LOADING, "Done loading " . $count . " regression tests." 
676       . " Of which " . $ignored. " will be ignored)\n");
677 }
678
679 ############################################################################
680 #
681 # Regression test executing functions
682 #
683 ############################################################################
684
685 # Fisher Yates shuffle from Perl's "How do I shuffle an array randomly?" FAQ
686 sub fisher_yates_shuffle($) {
687     my $deck = shift;
688     my $i = @$deck;
689     while ($i--) {
690         my $j = int rand($i+1);
691         @$deck[$i,$j] = @$deck[$j,$i];
692     }
693 }
694
695 sub execute_regression_tests() {
696
697     our @regression_tests;
698     my $loops = get_cli_option('loops');
699     my $all_tests    = 0;
700     my $all_failures = 0;
701     my $all_successes = 0;
702
703     unless (@regression_tests) {
704
705         l(LL_STATUS, "No regression tests found.");
706         return;
707     }
708
709     l(LL_STATUS, "Executing regression tests ...");
710
711     while ($loops-- > 0) {
712
713         my $successes = 0;
714         my $tests = 0;
715         my $failures;
716         my $skipped = 0;
717
718         if (cli_option_is_set('shuffle-tests')) {
719
720             # Shuffle both the test sections and
721             # the tests they contain.
722             #
723             # XXX: With the current data layout, shuffling tests
724             #      from different sections isn't possible.
725             #      Is this worth changing the layout?
726             fisher_yates_shuffle(\@regression_tests);
727             for (my $s = 0; $s < @regression_tests; $s++) {
728                 fisher_yates_shuffle($regression_tests[$s]);
729             }
730         }
731
732         for (my $s = 0; $s < @regression_tests; $s++) {
733
734             my $r = 0;
735
736             while (defined $regression_tests[$s][$r]) {
737
738                 unless (cli_option_is_set('shuffle-tests')) {
739                     die "Section id mismatch" if ($s != $regression_tests[$s][$r]{'section-id'});
740                     die "Regression test id mismatch" if ($r != $regression_tests[$s][$r]{'regression-test-id'});
741                 }
742                 die "Internal error. Test executor missing."
743                     unless defined $regression_tests[$s][$r]{executor};
744
745                 my $number = $regression_tests[$s][$r]{'number'};
746                 my $skip_reason = get_skip_reason($regression_tests[$s][$r]);
747
748                 if (defined $skip_reason) {
749
750                     my $message = "Skipping test " . $number . ": " . $skip_reason . ".";
751                     log_message($message) if (cli_option_is_set('show-skipped-tests'));
752                     $skipped++;
753
754                 } else {
755
756                     my $result = $regression_tests[$s][$r]{executor}($regression_tests[$s][$r]);
757
758                     log_result($regression_tests[$s][$r], $result, $tests);
759
760                     $successes += $result;
761                     $tests++;
762                     sleep(get_cli_option('sleep-time')) if (cli_option_is_set('sleep-time'));
763                 }
764                 $r++;
765             }
766         }
767         $failures = $tests - $successes;
768
769         log_message("Executed " . $tests . " regression tests. " .
770             'Skipped ' . $skipped . '. ' . 
771             $successes . " successes, " . $failures . " failures.");
772
773         $all_tests     += $tests;
774         $all_failures  += $failures;
775         $all_successes += $successes;
776     }
777
778     if (get_cli_option('loops') > 1) {
779         log_message("Total: Executed " . $all_tests . " regression tests. " .
780             $all_successes . " successes, " . $all_failures . " failures.");
781     }
782 }
783
784 sub get_skip_reason($) {
785     my $test = shift;
786     my $skip_reason = undef;
787
788     if ($test->{'ignore'}) {
789
790         $skip_reason = "Ignore flag is set";
791
792     } elsif (cli_option_is_set('test-number') and
793              get_cli_option('test-number') != $test->{'number'}) {
794
795         $skip_reason = "Only executing test " . get_cli_option('test-number');
796
797     } else {
798
799         $skip_reason = level_is_unacceptable($test->{'level'});
800     }
801
802     return $skip_reason;
803 }
804
805 sub level_is_unacceptable($) {
806     my $level = shift;
807     my $min_level = get_cli_option('min-level');
808     my $max_level = get_cli_option('max-level');
809     my $required_level = cli_option_is_set('level') ?
810         get_cli_option('level') : $level;
811     my $reason = undef;
812
813     if ($required_level != $level) {
814
815         $reason = "Level doesn't match (" . $level .
816                   " != " . $required_level . ")"
817
818     } elsif ($level < $min_level) {
819
820         $reason = "Level too low (" . $level . " < " . $min_level . ")";
821
822     } elsif ($level > $max_level) {
823
824         $reason = "Level too high (" . $level . " > " . $max_level . ")";
825
826     } else {
827
828         $reason = dependency_unsatisfied($level);
829     }
830
831     return $reason;
832 }
833
834 sub dependency_unsatisfied($) {
835
836     my $level = shift;
837     our %dependencies;
838     our @privoxy_config;
839     our %privoxy_features;
840
841     my $dependency_problem = undef;
842
843     if (defined ($dependencies{$level}{'config line'})) {
844
845         my $dependency = $dependencies{$level}{'config line'};
846         $dependency_problem = "depends on config line matching: '" . $dependency . "'";
847
848         foreach (@privoxy_config) {
849
850             if (/$dependency/) {
851                 $dependency_problem = undef;
852                 last;
853             }
854         }
855
856     }
857
858     if (defined ($dependencies{$level}{'feature status'})
859         and not defined $dependency_problem) {
860
861         my $dependency = $dependencies{$level}{'feature status'};
862         my ($feature, $status) = $dependency =~ /([^\s]*)\s+(Yes|No)/;
863
864         unless (defined($privoxy_features{$feature})
865                 and ($privoxy_features{$feature} eq $status))
866         {
867             $dependency_problem = "depends on '" . $feature .
868                 "' being set to '" . $status . "'";
869         }
870     }
871
872     return $dependency_problem;
873 }
874
875 sub register_dependency($$) {
876
877     my $level = shift;
878     my $dependency = shift;
879     our %dependencies;
880
881     if ($dependency =~ /config line\s+(.*)/) {
882
883         $dependencies{$level}{'config line'} = $1;
884
885     } elsif ($dependency =~ /feature status\s+(.*)/) {
886
887         $dependencies{$level}{'feature status'} = $1;
888
889     } else {
890
891         log_and_die("Didn't recognize dependency: $dependency.");
892     }
893 }
894
895 sub execute_method_test($) {
896
897     my $test = shift;
898     our $privoxy_cgi_url;
899
900     my $buffer_ref;
901     my $status_code;
902     my $method = $test->{'data'};
903
904     my $curl_parameters = '';
905     my $expected_status_code = $test->{'expected-status-code'};
906
907     $curl_parameters .= '--request ' . $method . ' ';
908     # Don't complain about the 'missing' body
909     $curl_parameters .= '--head ' if ($method =~ /^HEAD$/i);
910
911     $curl_parameters .= $privoxy_cgi_url;
912
913     $buffer_ref = get_page_with_curl($curl_parameters);
914     $status_code = get_status_code($buffer_ref);
915
916     return check_status_code_result($status_code, $expected_status_code);
917 }
918
919 sub execute_redirect_test($) {
920
921     my $test = shift;
922     my $buffer_ref;
923     my $status_code;
924
925     my $curl_parameters = '';
926     my $url = $test->{'data'};
927     my $redirect_destination;
928     my $expected_redirect_destination = $test->{'redirect destination'};
929
930     # XXX: Check if a redirect actually applies before doing the request.
931     #      otherwise the test may hit a real server in failure cases.
932
933     $curl_parameters .= '--head ';
934
935     $curl_parameters .= quote($url);
936
937     $buffer_ref = get_page_with_curl($curl_parameters);
938     $status_code = get_status_code($buffer_ref);
939
940     if ($status_code ne "302") {
941         l(LL_VERBOSE_FAILURE,
942           "Ooops. Expected redirect to: '" . $expected_redirect_destination
943           . "' but got a response with status code: " . $status_code);
944         return 0;
945     }
946     foreach (@{$buffer_ref}) {
947         if (/^Location: (.*)\r\n/) {
948             $redirect_destination = $1;
949             last;
950         }
951     }
952
953     my $success = ($redirect_destination eq $expected_redirect_destination);
954
955     unless ($success) {
956         l(LL_VERBOSE_FAILURE,
957           "Ooops. Expected redirect to: '" . $expected_redirect_destination
958           . "' but the redirect leads to: '" . $redirect_destination. "'");
959     }
960
961     return $success;
962 }
963
964 sub execute_dumb_fetch_test($) {
965
966     my $test = shift;
967     our $privoxy_cgi_url;
968
969     my $buffer_ref;
970     my $status_code;
971
972     my $curl_parameters = '';
973     my $expected_status_code = $test->{'expected-status-code'};
974
975     if (defined $test->{method}) {
976         $curl_parameters .= '--request ' . quote($test->{method}) . ' ';
977     }
978     if ($test->{type} == TRUSTED_CGI_REQUEST) {
979         $curl_parameters .= '--referer ' . quote($privoxy_cgi_url) . ' ';
980     }
981
982     $curl_parameters .= quote($test->{'data'});
983
984     $buffer_ref = get_page_with_curl($curl_parameters);
985     $status_code = get_status_code($buffer_ref);
986
987     return check_status_code_result($status_code, $expected_status_code);
988 }
989
990 sub execute_block_test($) {
991
992     my $test = shift;
993     my $url = $test->{'data'};
994     my $final_results = get_final_results($url);
995
996     return defined $final_results->{'+block'};
997 }
998
999 sub execute_sticky_actions_test($) {
1000
1001     my $test = shift;
1002     my $url = $test->{'data'};
1003     my $verified_actions = 0;
1004     # XXX: splitting currently doesn't work for actions whose parameters contain spaces.
1005     my @sticky_actions = split(/\s+/, $test->{'sticky-actions'});
1006     my $final_results = get_final_results($url);
1007
1008     foreach my $sticky_action (@sticky_actions) {
1009
1010         if (defined $final_results->{$sticky_action}) {
1011             # Exact match
1012             $verified_actions++;
1013
1014         } elsif ($sticky_action =~ /-.*\{/) {
1015
1016             # Disabled multi actions aren't explicitly listed as
1017             # disabled and thus have to be checked by verifying
1018             # that they aren't enabled.
1019             $verified_actions++;
1020
1021         } else {
1022             l(LL_VERBOSE_FAILURE,
1023               "Ooops. '$sticky_action' is not among the final results.");
1024         }
1025     }
1026
1027     return $verified_actions == @sticky_actions;
1028 }
1029
1030 sub get_final_results($) {
1031
1032     my $url = shift;
1033     our $privoxy_cgi_url;
1034
1035     my $curl_parameters = '';
1036     my %final_results = ();
1037     my $final_results_reached = 0;
1038
1039     die "Unacceptable characters in $url" if $url =~ m@[\\'"]@;
1040     # XXX: should be URL-encoded properly
1041     $url =~ s@%@%25@g;
1042     $url =~ s@\s@%20@g;
1043     $url =~ s@&@%26@g;
1044     $url =~ s@:@%3A@g;
1045     $url =~ s@/@%2F@g;
1046
1047     $curl_parameters .= quote($privoxy_cgi_url . 'show-url-info?url=' . $url);
1048
1049     foreach (@{get_cgi_page_or_else($curl_parameters)}) {
1050
1051         $final_results_reached = 1 if (m@<h2>Final results:</h2>@);
1052
1053         next unless ($final_results_reached);
1054         last if (m@</td>@);
1055
1056         # Privoxy versions before 3.0.16 add a space
1057         # between action name and parameters, therefore
1058         # the " ?".
1059         if (m@<br>([-+])<a.*>([^>]*)</a>(?: ?(\{.*\}))?@) {
1060             my $action = $1.$2;
1061             my $parameter = $3;
1062             
1063             if (defined $parameter) {
1064                 # In case the caller needs to check
1065                 # the action and its parameter
1066                 $final_results{$action . $parameter} = 1;
1067             }
1068             # In case the action doesn't have parameters
1069             # or the caller doesn't care for the parameter.
1070             $final_results{$action} = 1;
1071         }
1072     }
1073
1074     return \%final_results;
1075 }
1076
1077 sub check_status_code_result($$) {
1078
1079     my $status_code = shift;
1080     my $expected_status_code = shift;
1081     my $result = 0;
1082
1083     unless (defined $status_code) {
1084
1085         # XXX: should probably be caught earlier.
1086         l(LL_VERBOSE_FAILURE,
1087           "Ooops. We expected status code " . $expected_status_code . ", but didn't get any status code at all.");
1088
1089     } elsif ($expected_status_code == $status_code) {
1090
1091         $result = 1;
1092         l(LL_VERBOSE_SUCCESS,
1093           "Yay. We expected status code " . $expected_status_code . ", and received: " . $status_code . '.');
1094
1095     } elsif (cli_option_is_set('fuzzer-feeding') and $status_code == 123) {
1096
1097         l(LL_VERBOSE_FAILURE,
1098           "Oh well. Status code lost while fuzzing. Can't check if it was " . $expected_status_code . '.');
1099
1100     } else {
1101
1102         l(LL_VERBOSE_FAILURE,
1103           "Ooops. We expected status code " . $expected_status_code . ", but received: " . $status_code . '.');
1104     }
1105     
1106     return $result;
1107 }
1108
1109 sub execute_client_header_regression_test($) {
1110
1111     my $test = shift;
1112     my $buffer_ref;
1113     my $header;
1114
1115     $buffer_ref = get_show_request_with_curl($test);
1116
1117     $header = get_header($buffer_ref, $test);
1118
1119     return check_header_result($test, $header);
1120 }
1121
1122 sub execute_server_header_regression_test($) {
1123
1124     my $test = shift;
1125     my $buffer_ref;
1126     my $header;
1127
1128     $buffer_ref = get_head_with_curl($test);
1129
1130     $header = get_server_header($buffer_ref, $test);
1131
1132     return check_header_result($test, $header);
1133 }
1134
1135 sub interpret_result($) {
1136     my $success = shift;
1137     return $success ? "Success" : "Failure";
1138 }
1139
1140 sub check_header_result($$) {
1141
1142     my $test = shift;
1143     my $header = shift;
1144
1145     my $expect_header = $test->{'expect-header'};
1146     my $success = 0;
1147
1148     if ($expect_header eq 'NO CHANGE') {
1149
1150         $success = (defined($header) and $header eq $test->{'data'});
1151
1152         unless ($success) {
1153             $header = "REMOVAL" unless defined $header;
1154             l(LL_VERBOSE_FAILURE,
1155               "Ooops. Got: '" . $header . "' while expecting: '" . $expect_header . "'");
1156         }
1157
1158     } elsif ($expect_header eq 'REMOVAL') {
1159
1160         # XXX: Use more reliable check here and make sure
1161         # the header has a different name.
1162         $success = not (defined($header) and $header eq $test->{'data'});
1163
1164         unless ($success) {
1165             l(LL_VERBOSE_FAILURE,
1166               "Ooops. Expected removal but: '" . $header . "' is still there.");
1167         }
1168
1169     } elsif ($expect_header eq 'SOME CHANGE') {
1170
1171         $success = (defined($header) and $header ne $test->{'data'});
1172
1173         unless  ($success) {
1174             $header = "REMOVAL" unless defined $header;
1175             l(LL_VERBOSE_FAILURE,
1176               "Ooops. Got: '" . $header . "' while expecting: SOME CHANGE");
1177         }
1178
1179     } else {
1180
1181         $success = (defined($header) and $header eq $expect_header);
1182
1183         unless ($success) {
1184             $header = "No matching header" unless defined $header; # XXX: No header detected to be precise
1185             l(LL_VERBOSE_FAILURE,
1186               "Ooops. Got: '" . $header . "' while expecting: '" . $expect_header . "'");
1187         }
1188     }
1189     return $success;
1190 }
1191
1192 sub get_header_name($) {
1193
1194     my $header = shift;
1195
1196     $header =~ s@(.*?: ).*@$1@;
1197
1198     return $header;
1199 }
1200
1201 sub get_header($$) {
1202
1203     our $filtered_request = '';
1204
1205     my $buffer_ref = shift;
1206     my $test = shift;
1207
1208     my @buffer = @{$buffer_ref};
1209
1210     my $expect_header = $test->{'expect-header'};
1211
1212     die "get_header called with no expect header" unless defined $expect_header;
1213
1214     my $line;
1215     my $processed_request_reached = 0;
1216     my $read_header = 0;
1217     my $processed_request = '';
1218     my $header;
1219     my $header_to_get;
1220
1221     if ($expect_header eq 'REMOVAL'
1222      or $expect_header eq 'NO CHANGE'
1223      or $expect_header eq 'SOME CHANGE') {
1224
1225         $expect_header = $test->{'data'};
1226     }
1227
1228     $header_to_get = get_header_name($expect_header);
1229
1230     foreach (@buffer) {
1231
1232         # Skip everything before the Processed request
1233         if (/Processed Request/) {
1234             $processed_request_reached = 1;
1235             next;
1236         }
1237         next unless $processed_request_reached;
1238
1239         # End loop after the Processed request
1240         last if (/<\/pre>/);
1241
1242         # Ditch tags and leading/trailing white space.
1243         s@^\s*<.*?>@@g;
1244         s@\s*$@@g;
1245
1246         # Decode characters we care about. 
1247         s@&quot;@"@g;
1248
1249         $filtered_request .=  "\n" . $_;
1250          
1251         if (/^$header_to_get/) {
1252             $read_header = 1;
1253             $header = $_;
1254             last;
1255         }
1256     }
1257
1258     return $header;
1259 }
1260
1261 sub get_server_header($$) {
1262
1263     my $buffer_ref = shift;
1264     my $test = shift;
1265
1266     my @buffer = @{$buffer_ref};
1267
1268     my $expect_header = $test->{'expect-header'};
1269     my $header;
1270     my $header_to_get;
1271
1272     # XXX: Should be caught before starting to test.
1273     log_and_die("No expect header for test " . $test->{'number'})
1274         unless defined $expect_header;
1275
1276     if ($expect_header eq 'REMOVAL'
1277      or $expect_header eq 'NO CHANGE'
1278      or $expect_header eq 'SOME CHANGE') {
1279
1280         $expect_header = $test->{'data'};
1281     }
1282
1283     $header_to_get = get_header_name($expect_header);
1284
1285     foreach (@buffer) {
1286
1287         # XXX: should probably verify that the request
1288         # was actually answered by Fellatio.
1289         if (/^$header_to_get/) {
1290             $header = $_;
1291             $header =~ s@\s*$@@g;
1292             last;
1293         }
1294     }
1295
1296     return $header;
1297 }
1298
1299 sub get_status_code($) {
1300
1301     my $buffer_ref = shift;
1302     my @buffer = @{$buffer_ref}; 
1303
1304     foreach (@buffer) {
1305
1306         if (/^HTTP\/\d\.\d (\d{3})/) {
1307
1308             return $1;
1309
1310         } else {
1311
1312             return '123' if cli_option_is_set('fuzzer-feeding');
1313             chomp;
1314             log_and_die('Unexpected buffer line: "' . $_ . '"');
1315         }
1316     }
1317 }
1318
1319 sub get_test_keys() {
1320     return ('tag', 'data', 'expect-header', 'ignore');
1321 }
1322
1323 # XXX: incomplete
1324 sub test_content_as_string($) {
1325
1326     my $test = shift;
1327
1328     my $s = "\n\t";
1329
1330     foreach my $key (get_test_keys()) {
1331         $test->{$key} = 'Not set' unless (defined $test->{$key});
1332     }
1333
1334     $s .= 'Tag: ' . $test->{'tag'};
1335     $s .= "\n\t";
1336     $s .= 'Set header: ' . $test->{'data'}; # XXX: adjust for other test types
1337     $s .= "\n\t";
1338     $s .= 'Expected header: ' . $test->{'expect-header'};
1339     $s .= "\n\t";
1340     $s .= 'Ignore: ' . $test->{'ignore'};
1341
1342     return $s;
1343 }
1344
1345 sub fuzz_header($) {
1346     my $header = shift;
1347     my $white_space = int(rand(2)) - 1 ? " " : "\t";
1348
1349     $white_space = $white_space x (1 + int(rand(5)));
1350
1351     # Only fuzz white space before the first quoted token.
1352     # (Privoxy doesn't touch white space inside quoted tokens
1353     # and modifying it would cause the tests to fail).
1354     $header =~ s@(^[^"]*?)\s@$1$white_space@g;
1355
1356     return $header;
1357 }
1358
1359 ############################################################################
1360 #
1361 # HTTP fetch functions
1362 #
1363 ############################################################################
1364
1365 sub get_cgi_page_or_else($) {
1366
1367     my $cgi_url = shift;
1368     my $content_ref = get_page_with_curl($cgi_url);
1369     my $status_code = get_status_code($content_ref);
1370
1371     if (200 != $status_code) {
1372
1373         my $log_message = "Failed to fetch Privoxy CGI page '$cgi_url'. " .
1374                           "Received status code ". $status_code .
1375                           " while only 200 is acceptable.";
1376
1377         if (cli_option_is_set('fuzzer-feeding')) {
1378
1379             $log_message .= " Ignored due to fuzzer feeding.";
1380             l(LL_SOFT_ERROR, $log_message)
1381
1382         } else {
1383
1384             log_and_die($log_message);
1385         }
1386     }
1387     
1388     return $content_ref;
1389 }
1390
1391 # XXX: misleading name
1392 sub get_show_request_with_curl($) {
1393
1394     our $privoxy_cgi_url;
1395     my $test = shift;
1396
1397     my $curl_parameters = ' ';
1398     my $header = $test->{'data'};
1399
1400     if (cli_option_is_set('header-fuzzing')) {
1401         $header = fuzz_header($header);
1402     }
1403
1404     # Enable the action to test
1405     $curl_parameters .= '-H \'X-Privoxy-Control: ' . $test->{'tag'} . '\' ';
1406
1407     # Add the header to filter
1408     if ($privoxy_cgi_url =~ m@^https://@ and $header =~ m@^Host:@) {
1409         $curl_parameters .= '--proxy-header \'' . $header . '\' ';
1410     } else {
1411         $curl_parameters .= '-H \'' . $header . '\' ';
1412     }
1413
1414     $curl_parameters .= ' ';
1415     $curl_parameters .= $privoxy_cgi_url;
1416     $curl_parameters .= 'show-request';
1417
1418     return get_cgi_page_or_else($curl_parameters);
1419 }
1420
1421 sub get_head_with_curl($) {
1422
1423     our $fellatio_url = FELLATIO_URL;
1424     my $test = shift;
1425
1426     my $curl_parameters = ' ';
1427
1428     # Enable the action to test
1429     $curl_parameters .= '-H \'X-Privoxy-Control: ' . $test->{'tag'} . '\' ';
1430     # The header to filter
1431     $curl_parameters .= '-H \'X-Gimme-Head-With: ' . $test->{'data'} . '\' ';
1432     $curl_parameters .= '--head ';
1433
1434     $curl_parameters .= ' ';
1435     $curl_parameters .= $fellatio_url;
1436
1437     return get_page_with_curl($curl_parameters);
1438 }
1439
1440 sub get_page_with_curl($) {
1441
1442     our $proxy;
1443
1444     my $parameters = shift;
1445     my @buffer;
1446     my $curl_line = CURL;
1447     my $retries_left = get_cli_option('retries') + 1;
1448     my $failure_reason;
1449
1450     if (defined $proxy) {
1451         $curl_line .= ' --proxy ' . quote($proxy);
1452     }
1453     # We want to see the HTTP status code
1454     $curl_line .= " --include ";
1455     # Let Privoxy emit two log messages less.
1456     $curl_line .= ' -H \'Proxy-Connection:\' ' unless $parameters =~ /Proxy-Connection:/;
1457     $curl_line .= ' -H \'Connection: close\' ' unless $parameters =~ /Connection:/;
1458     # We don't care about fetch statistic.
1459     $curl_line .= " -s ";
1460     # We do care about the failure reason if any.
1461     $curl_line .= " -S ";
1462     # We want to advertise ourselves
1463     $curl_line .= " --user-agent '" . PRT_VERSION . "' ";
1464     # We aren't too patient
1465     $curl_line .= " --max-time '" . get_cli_option('max-time') . "' ";
1466     # We don't want curl to treat "[]", "{}" etc. special
1467     $curl_line .= " --globoff ";
1468
1469     $curl_line .= $parameters;
1470     # XXX: still necessary?
1471     $curl_line .= ' 2>&1';
1472
1473     l(LL_PAGE_FETCHING, "Executing: " . $curl_line);
1474
1475     do {
1476         @buffer = `$curl_line`;
1477
1478         if ($?) {
1479             log_and_die("Executing '$curl_line' failed.") unless @buffer;
1480             $failure_reason = array_as_string(\@buffer);
1481             chomp $failure_reason;
1482             l(LL_SOFT_ERROR, "Fetch failure: '" . $failure_reason . $! ."'");
1483         }
1484     } while ($? && --$retries_left);
1485
1486     unless ($retries_left) {
1487         log_and_die("Running curl failed " . get_cli_option('retries') .
1488                     " times in a row. Last error: '" . $failure_reason . "'.");
1489     }
1490
1491     return \@buffer;
1492 }
1493
1494
1495 ############################################################################
1496 #
1497 # Log functions
1498 #
1499 ############################################################################
1500
1501 sub array_as_string($) {
1502     my $array_ref = shift;
1503     my $string = '';
1504
1505     foreach (@{$array_ref}) {
1506         $string .= $_;
1507     }
1508
1509     return $string;
1510 }
1511
1512 sub show_test($) {
1513     my $test = shift;
1514     log_message('Test is:' . test_content_as_string($test));
1515 }
1516
1517 # Conditional log
1518 sub l($$) {
1519     our $log_level;
1520     my $this_level = shift;
1521     my $message = shift;
1522
1523     log_message($message) if ($log_level & $this_level);
1524 }
1525
1526 sub log_and_die($) {
1527     my $message = shift;
1528
1529     log_message('Oh noes. ' . $message . ' Fatal error. Exiting.');
1530     exit;
1531 }
1532
1533 sub log_message($) {
1534
1535     my $message = shift;
1536
1537     our $logfile;
1538     our $no_logging;
1539     our $leading_log_date;
1540     our $leading_log_time;
1541
1542     my $time_stamp = '';
1543     my ( $sec, $min, $hour, $mday, $mon, $year, $wday, $yday, $isdst ) = localtime time;
1544
1545     if ($leading_log_date || $leading_log_time) {
1546
1547         if ($leading_log_date) {
1548             $year += 1900;
1549             $mon  += 1;
1550             $time_stamp = sprintf("%i-%.2i-%.2i", $year, $mon, $mday);
1551         }
1552
1553         if ($leading_log_time) {
1554             $time_stamp .= ' ' if $leading_log_date;
1555             $time_stamp.= sprintf("%.2i:%.2i:%.2i", $hour, $min, $sec);
1556         }
1557         
1558         $message = $time_stamp . ": " . $message;
1559     }
1560
1561     printf("%s\n", $message);
1562 }
1563
1564 sub log_result($$) {
1565
1566     our $filtered_request;
1567
1568     my $test = shift;
1569     my $result = shift;
1570     my $number = shift;
1571
1572     my $message = sprintf("%s for test %d",
1573                           interpret_result($result),
1574                           $test->{'number'});
1575
1576     if (cli_option_is_set('verbose')) {
1577         $message .= sprintf(" (%d/%d/%d)", $number,
1578                             $test->{'section-id'},
1579                             $test->{'regression-test-id'});
1580     }
1581
1582     $message .= '. ';
1583
1584     if ($test->{'type'} == CLIENT_HEADER_TEST) {
1585
1586         $message .= 'Header ';
1587         $message .= quote($test->{'data'});
1588         $message .= ' and tag ';
1589         $message .= quote($test->{'tag'});
1590
1591     } elsif ($test->{'type'} == SERVER_HEADER_TEST) {
1592
1593         $message .= 'Request Header ';
1594         $message .= quote($test->{'data'});
1595         $message .= ' and tag ';
1596         $message .= quote($test->{'tag'});
1597
1598     } elsif ($test->{'type'} == DUMB_FETCH_TEST) {
1599
1600         $message .= 'URL ';
1601         $message .= quote($test->{'data'});
1602         $message .= ' and expected status code ';
1603         $message .= quote($test->{'expected-status-code'});
1604
1605     } elsif ($test->{'type'} == TRUSTED_CGI_REQUEST) {
1606
1607         $message .= 'CGI URL ';
1608         $message .= quote($test->{'data'});
1609         $message .= ' and expected status code ';
1610         $message .= quote($test->{'expected-status-code'});
1611
1612     } elsif ($test->{'type'} == METHOD_TEST) {
1613
1614         $message .= 'HTTP method ';
1615         $message .= quote($test->{'data'});
1616         $message .= ' and expected status code ';
1617         $message .= quote($test->{'expected-status-code'});
1618
1619     } elsif ($test->{'type'} == BLOCK_TEST) {
1620
1621         $message .= 'Supposedly-blocked URL: ';
1622         $message .= quote($test->{'data'});
1623
1624     } elsif ($test->{'type'} == STICKY_ACTIONS_TEST) {
1625
1626         $message .= 'Sticky Actions: ';
1627         $message .= quote($test->{'sticky-actions'});
1628         $message .= ' and URL: ';
1629         $message .= quote($test->{'data'});
1630
1631     } elsif ($test->{'type'} == REDIRECT_TEST) {
1632
1633         $message .= 'Redirected URL: ';
1634         $message .= quote($test->{'data'});
1635         $message .= ' and redirect destination: ';
1636         $message .= quote($test->{'redirect destination'});
1637
1638     } else {
1639
1640         die "Incomplete support for test type " . $test->{'type'} .  " detected.";
1641     }
1642
1643     log_message($message) if (!$result or cli_option_is_set('verbose'));
1644 }
1645
1646 sub quote($) {
1647     my $s = shift;
1648     return '\'' . $s . '\'';
1649 }
1650
1651 sub print_version() {
1652     printf PRT_VERSION . "\n";
1653 }
1654
1655 sub list_test_types() {
1656     my %test_types = (
1657         'Client header test'  => CLIENT_HEADER_TEST,
1658         'Server header test'  =>  2,
1659         'Dumb fetch test'     =>  3,
1660         'Method test'         =>  4,
1661         'Sticky action test'  =>  5,
1662         'Trusted CGI test'    =>  6,
1663         'Block test'          =>  7,
1664         'Redirect test'       => 108,
1665     );
1666
1667     print "\nThe supported test types and their default levels are:\n";
1668     foreach my $test_type (sort { $test_types{$a} <=> $test_types{$b} } keys %test_types) {
1669         printf "     %-20s -> %3.d\n", $test_type, $test_types{$test_type};
1670     }
1671 }
1672
1673 sub help() {
1674
1675     our %cli_options;
1676     our $privoxy_cgi_url;
1677
1678     print_version();
1679
1680     print << "    EOF"
1681
1682 Options and their default values if they have any:
1683     [--debug $cli_options{'debug'}]
1684     [--forks $cli_options{'forks'}]
1685     [--fuzzer-address]
1686     [--fuzzer-feeding]
1687     [--help]
1688     [--header-fuzzing]
1689     [--level]
1690     [--local-test-file]
1691     [--loops $cli_options{'loops'}]
1692     [--max-level $cli_options{'max-level'}]
1693     [--max-time $cli_options{'max-time'}]
1694     [--min-level $cli_options{'min-level'}]
1695     [--privoxy-address]
1696     [--privoxy-cgi-prefix $privoxy_cgi_url]
1697     [--retries $cli_options{'retries'}]
1698     [--show-skipped-tests]
1699     [--shuffle-tests]
1700     [--sleep-time $cli_options{'sleep-time'}]
1701     [--test-number]
1702     [--verbose]
1703     [--version]
1704     EOF
1705     ;
1706
1707     list_test_types();
1708
1709     print << "    EOF"
1710
1711 Try "perldoc $0" for more information
1712     EOF
1713     ;
1714
1715     exit(0);
1716 }
1717
1718 sub init_cli_options() {
1719
1720     our %cli_options;
1721     our $log_level;
1722
1723     $cli_options{'debug'}     = $log_level;
1724     $cli_options{'forks'}     = CLI_FORKS;
1725     $cli_options{'loops'}     = CLI_LOOPS;
1726     $cli_options{'max-level'} = CLI_MAX_LEVEL;
1727     $cli_options{'max-time'}  = CLI_MAX_TIME;
1728     $cli_options{'min-level'} = CLI_MIN_LEVEL;
1729     $cli_options{'sleep-time'}= CLI_SLEEP_TIME;
1730     $cli_options{'retries'}   = CLI_RETRIES;
1731 }
1732
1733 sub parse_cli_options() {
1734
1735     our %cli_options;
1736     our $log_level;
1737     our $privoxy_cgi_url;
1738
1739     init_cli_options();
1740
1741     GetOptions (
1742         'debug=i'            => \$cli_options{'debug'},
1743         'forks=i'            => \$cli_options{'forks'},
1744         'fuzzer-address=s'   => \$cli_options{'fuzzer-address'},
1745         'fuzzer-feeding'     => \$cli_options{'fuzzer-feeding'},
1746         'header-fuzzing'     => \$cli_options{'header-fuzzing'},
1747         'help'               => \&help,
1748         'level=i'            => \$cli_options{'level'},
1749         'local-test-file=s'  => \$cli_options{'local-test-file'},
1750         'loops=i'            => \$cli_options{'loops'},
1751         'max-level=i'        => \$cli_options{'max-level'},
1752         'max-time=i'         => \$cli_options{'max-time'},
1753         'min-level=i'        => \$cli_options{'min-level'},
1754         'privoxy-address=s'  => \$cli_options{'privoxy-address'},
1755         'privoxy-cgi-prefix=s' => \$privoxy_cgi_url, # XXX: Should use cli_options()
1756         'retries=i'          => \$cli_options{'retries'},
1757         'shuffle-tests'      => \$cli_options{'shuffle-tests'},
1758         'show-skipped-tests' => \$cli_options{'show-skipped-tests'},
1759         'sleep-time=i'       => \$cli_options{'sleep-time'},
1760         'test-number=i'      => \$cli_options{'test-number'},
1761         'verbose'            => \$cli_options{'verbose'},
1762         'version'            => sub {print_version && exit(0)}
1763     ) or exit(1);
1764     $log_level |= $cli_options{'debug'};
1765 }
1766
1767 sub cli_option_is_set($) {
1768
1769     our %cli_options;
1770     my $cli_option = shift;
1771
1772     return defined $cli_options{$cli_option};
1773 }
1774
1775 sub get_cli_option($) {
1776
1777     our %cli_options;
1778     my $cli_option = shift;
1779
1780     die "Unknown CLI option: $cli_option" unless defined $cli_options{$cli_option};
1781
1782     return $cli_options{$cli_option};
1783 }
1784
1785 sub init_proxy_settings($) {
1786
1787     my $choice = shift;
1788     our $proxy = undef;
1789
1790     if (($choice eq 'fuzz-proxy') and cli_option_is_set('fuzzer-address')) {
1791         $proxy = get_cli_option('fuzzer-address');
1792     }
1793
1794     if ((not defined $proxy) or ($choice eq 'vanilla-proxy')) {
1795
1796         if (cli_option_is_set('privoxy-address')) {
1797             $proxy .=  get_cli_option('privoxy-address');
1798         }
1799     }
1800 }
1801
1802 sub start_forks($) {
1803     my $forks = shift;
1804
1805     log_and_die("Invalid --fork value: " . $forks . ".") if ($forks < 0);
1806
1807     foreach my $fork (1 .. $forks) {
1808         log_message("Starting fork $fork");
1809         my $pid = fork();
1810         if (defined $pid && !$pid) {
1811             return;
1812         }
1813     }
1814 }
1815
1816 sub main() {
1817
1818     init_our_variables();
1819     parse_cli_options();
1820     init_proxy_settings('vanilla-proxy');
1821     load_regression_tests();
1822     init_proxy_settings('fuzz-proxy');
1823     start_forks(get_cli_option('forks')) if cli_option_is_set('forks');
1824     execute_regression_tests();
1825 }
1826
1827 main();
1828
1829 =head1 NAME
1830
1831 B<privoxy-regression-test> - A regression test "framework" for Privoxy.
1832
1833 =head1 SYNOPSIS
1834
1835 B<privoxy-regression-test> [B<--debug bitmask>] [B<--forks> forks]
1836 [B<--fuzzer-feeding>] [B<--fuzzer-feeding>] [B<--help>] [B<--level level>]
1837 [B<--local-test-file testfile>] [B<--loops count>] [B<--max-level max-level>]
1838 [B<--max-time max-time>] [B<--min-level min-level>] B<--privoxy-address proxy-address>
1839 B<--privoxy-cgi-prefix cgi-prefix> [B<--retries retries>] [B<--test-number test-number>]
1840 [B<--show-skipped-tests>] [B<--sleep-time> seconds] [B<--verbose>]
1841 [B<--version>]
1842
1843 =head1 DESCRIPTION
1844
1845 Privoxy-Regression-Test is supposed to one day become
1846 a regression test suite for Privoxy. It's not quite there
1847 yet, however, and can currently only test header actions,
1848 check the returned status code for requests to arbitrary
1849 URLs and verify which actions are applied to them.
1850
1851 Client header actions are tested by requesting
1852 B<http://p.p/show-request> and checking whether
1853 or not Privoxy modified the original request as expected.
1854
1855 The original request contains both the header the action-to-be-tested
1856 acts upon and an additional tagger-triggering header that enables
1857 the action to test.
1858
1859 Applied actions are checked through B<http://p.p/show-url-info>.
1860
1861 =head1 CONFIGURATION FILE SYNTAX
1862
1863 Privoxy-Regression-Test's configuration is embedded in
1864 Privoxy action files and loaded through Privoxy's web interface.
1865
1866 It makes testing a Privoxy version running on a remote system easier
1867 and should prevent you from updating your tests without updating Privoxy's
1868 configuration accordingly.
1869
1870 A client-header-action test section looks like this:
1871
1872     # Set Header    = Referer: http://www.example.org.zwiebelsuppe.exit/
1873     # Expect Header = Referer: http://www.example.org/
1874     {+client-header-filter{hide-tor-exit-notation} -hide-referer}
1875     TAG:^client-header-filter\{hide-tor-exit-notation\}$
1876
1877 The example above causes Privoxy-Regression-Test to set
1878 the header B<Referer: http://www.example.org.zwiebelsuppe.exit/>
1879 and to expect it to be modified to
1880 B<Referer: http://www.example.org/>.
1881
1882 When testing this section, Privoxy-Regression-Test will set the header
1883 B<X-Privoxy-Control: client-header-filter{hide-tor-exit-notation}>
1884 causing the B<privoxy-control> tagger to create the tag
1885 B<client-header-filter{hide-tor-exit-notation}> which will finally
1886 cause Privoxy to enable the action section.
1887
1888 Note that the actions itself are only used by Privoxy,
1889 Privoxy-Regression-Test ignores them and will be happy
1890 as long as the expectations are satisfied.
1891
1892 A fetch test looks like this:
1893
1894     # Fetch Test = http://p.p/user-manual
1895     # Expect Status Code = 302
1896
1897 It tells Privoxy-Regression-Test to request B<http://p.p/user-manual>
1898 and to expect a response with the HTTP status code B<302>. Obviously that's
1899 not a very thorough test and mainly useful to get some code coverage
1900 for Valgrind or to verify that the templates are installed correctly.
1901
1902 If you want to test CGI pages that require a trusted
1903 referer, you can use:
1904
1905     # Trusted CGI Request = http://p.p/edit-actions
1906
1907 It works like ordinary fetch tests, but sets the referer
1908 header to a trusted value.
1909
1910 If no explicit status code expectation is set, B<200> is used.
1911
1912 To verify that a URL is blocked, use:
1913
1914     # Blocked URL = http://www.example.com/blocked
1915
1916 To verify that a specific set of actions is applied to an URL, use:
1917
1918     # Sticky Actions = +block{foo} +handle-as-empty-document -handle-as-image
1919     # URL = http://www.example.org/my-first-url
1920
1921 The sticky actions will be checked for all URLs below it
1922 until the next sticky actions directive.
1923
1924 To verify that requests for a URL get redirected, use:
1925
1926     # Redirected URL = http://www.example.com/redirect-me
1927     # Redirect Destination = http://www.example.org/redirected
1928
1929 To skip a test, add the following line:
1930
1931     # Ignore = Yes
1932
1933 The difference between a skipped test and a removed one is that removing
1934 a test affects the numbers of the following tests, while a skipped test
1935 is still loaded and thus keeps the test numbers unchanged.
1936
1937 Sometimes user modifications intentionally conflict with tests in the
1938 default configuration and thus cause test failures. Adding the Ignore
1939 directive to the failing tests works but is inconvenient as the directive
1940 is likely to get lost with the next update.
1941
1942 Overwrite conditions are an alternative and can be added in any action
1943 file as long as the come after the test that is expected to fail.
1944 They cause all previous tests that match the condition to be skipped.
1945
1946 It is recommended to put the overwrite condition below the custom Privoxy
1947 section that causes the expected test failure and before the custom test
1948 that verifies that tests the now expected behaviour. Example:
1949
1950     # The following section is expected to overwrite a section in
1951     # default.action, whose effect is being tested. Thus also disable
1952     # the test that is now expected to fail and add a new one.
1953     #
1954     {+block{Facebook makes Firefox even more unstable. Do not want.}}
1955     # Overwrite condition = http://apps.facebook.com/onthefarm/track.php?creative=&cat=friendvisit&subcat=weeds&key=a789a971dc687bee4c20c044834fabdd&next=index.php%3Fref%3Dnotif%26visitId%3D898835505
1956     # Blocked URL = http://apps.facebook.com/
1957     .facebook./
1958
1959 =head1 TEST LEVELS
1960
1961 All tests have test levels to let the user
1962 control which ones to execute (see I<OPTIONS> below). 
1963 Test levels are either set with the B<Level> directive,
1964 or implicitly through the test type.
1965
1966 Redirect tests default to level 108, block tests to level 7,
1967 fetch tests to level 6, "Sticky Actions" tests default to
1968 level 5, tests for trusted CGI requests to level 3 and
1969 client-header-action tests to level 1.
1970
1971 The current redirect test level is above the default
1972 max-level value as failed tests will result in outgoing
1973 connections. Use the B<--max-level> option to run them
1974 as well.
1975
1976 The "Default level offset" directive can be used to change
1977 the default level by a given value. This directive affects
1978 all tests located after it until the end of the file or a another
1979 "Default level offset" directive is reached. The purpose of this
1980 directive is to make it more convenient to skip similar tests in
1981 a given file without having to remove or disable the tests completely.
1982
1983 =head1 OPTIONS
1984
1985 B<--debug bitmask> Add the bitmask provided as integer
1986 to the debug settings.
1987
1988 B<--forks forks> Number of forks to start before executing
1989 the regression tests. This is mainly useful for stress-testing.
1990
1991 B<--fuzzer-address> Listening address used when executing
1992 the regression tests. Useful to make sure that the requests
1993 to load the regression tests don't fail due to fuzzing.
1994
1995 B<--fuzzer-feeding> Ignore some errors that would otherwise
1996 cause Privoxy-Regression-Test to abort the test because
1997 they shouldn't happen in normal operation. This option is
1998 intended to be used if Privoxy-Regression-Test is only
1999 used to feed a fuzzer in which case there's a high chance
2000 that Privoxy gets an invalid request and returns an error
2001 message.
2002
2003 B<--help> Shows available command line options.
2004
2005 B<--header-fuzzing> Modifies linear white space in
2006 headers in a way that should not affect the test result.
2007
2008 B<--level level> Only execute tests with the specified B<level>. 
2009
2010 B<--local-test-file test-file> Do not get the tests
2011 through Privoxy's web interface, but use a single local
2012 file. Not recommended for testing Privoxy, but can be useful
2013 to "misappropriate" Privoxy-Regression-Test to test other
2014 stuff, like webserver configurations.
2015
2016 B<--loop count> Loop through the regression tests B<count> times. 
2017 Useful to feed a fuzzer, or when doing stress tests with
2018 several Privoxy-Regression-Test instances running at the same
2019 time.
2020
2021 B<--max-level max-level> Only execute tests with a B<level>
2022 below or equal to the numerical B<max-level>.
2023
2024 B<--max-time max-time> Give Privoxy B<max-time> seconds
2025 to return data. Increasing the default may make sense when
2026 Privoxy is run through Valgrind, decreasing the default may
2027 make sense when Privoxy-Regression-Test is used to feed
2028 a fuzzer.
2029
2030 B<--min-level min-level> Only execute tests with a B<level>
2031 above or equal to the numerical B<min-level>.
2032
2033 B<--privoxy-address proxy-address> Privoxy's listening address.
2034 If it's not set, the value of the environment variable http_proxy
2035 will be used. B<proxy-address> has to be specified in http_proxy
2036 syntax.
2037
2038 B<--privoxy-cgi-prefix privoxy-cgi-prefix> The prefix to use when
2039 building URLs that are supposed to reach Privoxy's CGI interface.
2040 If it's not set, B<http://p.p/> is used, which is supposed to work
2041 with the default Privoxy configuration.
2042 If Privoxy has been built with B<FEATURE_HTTPS_INSPECTION> enabled,
2043 and if https inspection is activated with the B<+https-inspection>
2044 action, this option can be used with
2045 B<https://p.p/> provided the system running Privoxy-Regression-Test
2046 has been configured to trust the certificate used by Privoxy.
2047 Note that there are currently two tests in the official
2048 B<regression-tests.action> file that are expected to fail when
2049 using a B<privoxy-cgi-prefix> with B<https://> and aren't automatically
2050 skipped.
2051
2052 B<--retries retries> Retry B<retries> times.
2053
2054 B<--test-number test-number> Only run the test with the specified
2055 number.
2056
2057 B<--show-skipped-tests> Log skipped tests even if verbose mode is off.
2058
2059 B<--shuffle-tests> Shuffle test sections and their tests before
2060 executing them. When combined with B<--forks>, this can increase
2061 the chances of detecting race conditions. Of course some problems
2062 are easier to detect without this option.
2063
2064 B<--sleep-time seconds> Wait B<seconds> between tests. Useful when
2065 debugging issues with systems that don't log with millisecond precision.
2066
2067 B<--verbose> Log successful tests as well. By default only
2068 the failures are logged.
2069
2070 B<--version> Print version and exit.
2071
2072 The second dash is optional, options can be shortened,
2073 as long as there are no ambiguities.
2074
2075 =head1 PRIVOXY CONFIGURATION
2076
2077 Privoxy-Regression-Test is shipped with B<regression-tests.action>
2078 which aims to test all official client-header modifying actions
2079 and can be used to verify that the templates and the user manual
2080 files are installed correctly.
2081
2082 To use it, it has to be copied in Privoxy's configuration
2083 directory, and afterwards referenced in Privoxy's configuration
2084 file with the line:
2085
2086     actionsfile regression-tests.action
2087
2088 In general, its tests are supposed to work without changing
2089 any other action files, unless you already added lots of
2090 taggers yourself. If you are using taggers that cause problems,
2091 you might have to temporary disable them for Privoxy's CGI pages.
2092
2093 Some of the regression tests rely on Privoxy features that
2094 may be disabled in your configuration. Tests with a level below
2095 7 are supposed to work with all Privoxy configurations (provided
2096 you didn't build with FEATURE_GRACEFUL_TERMINATION).
2097
2098 Tests with level 9 require Privoxy to deliver the User Manual,
2099 tests with level 12 require the CGI editor to be enabled.
2100
2101 =head1 CAVEATS
2102
2103 Expect the configuration file syntax to change with future releases.
2104
2105 =head1 LIMITATIONS
2106
2107 As Privoxy's B<show-request> page only shows client headers,
2108 Privoxy-Regression-Test can't use it to test Privoxy actions
2109 that modify server headers.
2110
2111 As Privoxy-Regression-Test relies on Privoxy's tag feature to
2112 control the actions to test, it currently only works with
2113 Privoxy 3.0.7 or later.
2114
2115 At the moment Privoxy-Regression-Test fetches Privoxy's
2116 configuration page through I<curl>(1), therefore you have to
2117 have I<curl> installed, otherwise you won't be able to run
2118 Privoxy-Regression-Test in a meaningful way.
2119
2120 =head1 SEE ALSO
2121
2122 privoxy(1) curl(1)
2123
2124 =head1 AUTHOR
2125
2126 Fabian Keil <fk@fabiankeil.de>
2127
2128 =cut