File: 02html03.t

package info (click to toggle)
libdata-report-perl 1.001-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 220 kB
  • sloc: perl: 1,972; makefile: 2
file content (64 lines) | stat: -rw-r--r-- 1,662 bytes parent folder | download | duplicates (5)
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
#! perl

use strict;
use warnings;
use Test::More qw(no_plan);

use Data::Report;

my $out = "";

my $rep = Data::Report::->create
  (type => "html",
   layout => [ { name => "acct", title => "Acct",   width => 6  },
	       { name => "desc", title => "Report", width => 40, align => "|" },
	       { name => "deb",  title => "Debet",  width => 10, align => "<" },
	       { name => "crd",  title => "Credit", width => 10, align => ">" },
	     ],
  );

$rep->set_stylist( sub {
		       my ($rep, $row, $col) = @_;
		       return unless $col;

		       return { class => "bar" }
			 if $row && $row eq "_head" && $col && $col eq "deb";
		       return { class => "foo" }
			 if $col eq "deb";
		       return;
		   } );

$rep->set_output(\$out);
$rep->start;
$rep->add({ acct => "one", desc => "two", deb => "three", crd => "four" });
$rep->add({ acct => "one", desc => "two", deb => "three", crd => "four", _style => "xyz" });
$rep->finish;
$rep->close;

my $ref; { undef $/; $ref = <DATA> }
$ref =~ s/[\r\n]/\n/g;
$out =~ s/[\r\n]/\n/g;

is($out, $ref);

__DATA__
<table class="main">
<tr class="head">
<th align="left" class="h_acct">Acct</th>
<th align="center" class="h_desc">Report</th>
<th align="left" class="bar">Debet</th>
<th align="right" class="h_crd">Credit</th>
</tr>
<tr>
<td align="left" class="c_acct">one</td>
<td align="center" class="c_desc">two</td>
<td align="left" class="foo">three</td>
<td align="right" class="c_crd">four</td>
</tr>
<tr class="r_xyz">
<td align="left" class="c_acct">one</td>
<td align="center" class="c_desc">two</td>
<td align="left" class="foo">three</td>
<td align="right" class="c_crd">four</td>
</tr>
</table>