s3-util_sock: Rise debug level for getpeername failed messages.
[Samba/gebeck_regimport.git] / selftest / Subunit.pm
blob2a9fc0e48b8de8a982fe46bdd8b8dd7d843a0637
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/>.
17 package Subunit;
18 use POSIX;
20 require Exporter;
21 @ISA = qw(Exporter);
22 @EXPORT_OK = qw(parse_results);
24 use strict;
26 sub parse_results($$$)
28 my ($msg_ops, $statistics, $fh) = @_;
29 my $expected_fail = 0;
30 my $open_tests = [];
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 .= $_; }
53 unless ($terminated) {
54 $statistics->{TESTS_ERROR}++;
55 $msg_ops->end_test($testname, "error", 1,
56 "reason ($result) interrupted");
57 return 1;
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);
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);
98 } elsif (/^testsuite-count: (\d+)\n/) {
99 $msg_ops->testsuite_count($1);
100 } else {
101 $msg_ops->output_msg($_);
105 while ($#$open_tests+1 > 0) {
106 $msg_ops->end_test(pop(@$open_tests), "error", 1,
107 "was started but never finished!");
108 $statistics->{TESTS_ERROR}++;
111 # if the Filter module is in use, it will have the right counts
112 if (defined($msg_ops->{total_error})) {
113 $statistics->{TESTS_ERROR} = $msg_ops->{total_error};
114 $statistics->{TESTS_UNEXPECTED_FAIL} = $msg_ops->{total_fail};
115 $statistics->{TESTS_EXPECTED_FAIL} = $msg_ops->{total_xfail};
118 return 1 if $statistics->{TESTS_ERROR} > 0;
119 return 1 if $statistics->{TESTS_UNEXPECTED_FAIL} > 0;
121 return 0;
124 sub start_test($)
126 my ($testname) = @_;
127 print "test: $testname\n";
130 sub end_test($$;$)
132 my $name = shift;
133 my $result = shift;
134 my $reason = shift;
135 if ($reason) {
136 print "$result: $name [\n";
137 print "$reason";
138 print "]\n";
139 } else {
140 print "$result: $name\n";
144 sub skip_test($;$)
146 my $name = shift;
147 my $reason = shift;
148 end_test($name, "skip", $reason);
151 sub fail_test($;$)
153 my $name = shift;
154 my $reason = shift;
155 end_test($name, "fail", $reason);
158 sub success_test($;$)
160 my $name = shift;
161 my $reason = shift;
162 end_test($name, "success", $reason);
165 sub xfail_test($;$)
167 my $name = shift;
168 my $reason = shift;
169 end_test($name, "xfail", $reason);
172 sub report_time($)
174 my ($time) = @_;
175 my ($sec, $min, $hour, $mday, $mon, $year, $wday, $yday, $isdst) = localtime($time);
176 printf "time: %04d-%02d-%02d %02d:%02d:%02d\n", $year+1900, $mon+1, $mday, $hour, $min, $sec;
179 # The following are Samba extensions:
181 sub start_testsuite($)
183 my ($name) = @_;
184 print "testsuite: $name\n";
187 sub skip_testsuite($;$)
189 my ($name, $reason) = @_;
190 if ($reason) {
191 print "skip-testsuite: $name [\n$reason\n]\n";
192 } else {
193 print "skip-testsuite: $name\n";
197 sub end_testsuite($$;$)
199 my $name = shift;
200 my $result = shift;
201 my $reason = shift;
202 if ($reason) {
203 print "testsuite-$result: $name [\n";
204 print "$reason\n";
205 print "]\n";
206 } else {
207 print "testsuite-$result: $name\n";
211 sub testsuite_count($)
213 my ($count) = @_;
214 print "testsuite-count: $count\n";