]> sjero.net Git - wget/blob - tests/run-px
Add test to ensure correct return code on --post-file failure
[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--post-file.px',
74     'Test-O-nc.px',
75     'Test-restrict-ascii.px',
76     'Test-Restrict-Lowercase.px',
77     'Test-Restrict-Uppercase.px',
78     'Test-stdouterr.px',
79     'Test--spider-fail.px',
80     'Test--spider-r-HTTP-Content-Disposition.px',
81     'Test--spider-r--no-content-disposition.px',
82     'Test--spider-r--no-content-disposition-trivial.px',
83     'Test--spider-r.px',
84 );
85
86 foreach my $var (qw(SYSTEM_WGETRC WGETRC)) {
87     $ENV{$var} = '/dev/null';
88 }
89
90 my @tested;
91
92 foreach my $test (@tests) {
93     print "Running $test\n\n";
94     system("$^X -I$top_srcdir/tests $top_srcdir/tests/$test $top_srcdir");
95     push @tested, { name => $test, result => $? >> 8 };
96 }
97
98 foreach my $var (qw(SYSTEM_WGETRC WGETRC)) {
99     delete $ENV{$var};
100 }
101
102 my %exit = (
103     pass    => 0,
104     fail    => 1,
105     skip    => 2,
106     unknown => 3, # or greater
107 );
108
109 my %colors = (
110     $exit{pass}    => colored('pass:',    'green'  ),
111     $exit{fail}    => colored('FAIL:',    'red'    ),
112     $exit{skip}    => colored('Skip:',    'yellow' ),
113     $exit{unknown} => colored('Unknown:', 'magenta'),
114 );
115
116 print "\n";
117 foreach my $test (@tested) {
118     my $colored = exists $colors{$test->{result}}
119       ? $colors{$test->{result}}
120       : $colors{$exit{unknown}};
121     print "$colored $test->{name}\n";
122 }
123
124 my $count = sub
125 {
126     return {
127       pass    => sub { scalar grep $_->{result} == $exit{pass},    @tested },
128       fail    => sub { scalar grep $_->{result} == $exit{fail},    @tested },
129       skip    => sub { scalar grep $_->{result} == $exit{skip},    @tested },
130       unknown => sub { scalar grep $_->{result} >= $exit{unknown}, @tested },
131     }->{$_[0]}->();
132 };
133
134 my $summary = sub
135 {
136     my @lines = (
137         "${\scalar @tested} tests were run",
138         "${\$count->('pass')} PASS, ${\$count->('fail')} FAIL",
139         "${\$count->('skip')} SKIP, ${\$count->('unknown')} UNKNOWN",
140     );
141     my $len_longest = sub
142     {
143         local $_ = 0;
144         foreach my $line (@lines) {
145             if (length $line > $_) {
146                 $_ = length $line;
147             }
148         }
149         return $_;
150     }->();
151     return join "\n",
152       '=' x $len_longest,
153       @lines,
154       '=' x $len_longest;
155 }->();
156
157 print "\n";
158 print $count->('fail') || $count->('unknown')
159   ? colored($summary, 'red')
160   : colored($summary, 'green');
161 print "\n";
162
163 exit $count->('fail') + $count->('unknown');