-
Notifications
You must be signed in to change notification settings - Fork 58
/
report.cgi
executable file
·196 lines (178 loc) · 5.88 KB
/
report.cgi
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
#! /usr/bin/perl
#
# Copyright (c) 2011 Mans Rullgard <mans@mansr.com>
#
# Permission to use, copy, modify, and distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
# copyright notice and this permission notice appear in all copies.
#
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHORS DISCLAIM ALL WARRANTIES
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
use strict;
use warnings;
use POSIX qw/asctime/;
use CGI qw/param/;
use HTML::Entities;
use MIME::Base64;
use FATE;
my $req_slot = param 'slot';
my $req_time = param 'time';
my $slotdir = "$fatedir/$req_slot";
my $repdir = "$slotdir/$req_time";
my $report = "$repdir/report.xz";
open R, '-|', "unxz -c $report" or fail 'Requsted report not found';
my $hdr = split_header scalar <R> or fail 'Invalid report';
my $conf = split_config scalar <R> or fail 'Invalid report';
my %pass;
my %fail;
while (<R>) {
my $rec = split_rec $_;
${$$rec{status}? \%fail: \%pass}{$$rec{name}} = $rec;
}
close R;
my $npass = keys %pass;
my $nfail = keys %fail;
my $ntest = $npass + $nfail;
my $rep = load_summary $req_slot, $req_time;
my $lastpass = load_lastpass $req_slot;
# main text
print "Content-type: text/html\r\n";
if ($ENV{HTTP_ACCEPT_ENCODING} =~ /gzip/) {
print "Content-Encoding: gzip\r\n\r\n";
open STDOUT, '|-', 'gzip';
} else {
print "\r\n";
}
head1;
print "<title>FATE: $$hdr{slot} $$hdr{rev}</title>\n";
print <<EOF;
<script type="text/javascript">
function toggle(id) {
var e = document.getElementById(id);
e.style.display = e.style.display == 'table-row' ? 'none' : 'table-row';
}
function hide(id) {
var e = document.getElementById(id);
e.style.display = 'none';
}
function show_diff(name) {
hide(name + '-err');
toggle(name + '-diff');
}
function show_err(name) {
hide(name + '-diff');
toggle(name + '-err');
}
</script>
EOF
head2;
print "$$hdr{slot} $$hdr{rev}";
head3;
start 'table', id => 'config';
trow 'Architecture', $$conf{arch};
trow 'Variant', $$conf{subarch};
trow 'CPU', $$conf{cpu};
trow 'OS', $$conf{os};
trow 'Owner', $$rep{owner};
trow 'Compiler', $$conf{cc};
trow 'Configuration', '<code>' . $$conf{config} . '</code>';
trow 'Comment', $$hdr{comment};
start 'tr';
td 'Revision';
if ($gitweb and $$hdr{rev} =~ /(N-)?(.*)/) {
start 'td';
anchor $$hdr{rev}, href => "$gitweb;a=commit;h=$2";
end 'td';
} else {
td $$hdr{rev};
}
end 'tr';
trow 'Date', asctime gmtime parse_date $$hdr{date};
trow 'Status', $npass? "$npass / $ntest" : "$$hdr{errstr} ($$hdr{status})";
trow 'Warnings', $$rep{nwarn};
start 'tr';
td 'Logs';
start 'td';
while (my $logfile = glob "$repdir/*.log.gz") {
my ($log) = $logfile =~ m!^$repdir/([a-z_.-]+)\.log\.gz$! or next;
anchor $log, href => href slot=>$$hdr{slot}, time=>$$hdr{date}, log=>$log;
print "\n";
}
end 'td';
end 'tr';
end;
start 'div', class => 'table-responsive';
start 'table', id => 'tests', class => 'table';
if ($nfail) {
start 'thead';
start 'tr', class => 'fail';
if ($nfail eq 1) {
th "$nfail failed test", colspan => 3;
} else {
th "$nfail failed tests", colspan => 3;
}
th 'Status', class => 'errcode';
th 'Last good rev', class => 'lastpass';
end 'tr';
end 'thead';
start 'tbody';
for my $n (sort keys %fail) {
my $rec = $fail{$n};
my $test = $$rec{name};
my $diff = encode_entities decode_base64($$rec{diff}), '<>&"';
my $err = encode_entities decode_base64($$rec{stderr}), '<>&"';
if ($diff =~ /^--- /) {
$diff =~ s!^--- .*$!<span class="diff-old">$&</span>!gm;
$diff =~ s!^\+\+\+ .*$!<span class="diff-new">$&</span>!gm;
$diff =~ s!^\@\@.*\@\@.*$!<span class="diff-hnk">$&</span>!gm;
$diff =~ s!^-.*$!<span class="diff-del">$&</span>!gm;
$diff =~ s!^\+.*$!<span class="diff-add">$&</span>!gm;
$diff =~ s!^ .*$!<span class="diff-nop">$&</span>!gm;
}
if ($diff =~ /^\s*$/) {
$diff = '<em>No diff output recorded</em>';
}
start 'tr', class => 'alt hilight';
td "diff", class => 'toggle', onclick => "show_diff('$test')";
td "stderr", class => 'toggle', onclick => "show_err('$test')";
td $test;
td $$rec{status}, class => 'errcode';
if ($$lastpass{$n} and $gitweb) {
my ($old, $new);
$$lastpass{$n}{rev} =~ /(N-)?(.*)/ and $old = $2;
$$hdr{rev} =~ /(N-)?(.*)/ and $new = $2;
if ($old and $new) {
start 'td';
anchor $$lastpass{$n}{rev}, href => "$gitweb;a=shortlog;h=$new;hp=$old";
end 'td';
} else {
td $$lastpass{$n}{rev};
}
} else {
td $$lastpass{$n}? $$lastpass{$n}{rev} : 'n / a';
}
end 'tr';
trowa { style => 'display: none' }, ''; # nee
start 'tr', id => "$test-diff", class => 'diff';
td "<pre>$diff</pre>", colspan => 5;
end 'tr';
trowa { style => 'display: none' }, '';
start 'tr', id => "$test-err", class => 'diff';
td "<pre>$err</pre>", colspan => 5;
end 'tr';
}
end 'tbody';
} elsif ($ntest) {
start 'tr', class => 'pass'; th 'All tests successful', colspan => 3; end;
} else {
my $class = $$hdr{status}? 'fail' : 'pass';
start 'tr', class => $class; th 'No tests were run', colspan => 3; end;
}
end 'table';
end 'div';
footer;