95c5423383b5be1dc296989cda96d2855b0b1d7b
[ira/wip.git] / selftest / output / buildfarm.pm
1 #!/usr/bin/perl
2 # Buildfarm output for selftest
3 # Copyright (C) 2008 Jelmer Vernooij <jelmer@samba.org>
4 #
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
9
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14
15 # You should have received a copy of the GNU General Public License
16 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
17
18 package output::buildfarm;
19
20 use Exporter;
21 @ISA = qw(Exporter);
22
23 use FindBin qw($RealBin);
24 use lib "$RealBin/..";
25
26 use BuildFarm;
27
28 use strict;
29
30 sub new($$$) {
31         my ($class, $statistics) = @_;
32         my $self = {
33                 test_output => {},
34                 statistics => $statistics,
35                 last_time => 0,
36                 start_time => undef,
37         };
38         bless($self, $class);
39 }
40
41 sub testsuite_count($$)
42 {
43 }
44
45 sub report_time($$)
46 {
47         my ($self, $time) = @_;
48
49         unless ($self->{start_time}) {
50                 $self->{start_time} = $time;
51         }
52
53         $self->{last_time} = $time;
54 }
55
56 sub start_testsuite($$)
57 {
58         my ($self, $name) = @_;
59
60         $self->{NAME} = $name;
61         $self->{START_TIME} = $self->{last_time};
62
63         my $duration = $self->{START_TIME} - $self->{start_time};
64         BuildFarm::start_testsuite($name, $duration);
65         $self->{test_output}->{$name} = "";
66 }
67
68 sub output_msg($$)
69 {
70         my ($self, $output) = @_;
71
72         $self->{test_output}->{$self->{NAME}} .= $output;
73 }
74
75 sub control_msg($$)
76 {
77         my ($self, $output) = @_;
78
79         $self->{test_output}->{$self->{NAME}} .= $output;
80 }
81
82 sub end_testsuite($$$$$$)
83 {
84         my ($self, $name, $result, $unexpected, $reason) = @_;
85
86         BuildFarm::end_testsuite($name, ($self->{last_time} - $self->{START_TIME}), 
87                                      (not $unexpected), $self->{test_output}->{$name}, 
88                                                          $reason);
89 }
90
91 sub start_test($$$)
92 {
93         my ($self, $testname) = @_;
94 }
95
96 sub end_test($$$$$)
97 {
98         my ($self, $testname, $result, $unexpected, $reason) = @_;
99
100         if ($unexpected) {
101                 $self->{test_output}->{$self->{NAME}} .= "UNEXPECTED($result): $testname\n";
102         }
103 }
104
105 sub summary($)
106 {
107         my ($self) = @_;
108         
109         BuildFarm::summary($self->{last_time} - $self->{start_time});
110
111         print "TEST STATUS: $self->{statistics}->{SUITES_FAIL}\n";
112 }
113
114 sub skip_testsuite($$$)
115 {
116         my ($self, $name, $reason) = @_;
117
118         BuildFarm::skip_testsuite($name);
119 }
120
121 1;