]> iEval git - plack-app-gruntmaster.git/blob - lib/Gruntmaster/Page/Log/Entry.pm
Initial commit
[plack-app-gruntmaster.git] / lib / Gruntmaster / Page / Log / Entry.pm
1 package Gruntmaster::Page::Log::Entry;
2
3 use 5.014000;
4 use strict;
5 use warnings;
6 use parent qw/Exporter/;
7 our @EXPORT_OK = qw/generate/;
8 our $VERSION = '0.001';
9
10 use constant TITLE => 'Job <tmpl_var id>';
11
12 use Fcntl qw/:flock/;
13 use HTML::Template::Compiled;
14 use IO::File;
15 use POSIX qw/strftime/;
16 use YAML::Any qw/LoadFile/;
17 use Gruntmaster::Page qw/header footer/;
18
19 my %templates = (
20 en => <<'HTML',
21 <table border>
22 <thead>
23 <tr><th>Test number<th>Result<th>Time
24 <tbody>
25 <tmpl_loop tests><tr><td><tmpl_var id><td class="r<tmpl_var result>"><tmpl_var result_text><td><tmpl_var time>
26 </tmpl_loop>
27 </table>
28 HTML
29 );
30
31 $templates{$_} = header($_, TITLE) . $templates{$_} for keys %templates;
32 $templates{$_} .= footer $_ for keys %templates;
33
34 sub generate{
35 my ($path, $lang) = @_;
36 $path = ($path =~ m,log/(.*)/index,)[0];
37 my $template = $templates{$lang};
38
39 my $htc = HTML::Template::Compiled->new(scalarref => \$template);
40 flock my $metafh = IO::File->new("<log/$path/meta.yml"), LOCK_SH;
41 my $meta = LoadFile "log/$path/meta.yml";
42
43 my @tests = map {
44 $_->{time} = sprintf "%.4fs", $_->{time};
45 $_
46 } @{$meta->{results}};
47
48 $htc->param(id => $path);
49 $htc->param(tests => \@tests);
50 $htc->output
51 }
52
53 1
This page took 0.040792 seconds and 4 git commands to generate.