1 # Perl module for parsing and generating the Subunit protocol
2 # Copyright (C) 2008-2009 Jelmer Vernooij <jelmer@samba.org>
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.
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.
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/>.
22 @EXPORT_OK = qw(parse_results);
26 sub parse_results
($$$)
28 my ($msg_ops, $statistics, $fh) = @_;
29 my $expected_fail = 0;
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($_);
46 # reason may be specified in next lines
49 $msg_ops->control_msg($_);
50 if ($_ eq "]\n") { $terminated = 1; last; } else { $reason .= $_; }
53 unless ($terminated) {
54 $statistics->{TESTS_ERROR
}++;
55 $msg_ops->end_test($testname, "error", 1,
56 "reason ($result) interrupted");
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);
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);
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);
96 } elsif (/^testsuite: (.*)\n/) {
97 $msg_ops->start_testsuite($1);
99 $msg_ops->output_msg($_);
103 while ($#$open_tests+1 > 0) {
104 $msg_ops->end_test(pop(@
$open_tests), "error", 1,
105 "was started but never finished!");
106 $statistics->{TESTS_ERROR
}++;
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
};
116 return 1 if $statistics->{TESTS_ERROR
} > 0;
117 return 1 if $statistics->{TESTS_UNEXPECTED_FAIL
} > 0;
125 print "test: $testname\n";
134 print "$result: $name [\n";
138 print "$result: $name\n";
146 end_test
($name, "skip", $reason);
153 end_test
($name, "fail", $reason);
156 sub success_test
($;$)
160 end_test
($name, "success", $reason);
167 end_test
($name, "xfail", $reason);
173 my ($sec, $min, $hour, $mday, $mon, $year, $wday, $yday, $isdst) = localtime($time);
174 printf "time: %04d-%02d-%02d %02d:%02d:%02d\n", $year+1900, $mon+1, $mday, $hour, $min, $sec;
179 print "progress: pop\n";
184 print "progress: push\n";
189 my ($count, $whence) = @_;
191 unless(defined($whence)) {
195 print "progress: $whence$count\n";
198 # The following are Samba extensions:
200 sub start_testsuite
($)
203 print "testsuite: $name\n";
206 sub skip_testsuite
($;$)
208 my ($name, $reason) = @_;
210 print "skip-testsuite: $name [\n$reason\n]\n";
212 print "skip-testsuite: $name\n";
216 sub end_testsuite
($$;$)
222 print "testsuite-$result: $name [\n";
226 print "testsuite-$result: $name\n";