subunit: Make sure "]" in failure reason ends up on its own line, so the
[bbaumbach/samba-autobuild/.git] / selftest / Subunit.pm
1 # Perl module for parsing and generating the Subunit protocol
2 # Copyright (C) 2008-2009 Jelmer Vernooij <jelmer@samba.org>
3 #
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 3 of the License, or
7 # (at your option) any later version.
8
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13
14 # You should have received a copy of the GNU General Public License
15 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
17 package Subunit;
18 use POSIX;
19
20 require Exporter;
21 @ISA = qw(Exporter);
22 @EXPORT_OK = qw(parse_results);
23
24 use strict;
25
26 sub parse_results($$$)
27 {
28         my ($msg_ops, $statistics, $fh) = @_;
29         my $expected_fail = 0;
30         my $open_tests = [];
31
32         while(<$fh>) {
33                 if (/^test: (.+)\n/) {
34                         $msg_ops->control_msg($_);
35                         $msg_ops->start_test($1);
36                         push (@$open_tests, $1);
37                 } elsif (/^time: (\d+)-(\d+)-(\d+) (\d+):(\d+):(\d+)\n/) {
38                         $msg_ops->report_time(mktime($6, $5, $4, $3, $2-1, $1-1900));
39                 } elsif (/^(success|successful|failure|fail|skip|knownfail|error|xfail|skip-testsuite|testsuite-failure|testsuite-xfail|testsuite-success|testsuite-error): (.*?)( \[)?([ \t]*)( multipart)?\n/) {
40                         $msg_ops->control_msg($_);
41                         my $result = $1;
42                         my $testname = $2;
43                         my $reason = undef;
44                         if ($3) {
45                                 $reason = "";
46                                 # reason may be specified in next lines
47                                 my $terminated = 0;
48                                 while(<$fh>) {
49                                         $msg_ops->control_msg($_);
50                                         if ($_ eq "]\n") { $terminated = 1; last; } else { $reason .= $_; }
51                                 }
52                                 
53                                 unless ($terminated) {
54                                         $statistics->{TESTS_ERROR}++;
55                                         $msg_ops->end_test($testname, "error", 1,
56                                                                "reason ($result) interrupted\n");
57                                         return 1;
58                                 }
59                         }
60                         if ($result eq "success" or $result eq "successful") {
61                                 pop(@$open_tests); #FIXME: Check that popped value == $testname 
62                                 $statistics->{TESTS_EXPECTED_OK}++;
63                                 $msg_ops->end_test($testname, "success", 0, $reason);
64                         } elsif ($result eq "xfail" or $result eq "knownfail") {
65                                 pop(@$open_tests); #FIXME: Check that popped value == $testname
66                                 $statistics->{TESTS_EXPECTED_FAIL}++;
67                                 $msg_ops->end_test($testname, "xfail", 0, $reason);
68                                 $expected_fail++;
69                         } elsif ($result eq "failure" or $result eq "fail") {
70                                 pop(@$open_tests); #FIXME: Check that popped value == $testname
71                                 $statistics->{TESTS_UNEXPECTED_FAIL}++;
72                                 $msg_ops->end_test($testname, "failure", 1, $reason);
73                         } elsif ($result eq "skip") {
74                                 $statistics->{TESTS_SKIP}++;
75                                 # Allow tests to be skipped without prior announcement of test
76                                 my $last = pop(@$open_tests);
77                                 if (defined($last) and $last ne $testname) {
78                                         push (@$open_tests, $testname);
79                                 }
80                                 $msg_ops->end_test($testname, "skip", 0, $reason);
81                         } elsif ($result eq "error") {
82                                 $statistics->{TESTS_ERROR}++;
83                                 pop(@$open_tests); #FIXME: Check that popped value == $testname
84                                 $msg_ops->end_test($testname, "error", 1, $reason);
85                         } elsif ($result eq "skip-testsuite") {
86                                 $msg_ops->skip_testsuite($testname);
87                         } elsif ($result eq "testsuite-success") {
88                                 $msg_ops->end_testsuite($testname, "success", $reason);
89                         } elsif ($result eq "testsuite-failure") {
90                                 $msg_ops->end_testsuite($testname, "failure", $reason);
91                         } elsif ($result eq "testsuite-xfail") {
92                                 $msg_ops->end_testsuite($testname, "xfail", $reason);
93                         } elsif ($result eq "testsuite-error") {
94                                 $msg_ops->end_testsuite($testname, "error", $reason);
95                         } 
96                 } elsif (/^testsuite: (.*)\n/) {
97                         $msg_ops->start_testsuite($1);
98                 } else {
99                         $msg_ops->output_msg($_);
100                 }
101         }
102
103         while ($#$open_tests+1 > 0) {
104                 $msg_ops->end_test(pop(@$open_tests), "error", 1,
105                                    "was started but never finished!\n");
106                 $statistics->{TESTS_ERROR}++;
107         }
108
109         # if the Filter module is in use, it will have the right counts
110         if (defined($msg_ops->{total_error})) {
111                 $statistics->{TESTS_ERROR} = $msg_ops->{total_error};
112                 $statistics->{TESTS_UNEXPECTED_FAIL} = $msg_ops->{total_fail};
113                 $statistics->{TESTS_EXPECTED_FAIL} = $msg_ops->{total_xfail};
114         }
115
116         return 1 if $statistics->{TESTS_ERROR} > 0;
117         return 1 if $statistics->{TESTS_UNEXPECTED_FAIL} > 0;
118
119         return 0;
120 }
121
122 sub start_test($)
123 {
124         my ($testname) = @_;
125         print "test: $testname\n";
126 }
127
128 sub end_test($$;$)
129 {
130         my $name = shift;
131         my $result = shift;
132         my $reason = shift;
133         if ($reason) {
134                 print "$result: $name [\n";
135                 print $reason;
136                 if (substr($reason, -1, 1) != "\n") { print "\n"; }
137                 print "]\n";
138         } else {
139                 print "$result: $name\n";
140         }
141 }
142
143 sub skip_test($;$)
144 {
145         my $name = shift;
146         my $reason = shift;
147         end_test($name, "skip", $reason);
148 }
149
150 sub fail_test($;$)
151 {
152         my $name = shift;
153         my $reason = shift;
154         end_test($name, "fail", $reason);
155 }
156
157 sub success_test($;$)
158 {
159         my $name = shift;
160         my $reason = shift;
161         end_test($name, "success", $reason);
162 }
163
164 sub xfail_test($;$)
165 {
166         my $name = shift;
167         my $reason = shift;
168         end_test($name, "xfail", $reason);
169 }
170
171 sub report_time($)
172 {
173         my ($time) = @_;
174         my ($sec, $min, $hour, $mday, $mon, $year, $wday, $yday, $isdst) = localtime($time);
175         printf "time: %04d-%02d-%02d %02d:%02d:%02d\n", $year+1900, $mon+1, $mday, $hour, $min, $sec;
176 }
177
178 sub progress_pop()
179 {
180         print "progress: pop\n";
181 }
182
183 sub progress_push()
184 {
185         print "progress: push\n";
186 }
187
188 sub progress($;$)
189 {
190         my ($count, $whence) = @_;
191
192         unless(defined($whence)) {
193                 $whence = "";
194         }
195
196         print "progress: $whence$count\n";
197 }
198
199 # The following are Samba extensions:
200
201 sub start_testsuite($)
202 {
203         my ($name) = @_;
204         print "testsuite: $name\n";
205 }
206
207 sub skip_testsuite($;$)
208 {
209         my ($name, $reason) = @_;
210         if ($reason) {
211                 print "skip-testsuite: $name [\n$reason\n]\n";
212         } else {
213                 print "skip-testsuite: $name\n";
214         }
215 }
216
217 sub end_testsuite($$;$)
218 {
219         my $name = shift;
220         my $result = shift;
221         my $reason = shift;
222         if ($reason) {
223                 print "testsuite-$result: $name [\n";
224                 print "$reason\n";
225                 print "]\n";
226         } else {
227                 print "testsuite-$result: $name\n";
228         }
229 }
230
231 1;