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
|
# 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: 15_comment.t 1102 2009-08-21 13:56:24Z tinita $
use lib 'blib/lib';
use Test::More tests => 4;
use Data::Dumper;
use File::Spec;
use strict;
use warnings;
local $Data::Dumper::Indent = 1; local $Data::Dumper::Sortkeys = 1;
BEGIN { use_ok('HTML::Template::Compiled') };
$HTML::Template::Compiled::NEW_CHECK = 2;
my $cache = File::Spec->catfile('t', 'cache');
{
my $htc = HTML::Template::Compiled->new(
scalarref => \<<'EOM',
<tmpl_if comment>
<tmpl_var wanted>
<tmpl_comment outer>
<tmpl_comment >
<tmpl_var unwanted>
</tmpl_comment >
<tmpl_var unwanted>
</tmpl_comment outer>
<tmpl_elsif noparse>
<tmpl_var wanted>
<tmpl_noparse outer>
<tmpl_noparse inner>
<tmpl_var unwanted>
</tmpl_noparse inner>
<tmpl_var unwanted>
</tmpl_noparse outer>
<tmpl_elsif escape>
<tmpl_verbatim outer>
this should be escaped: <tmpl_var test>
</tmpl_verbatim outer>
</tmpl_if comment>
EOM
debug => 0,
);
$htc->param(
comment => 1,
wanted => "we want this",
unwanted => "no thanks",
);
my $out = $htc->output;
#print $out,$/;
ok(
($out !~ m/unwanted/) &&
$out !~ m/no thanks/ &&
$out =~ m/we want this/,
"tmpl_comment");
$htc->clear_params();
$htc->param(
noparse => 1,
wanted => "we want this",
unwanted => "no thanks",
);
$out = $htc->output;
#print $out,$/;
ok(
((() = $out =~ m/unwanted/g) == 2) &&
$out !~ m/no thanks/ &&
$out =~ m/we want this/,
"tmpl_noparse");
my $unescaped = 'this should be escaped: <tmpl_var test>';
{
my $escaped = $unescaped;
$escaped = HTML::Template::Compiled::Utils::escape_html($escaped);
$htc->clear_params();
$htc->param(
escape => 1,
wanted => "we want this",
unwanted => "no thanks",
);
$out = $htc->output;
#print $out,$/;
like($out, qr/\Q$escaped/, "tmpl_verbatim");
}
}
|