File: factory.t

package info (click to toggle)
libtemplate-perl 2.24-1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 8,660 kB
  • sloc: perl: 14,518; makefile: 15; sh: 5
file content (73 lines) | stat: -rw-r--r-- 1,434 bytes parent folder | download | duplicates (2)
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
#============================================================= -*-perl-*-
#
# t/factory.t
#
# Test use of a modified directive factory, based on something that
# pudge suggested on #perl.
#
# Written by Andy Wardley <abw@kfs.org>
#
# Copyright (C) 1996-2001 Andy Wardley.  All Rights Reserved.
#
# This is free software; you can redistribute it and/or modify it
# under the same terms as Perl itself.
#
# $Id$
#
#========================================================================

use strict;
use lib qw( ./lib ../lib );
use Template::Test;
$^W = 1;

# uncomment these lines to see how generate Perl code 
# for constant.* is expanded at parse time
#Template::Parser::DEBUG = 1;
#Template::Directive::PRETTY = 1;

package My::Directive;
use base qw( Template::Directive );

my $constants = {
    pi => 3.14,
    e  => 2.718,
};

sub ident {
    my ($class, $ident) = @_;

    # note single quoting of 'constant'
    if (ref $ident eq 'ARRAY' && $ident->[0] eq "'constant'") {
	my $key = $ident->[2];
	$key =~ s/'//g;
	return $constants->{ $key } || '';
    }
    return $class->SUPER::ident($ident);
}

package main;

my $cfg = { 
    FACTORY => 'My::Directive',
};

my $vars = {
    foo => {
	bar => 'Place to purchase drinks',
	baz => 'Short form of "Basil"',
    },
};

test_expect(\*DATA, $cfg, $vars);

__DATA__
-- test --
[% foo.bar %]
-- expect --
Place to purchase drinks

-- test --
[% constant.pi %]
-- expect --
3.14