summaryrefslogtreecommitdiff
path: root/source4/selftest/Subunit.pm
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2007-08-27 15:15:38 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 15:02:52 -0500
commit01ab492d286e40dd2118b6755223d7bdad2fec92 (patch)
treec0fb40c7c2d0b4e128ba7a78a5f8c89d5f853bcf /source4/selftest/Subunit.pm
parente1ecb353a595b171e0f0b1da96b1329a9b661465 (diff)
downloadsamba-01ab492d286e40dd2118b6755223d7bdad2fec92.tar.gz
samba-01ab492d286e40dd2118b6755223d7bdad2fec92.tar.bz2
samba-01ab492d286e40dd2118b6755223d7bdad2fec92.zip
r24708: Move subunit code to a separate module.
(This used to be commit 4be702896d6875b463dee046b34744b0b5699519)
Diffstat (limited to 'source4/selftest/Subunit.pm')
-rw-r--r--source4/selftest/Subunit.pm74
1 files changed, 74 insertions, 0 deletions
diff --git a/source4/selftest/Subunit.pm b/source4/selftest/Subunit.pm
new file mode 100644
index 0000000000..1be412c356
--- /dev/null
+++ b/source4/selftest/Subunit.pm
@@ -0,0 +1,74 @@
+package Subunit;
+
+require Exporter;
+@ISA = qw(Exporter);
+@EXPORT_OK = qw(parse_results);
+
+use strict;
+
+sub parse_results($$$$$)
+{
+ my ($msg_ops, $msg_state, $statistics, $fh, $expecting_failure) = @_;
+ my $expected_ret = 1;
+ my $open_tests = {};
+
+ while(<$fh>) {
+ if (/^test: (.+)\n/) {
+ $msg_ops->control_msg($msg_state, $_);
+ $open_tests->{$1} = 1;
+ $msg_ops->start_test($msg_state, $1);
+ } elsif (/^(success|failure|skip|error): (.*?)( \[)?([ \t]*)\n/) {
+ $msg_ops->control_msg($msg_state, $_);
+ my $reason = undef;
+ if ($3) {
+ $reason = "";
+ # reason may be specified in next lines
+ while(<$fh>) {
+ $msg_ops->control_msg($msg_state, $_);
+ if ($_ eq "]\n") { last; } else { $reason .= $_; }
+ }
+ }
+ my $result = $1;
+ if ($1 eq "success") {
+ delete $open_tests->{$2};
+ if ($expecting_failure->("$msg_state->{NAME}/$2")) {
+ $statistics->{TESTS_UNEXPECTED_OK}++;
+ $msg_ops->end_test($msg_state, $2, $1, 1, $reason);
+ } else {
+ $statistics->{TESTS_EXPECTED_OK}++;
+ $msg_ops->end_test($msg_state, $2, $1, 0, $reason);
+ }
+ } elsif ($1 eq "failure") {
+ delete $open_tests->{$2};
+ if ($expecting_failure->("$msg_state->{NAME}/$2")) {
+ $statistics->{TESTS_EXPECTED_FAIL}++;
+ $msg_ops->end_test($msg_state, $2, $1, 0, $reason);
+ $expected_ret = 0;
+ } else {
+ $statistics->{TESTS_UNEXPECTED_FAIL}++;
+ $msg_ops->end_test($msg_state, $2, $1, 1, $reason);
+ }
+ } elsif ($1 eq "skip") {
+ $statistics->{TESTS_SKIP}++;
+ delete $open_tests->{$2};
+ $msg_ops->end_test($msg_state, $2, $1, 0, $reason);
+ } elsif ($1 eq "error") {
+ $statistics->{TESTS_ERROR}++;
+ delete $open_tests->{$2};
+ $msg_ops->end_test($msg_state, $2, $1, 1, $reason);
+ }
+ } else {
+ $msg_ops->output_msg($msg_state, $_);
+ }
+ }
+
+ foreach (keys %$open_tests) {
+ $msg_ops->end_test($msg_state, $_, "error", 1,
+ "was started but never finished!");
+ $statistics->{TESTS_ERROR}++;
+ }
+
+ return $expected_ret;
+}
+
+1;