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
|
# Before `make install' is performed this script should be runnable with
# `make test'. After `make install' it should work as `perl HTML-Template-Compiled.t'
# $Id: 13_loop.t 1077 2008-09-01 19:02:06Z tinita $
use Test::More tests => 9;
BEGIN { use_ok('HTML::Template::Compiled') };
use lib 't';
use
HTC_Utils qw($cache $tdir &cdir);
{
my $htc = HTML::Template::Compiled->new(
scalarref => \<<'EOM',
<tmpl_loop array alias=iterator>
<tmpl_var iterator>
</tmpl_loop>
<tmpl_loop array2 alias=iterator>
<tmpl_var iterator.foo>
</tmpl_loop>
EOM
debug => 0,
loop_context_vars => 1,
);
$htc->param(
array => [qw(a b c)],
array2 => [{ foo => 'a' }, { foo => 'b' }, { foo => 'c' }],
);
my $out = $htc->output;
$out =~ s/\s+//g;
cmp_ok($out, "eq", "abcabc", "tmpl_loop array alias=iterator");
#print "out: $out\n";
}
my $text1 = <<'EOM';
<tmpl_loop array>
<tmpl_var __counter__>
<tmpl_var _.x>
</tmpl_loop>
EOM
for (0,1) {
my $htc = HTML::Template::Compiled->new(
scalarref => \$text1,
debug => 0,
loop_context_vars => $_,
);
$htc->param(array => [
{x=>"a","__counter__"=>"A"},
{x=>"b","__counter__"=>"B"},
{x=>"c","__counter__"=>"C"},
]);
my $out = $htc->output;
$out =~ s/\s+//g;
my $exp;
if ($_ == 1) {
$exp = "1a2b3c";
}
else {
$exp = "AaBbCc";
}
#print "($out)($exp)\n";
cmp_ok($out, "eq", $exp, "loop context");
}
{
my $htc = HTML::Template::Compiled->new(
scalarref => \<<EOM,
<%loop list join=", " %><%= _ %><%/loop list %>
EOM
debug => 0,
);
$htc->param(
list => [qw(a b c)]
);
my $out = $htc->output;
$out =~ s/^\s+//;
$out =~ s/\s+\z//;
#print $out, $/;
cmp_ok($out, 'eq','a, b, c', "loop join attribute");
}
{
my $htc = HTML::Template::Compiled->new(
scalarref => \<<EOM,
<%loop list break="3" %><%= _ %><%if __break__%>.<%/if %><%/loop list %>
EOM
debug => 0,
loop_context_vars => 1,
);
$htc->param(
list => [qw(a b c d e f g h)]
);
my $out = $htc->output;
$out =~ s/^\s+//;
$out =~ s/\s+\z//;
#print $out, $/;
cmp_ok($out, 'eq','abc.def.gh', "loop break attribute");
}
{
my $htc = HTML::Template::Compiled->new(
scalarref => \<<'EOM',
<%loop list %>
<%include loop_included.tmpl %>
<%/loop list %>
EOM
debug => 0,
loop_context_vars => 1,
path => $tdir,
);
$htc->param(
list => [qw(a b c d e f g h)]
);
my $out = $htc->output;
$out =~ s/\s+/ /g;
#print $out, $/;
cmp_ok($out, 'eq',' 0 1 2 3 4 5 6 7 h ', "loop context vars in include");
}
for (0, 1) {
my $htc = HTML::Template::Compiled->new(
scalarref => \<<'EOM',
<%loop foo.list %>
<%= a %>
<%/loop foo.list %>
EOM
debug => 0,
loop_context_vars => 1,
path => $tdir,
cache => 0,
file_cache => 1,
file_cache_dir => $cache,
);
$htc->param(
foo => {
list => [{a => 1},{a => 2},{a => 3}],
},
);
my $out = $htc->output;
$out =~ s/\s+/ /g;
#print $out, $/;
cmp_ok($out, 'eq',' 1 2 3 ', "loop " . ($_ ? "after" : "before") . " caching");
}
HTML::Template::Compiled->clear_filecache('t/cache');
|