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
|
#============================================================= -*-perl-*-
#
# t/chomp.t
#
# Test the PRE_CHOMP and POST_CHOMP options.
#
# Written by Andy Wardley <abw@kfs.org>
#
# Copyright (C) 1996-2001 Andy Wardley. All Rights Reserved.
# Copyright (C) 1998-2001 Canon Research Centre Europe Ltd.
#
# This is free software; you can redistribute it and/or modify it
# under the same terms as Perl itself.
#
# $Id: chomp.t,v 2.2 2001/06/14 13:20:12 abw Exp $
#
#========================================================================
use strict;
use lib qw( ./lib ../lib );
use Template::Test;
use Template::Constants qw( :chomp );
$^W = 1;
#$Template::Directive::PRETTY = 1;
#$Template::Parser::DEBUG = 1;
match( CHOMP_NONE, 0 );
match( CHOMP_ALL, 1 );
match( CHOMP_COLLAPSE, 2 );
my $foo = "[% foo %]\n";
my $bar = "[% bar -%]\n";
my $baz = "[% foo +%]\n";
my $tt2 = Template->new({
BLOCKS => {
foo => $foo,
bar => $bar,
baz => $baz,
},
});
my $vars = {
foo => 3.14,
bar => 2.718,
};
my $out;
ok( $tt2->process('foo', $vars, \$out), $tt2->error() );
match( $out, "3.14\n" );
$out = '';
ok( $tt2->process('bar', $vars, \$out), $tt2->error() );
match( $out, "2.718" );
$out = '';
ok( $tt2->process('baz', $vars, \$out), $tt2->error() );
match( $out, "3.14\n" );
$tt2 = Template->new({
POST_CHOMP => 1,
BLOCKS => {
foo => $foo,
bar => $bar,
baz => $baz,
},
});
$out = '';
ok( $tt2->process('foo', $vars, \$out), $tt2->error() );
match( $out, "3.14" );
$out = '';
ok( $tt2->process('bar', $vars, \$out), $tt2->error() );
match( $out, "2.718" );
$out = '';
ok( $tt2->process('baz', $vars, \$out), $tt2->error() );
match( $out, "3.14\n" );
my $tt = [
tt_pre_none => Template->new(PRE_CHOMP => CHOMP_NONE),
tt_pre_all => Template->new(PRE_CHOMP => CHOMP_ALL),
tt_pre_coll => Template->new(PRE_CHOMP => CHOMP_COLLAPSE),
tt_post_none => Template->new(POST_CHOMP => CHOMP_NONE),
tt_post_all => Template->new(POST_CHOMP => CHOMP_ALL),
tt_post_coll => Template->new(POST_CHOMP => CHOMP_COLLAPSE),
];
test_expect(\*DATA, $tt);
__DATA__
#------------------------------------------------------------------------
# tt_pre_none
#------------------------------------------------------------------------
-- test --
begin[% a = 10; b = 20 %]
[% a %]
[% b %]
end
-- expect --
begin
10
20
end
#------------------------------------------------------------------------
# tt_pre_all
#------------------------------------------------------------------------
-- test --
-- use tt_pre_all --
-- test --
begin[% a = 10; b = 20 %]
[% a %]
[% b %]
end
-- expect --
begin1020
end
#------------------------------------------------------------------------
# tt_pre_coll
#------------------------------------------------------------------------
-- test --
-- use tt_pre_coll --
-- test --
begin[% a = 10; b = 20 %]
[% a %]
[% b %]
end
-- expect --
begin 10 20
end
#------------------------------------------------------------------------
# tt_post_none
#------------------------------------------------------------------------
-- test --
-- use tt_post_none --
begin[% a = 10; b = 20 %]
[% a %]
[% b %]
end
-- expect --
begin
10
20
end
#------------------------------------------------------------------------
# tt_post_all
#------------------------------------------------------------------------
-- test --
-- use tt_post_all --
-- test --
begin[% a = 10; b = 20 %]
[% a %]
[% b %]
end
-- expect --
begin 10 20end
#------------------------------------------------------------------------
# tt_post_coll
#------------------------------------------------------------------------
-- test --
-- use tt_post_coll --
-- test --
begin[% a = 10; b = 20 %]
[% a %]
[% b %]
end
-- expect --
begin 10 20 end
|