]> sjero.net Git - wget/blob - tests/run-px
657194fc2d3558b933744297128a71d846020669
[wget] / tests / run-px
1 #!/usr/bin/env perl
2
3 use 5.006;
4 use strict;
5 use warnings;
6
7 use Term::ANSIColor;
8
9 die "Please specify the top source directory.\n" if (!@ARGV);
10 my $top_srcdir = shift @ARGV;
11
12 my @tests = (
13     'Test-auth-basic.px',
14     'Test-auth-no-challenge.px',
15     'Test-auth-no-challenge-url.px',
16     'Test-auth-with-content-disposition.px',
17     'Test-auth-retcode.px',
18     'Test-cookies.px',
19     'Test-cookies-401.px',
20     'Test-proxy-auth-basic.px',
21     'Test-proxied-https-auth.px',
22     'Test-N-HTTP-Content-Disposition.px',
23     'Test--spider.px',
24     'Test-c-full.px',
25     'Test-c-partial.px',
26     'Test-c-shorter.px',
27     'Test-c.px',
28     'Test-E-k-K.px',
29     'Test-E-k.px',
30     'Test-ftp.px',
31     'Test-ftp-pasv-fail.px',
32     'Test-ftp-bad-list.px',
33     'Test-ftp-recursive.px',
34     'Test-ftp-iri.px',
35     'Test-ftp-iri-fallback.px',
36     'Test-ftp-iri-recursive.px',
37     'Test-ftp-iri-disabled.px',
38     'Test-HTTP-Content-Disposition-1.px',
39     'Test-HTTP-Content-Disposition-2.px',
40     'Test-HTTP-Content-Disposition.px',
41     'Test-i-ftp.px',
42     'Test-i-http.px',
43     'Test-idn-headers.px',
44     'Test-idn-meta.px',
45     'Test-idn-cmd.px',
46     'Test-idn-cmd-utf8.px',
47     'Test-idn-robots.px',
48     'Test-idn-robots-utf8.px',
49     'Test-iri.px',
50     'Test-iri-percent.px',
51     'Test-iri-disabled.px',
52     'Test-iri-forced-remote.px',
53     'Test-iri-list.px',
54     'Test-k.px',
55     'Test-meta-robots.px',
56     'Test-N-current.px',
57     'Test-N-smaller.px',
58     'Test-N-no-info.px',
59     'Test-N--no-content-disposition.px',
60     'Test-N--no-content-disposition-trivial.px',
61     'Test--no-content-disposition.px',
62     'Test--no-content-disposition-trivial.px',
63     'Test-N-old.px',
64     'Test-nonexisting-quiet.px',
65     'Test-noop.px',
66     'Test-np.px',
67     'Test-N.px',
68     'Test-O-HTTP-Content-Disposition.px',
69     'Test-O--no-content-disposition.px',
70     'Test-O--no-content-disposition-trivial.px',
71     'Test-O-nonexisting.px',
72     'Test-O.px',
73     'Test-O-nc.px',
74     'Test-restrict-ascii.px',
75     'Test-Restrict-Lowercase.px',
76     'Test-Restrict-Uppercase.px',
77     'Test-stdouterr.px',
78     'Test--spider-fail.px',
79     'Test--spider-r-HTTP-Content-Disposition.px',
80     'Test--spider-r--no-content-disposition.px',
81     'Test--spider-r--no-content-disposition-trivial.px',
82     'Test--spider-r.px',
83 );
84
85 foreach my $var (qw(SYSTEM_WGETRC WGETRC)) {
86     $ENV{$var} = '/dev/null';
87 }
88
89 my @tested;
90
91 foreach my $test (@tests) {
92     print "Running $test\n\n";
93     system("$^X -I$top_srcdir/tests $top_srcdir/tests/$test $top_srcdir");
94     push @tested, { name => $test, result => $? >> 8 };
95 }
96
97 foreach my $var (qw(SYSTEM_WGETRC WGETRC)) {
98     delete $ENV{$var};
99 }
100
101 my %exit = (
102     pass    => 0,
103     fail    => 1,
104     skip    => 2,
105     unknown => 3, # or greater
106 );
107
108 my %colors = (
109     $exit{pass}    => colored('pass:',    'green'  ),
110     $exit{fail}    => colored('FAIL:',    'red'    ),
111     $exit{skip}    => colored('Skip:',    'yellow' ),
112     $exit{unknown} => colored('Unknown:', 'magenta'),
113 );
114
115 print "\n";
116 foreach my $test (@tested) {
117     my $colored = exists $colors{$test->{result}}
118       ? $colors{$test->{result}}
119       : $colors{$exit{unknown}};
120     print "$colored $test->{name}\n";
121 }
122
123 my $count = sub
124 {
125     return {
126       pass    => sub { scalar grep $_->{result} == $exit{pass},    @tested },
127       fail    => sub { scalar grep $_->{result} == $exit{fail},    @tested },
128       skip    => sub { scalar grep $_->{result} == $exit{skip},    @tested },
129       unknown => sub { scalar grep $_->{result} >= $exit{unknown}, @tested },
130     }->{$_[0]}->();
131 };
132
133 my $summary = sub
134 {
135     my @lines = (
136         "${\scalar @tested} tests were run",
137         "${\$count->('pass')} PASS, ${\$count->('fail')} FAIL",
138         "${\$count->('skip')} SKIP, ${\$count->('unknown')} UNKNOWN",
139     );
140     my $len_longest = sub
141     {
142         local $_ = 0;
143         foreach my $line (@lines) {
144             if (length $line > $_) {
145                 $_ = length $line;
146             }
147         }
148         return $_;
149     }->();
150     return join "\n",
151       '=' x $len_longest,
152       @lines,
153       '=' x $len_longest;
154 }->();
155
156 print "\n";
157 print $count->('fail') || $count->('unknown')
158   ? colored($summary, 'red')
159   : colored($summary, 'green');
160 print "\n";
161
162 exit $count->('fail') + $count->('unknown');