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
|
#============================================================= -*-perl-*-
#
# t/document.t
#
# Test the Template::Document module.
#
# Written by Andy Wardley <abw@kfs.org>
#
# Copyright (C) 1996-2000 Andy Wardley. All Rights Reserved.
# Copyright (C) 1998-2000 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: document.t,v 2.3 2004/01/30 19:33:56 abw Exp $
#
#========================================================================
use strict;
use lib qw( ./lib ../lib );
use Template::Test;
use Template::Config;
use Template::Document;
$^W = 1;
$Template::Test::DEBUG = 0;
$Template::Document::DEBUG = 0;
#$Template::Parser::DEBUG = 1;
#$Template::Directive::PRETTY = 1;
my $DEBUG = 0;
#------------------------------------------------------------------------
# define a dummy context object for runtime processing
#------------------------------------------------------------------------
package Template::DummyContext;
sub new { bless { }, shift }
sub visit { }
sub leave { }
package main;
#------------------------------------------------------------------------
# create a document and check accessor methods for blocks and metadata
#------------------------------------------------------------------------
my $doc = Template::Document->new({
BLOCK => sub { my $c = shift; return "some output" },
DEFBLOCKS => {
foo => sub { return 'the foo block' },
bar => sub { return 'the bar block' },
},
METADATA => {
author => 'Andy Wardley',
version => 3.14,
},
});
my $c = Template::DummyContext->new();
ok( $doc );
ok( $doc->author() eq 'Andy Wardley' );
ok( $doc->version() == 3.14 );
ok( $doc->process($c) eq 'some output' );
ok( ref($doc->block()) eq 'CODE' );
ok( ref($doc->blocks->{ foo }) eq 'CODE' );
ok( ref($doc->blocks->{ bar }) eq 'CODE' );
ok( &{ $doc->block } eq 'some output' );
ok( &{ $doc->blocks->{ foo } } eq 'the foo block' );
ok( &{ $doc->blocks->{ bar } } eq 'the bar block' );
my $dir = -d 't' ? 't/test' : 'test';
my $tproc = Template->new({
INCLUDE_PATH => "$dir/src",
});
test_expect(\*DATA, $tproc, { mydoc => $doc });
__END__
-- test --
# test metadata
[% META
author = 'Tom Smith'
version = 1.23
-%]
version [% template.version %] by [% template.author %]
-- expect --
version 1.23 by Tom Smith
# test local block definitions are accessible
-- test --
[% BLOCK foo -%]
This is block foo
[% INCLUDE bar -%]
This is the end of block foo
[% END -%]
[% BLOCK bar -%]
This is block bar
[% END -%]
[% PROCESS foo %]
-- expect --
This is block foo
This is block bar
This is the end of block foo
-- test --
[% META title = 'My Template Title' -%]
[% BLOCK header -%]
title: [% template.title or title %]
[% END -%]
[% INCLUDE header %]
-- expect --
title: My Template Title
-- test --
[% BLOCK header -%]
HEADER
component title: [% component.name %]
template title: [% template.name %]
[% END -%]
component title: [% component.name %]
template title: [% template.name %]
[% PROCESS header %]
-- expect --
component title: input text
template title: input text
HEADER
component title: header
template title: input text
-- test --
[% META title = 'My Template Title' -%]
[% BLOCK header -%]
title: [% title or template.title %]
[% END -%]
[% INCLUDE header title = 'A New Title' %]
[% INCLUDE header %]
-- expect --
title: A New Title
title: My Template Title
-- test --
[% INCLUDE $mydoc %]
-- expect --
some output
# test for component.caller and component.callers patch
-- test --
[% INCLUDE one;
INCLUDE two;
INCLUDE two;
INCLUDE three;
INCLUDE four;
%]
-- expect --
three path: input text, one
three path: input text, two, one
three path: input text, two, one
three path: input text
once...
three path: input text, four, two, one
...and again...
three path: input text, four, two, one
...that's all
|