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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
|
#============================================================= -*-Perl-*-
#
# Template::Test
#
# DESCRIPTION
# Module defining a test harness which processes template input and
# then compares the output against pre-define expected output.
# Generates test output compatible with Test::Harness. This was
# originally the t/texpect.pl script.
#
# AUTHOR
# Andy Wardley <abw@kfs.org>
#
# COPYRIGHT
# Copyright (C) 1996-2000 Andy Wardley. All Rights Reserved.
# Copyright (C) 1998-2000 Canon Research Centre Europe Ltd.
#
# This module is free software; you can redistribute it and/or
# modify it under the same terms as Perl itself.
#
#----------------------------------------------------------------------------
#
# $Id: Test.pm,v 2.64 2003/04/29 12:29:49 abw Exp $
#
#============================================================================
package Template::Test;
require 5.004;
use strict;
use vars qw( @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS
$VERSION $DEBUG $EXTRA $PRESERVE $REASON $NO_FLUSH
$loaded %callsign);
use Template qw( :template );
use Exporter;
$VERSION = sprintf("%d.%02d", q$Revision: 2.64 $ =~ /(\d+)\.(\d+)/);
$DEBUG = 0;
@ISA = qw( Exporter );
@EXPORT = qw( ntests ok is match flush skip_all test_expect callsign banner );
@EXPORT_OK = ( 'assert' );
%EXPORT_TAGS = ( all => [ @EXPORT_OK, @EXPORT ] );
$| = 1;
$REASON = 'not applicable on this platform';
$NO_FLUSH = 0;
$EXTRA = 0; # any extra tests to come after test_expect()
$PRESERVE = 0 # don't mangle newlines in output/expect
unless defined $PRESERVE;
# always set binmode on Win32 machines so that any output generated
# is true to what we expect
$Template::BINMODE = ($^O eq 'MSWin32') ? 1 : 0;
my @results = ();
my ($ntests, $ok_count);
*is = \&match;
END {
# ensure flush() is called to print any cached results
flush();
}
#------------------------------------------------------------------------
# ntests($n)
#
# Declare how many (more) tests are expected to come. If ok() is called
# before ntests() then the results are cached instead of being printed
# to STDOUT. When ntests() is called, the total number of tests
# (including any cached) is known and the "1..$ntests" line can be
# printed along with the cached results. After that, calls to ok()
# generated printed output immediately.
#------------------------------------------------------------------------
sub ntests {
$ntests = shift;
# add any pre-declared extra tests, or pre-stored test @results, to
# the grand total of tests
$ntests += $EXTRA + scalar @results;
$ok_count = 1;
print $ntests ? "1..$ntests\n" : "1..$ntests # skipped: $REASON\n";
# flush cached results
foreach my $pre_test (@results) {
ok(@$pre_test);
}
}
#------------------------------------------------------------------------
# ok($truth, $msg)
#
# Tests the value passed for truth and generates an "ok $n" or "not ok $n"
# line accordingly. If ntests() hasn't been called then we cached
# results for later, instead.
#------------------------------------------------------------------------
sub ok {
my ($ok, $msg) = @_;
# cache results if ntests() not yet called
unless ($ok_count) {
push(@results, [ $ok, $msg ]);
return $ok;
}
$msg = defined $msg ? " - $msg" : '';
if ($ok) {
print "ok ", $ok_count++, "$msg\n";
}
else {
print STDERR "FAILED $ok_count: $msg\n" if defined $msg;
print "not ok ", $ok_count++, "$msg\n";
}
}
#------------------------------------------------------------------------
# assert($truth, $error)
#
# Test value for truth, die if false.
#------------------------------------------------------------------------
sub assert {
my ($ok, $err) = @_;
return ok(1) if $ok;
# failed
my ($pkg, $file, $line) = caller();
$err ||= "assert failed";
$err .= " at $file line $line\n";
ok(0);
die $err;
}
#------------------------------------------------------------------------
# match( $result, $expect )
#------------------------------------------------------------------------
sub match {
my ($result, $expect, $msg) = @_;
my $count = $ok_count ? $ok_count : scalar @results + 1;
# force stringification of $result to avoid 'no eq method' overload errors
$result = "$result" if ref $result;
if ($result eq $expect) {
return ok(1, $msg);
}
else {
print STDERR "FAILED $count:\n expect: [$expect]\n result: [$result]\n";
return ok(0, $msg);
}
}
#------------------------------------------------------------------------
# flush()
#
# Flush any tests results.
#------------------------------------------------------------------------
sub flush {
ntests(0)
unless $ok_count || $NO_FLUSH;
}
#------------------------------------------------------------------------
# skip_all($reason)
#
# Skip all tests, setting $REASON to contain any message passed. Calls
# exit(0) which triggers flush() which generates a "1..0 # $REASON"
# string to keep to test harness happy.
#------------------------------------------------------------------------
sub skip_all {
$REASON = join('', @_);
exit(0);
}
#------------------------------------------------------------------------
# test_expect($input, $template, \%replace)
#
# This is the main testing sub-routine. The $input parameter should be a
# text string or a filehandle reference (e.g. GLOB or IO::Handle) from
# which the input text can be read. The input should contain a number
# of tests which are split up and processed individually, comparing the
# generated output against the expected output. Tests should be defined
# as follows:
#
# -- test --
# test input
# -- expect --
# expected output
#
# -- test --
# etc...
#
# The number of tests is determined and ntests() is called to generate
# the "0..$n" line compatible with Test::Harness. Each test input is
# then processed by the Template object passed as the second parameter,
# $template. This may also be a hash reference containing configuration
# which are used to instantiate a Template object, or may be left
# undefined in which case a default Template object will be instantiated.
# The third parameter, also optional, may be a reference to a hash array
# defining template variables. This is passed to the template process()
# method.
#------------------------------------------------------------------------
sub test_expect {
my ($src, $tproc, $params) = @_;
my ($input, @tests);
my ($output, $expect, $match);
my $count = 0;
my $ttprocs;
# read input text
eval {
local $/ = undef;
$input = ref $src ? <$src> : $src;
};
if ($@) {
ntests(1); ok(0);
warn "Cannot read input text from $src\n";
return undef;
}
# remove any comment lines
$input =~ s/^#.*?\n//gm;
# remove anything before '-- start --' and/or after '-- stop --'
$input = $' if $input =~ /\s*--\s*start\s*--\s*/;
$input = $` if $input =~ /\s*--\s*stop\s*--\s*/;
@tests = split(/^\s*--\s*test\s*--\s*\n/im, $input);
# if the first line of the file was '--test--' (optional) then the
# first test will be empty and can be discarded
shift(@tests) if $tests[0] =~ /^\s*$/;
ntests(3 + scalar(@tests) * 2);
# first test is that Template loaded OK, which it did
ok(1, 'running test_expect()');
# optional second param may contain a Template reference or a HASH ref
# of constructor options, or may be undefined
if (ref($tproc) eq 'HASH') {
# create Template object using hash of config items
$tproc = Template->new($tproc)
|| die Template->error(), "\n";
}
elsif (ref($tproc) eq 'ARRAY') {
# list of [ name => $tproc, name => $tproc ], use first $tproc
$ttprocs = { @$tproc };
$tproc = $tproc->[1];
}
elsif (! ref $tproc) {
$tproc = Template->new()
|| die Template->error(), "\n";
}
# otherwise, we assume it's a Template reference
# test: template processor created OK
ok($tproc, 'template processor is engaged');
# third test is that the input read ok, which it did
ok(1, 'input read and split into ' . scalar @tests . ' tests');
# the remaining tests are defined in @tests...
foreach $input (@tests) {
$count++;
my $name = '';
if ($input =~ s/^\s*-- name:? (.*?) --\s*\n//im) {
$name = $1;
}
else {
$name = "template text $count";
}
# split input by a line like "-- expect --"
($input, $expect) =
split(/^\s*--\s*expect\s*--\s*\n/im, $input);
$expect = ''
unless defined $expect;
$output = '';
# input text may be prefixed with "-- use name --" to indicate a
# Template object in the $ttproc hash which we should use
if ($input =~ s/^\s*--\s*use\s+(\S+)\s*--\s*\n//im) {
my $ttname = $1;
my $ttlookup;
if ($ttlookup = $ttprocs->{ $ttname }) {
$tproc = $ttlookup;
}
else {
warn "no such template object to use: $ttname\n";
}
}
# process input text
$tproc->process(\$input, $params, \$output) || do {
warn "Template process failed: ", $tproc->error(), "\n";
# report failure and automatically fail the expect match
ok(0, "$name process FAILED: " . subtext($input));
ok(0, '(obviously did not match expected)');
next;
};
# processed OK
ok(1, "$name processed OK: " . subtext($input));
# another hack: if the '-- expect --' section starts with
# '-- process --' then we process the expected output
# before comparing it with the generated output. This is
# slightly twisted but it makes it possible to run tests
# where the expected output isn't static. See t/date.t for
# an example.
if ($expect =~ s/^\s*--+\s*process\s*--+\s*\n//im) {
my $out;
$tproc->process(\$expect, $params, \$out) || do {
warn("Template process failed (expect): ",
$tproc->error(), "\n");
# report failure and automatically fail the expect match
ok(0, "failed to process expected output ["
. subtext($expect) . ']');
next;
};
$expect = $out;
};
# strip any trailing blank lines from expected and real output
foreach ($expect, $output) {
s/\n*\Z//mg;
}
$match = ($expect eq $output) ? 1 : 0;
if (! $match || $DEBUG) {
print "MATCH FAILED\n"
unless $match;
my ($copyi, $copye, $copyo) = ($input, $expect, $output);
unless ($PRESERVE) {
foreach ($copyi, $copye, $copyo) {
s/\n/\\n/g;
}
}
printf(" input: [%s]\nexpect: [%s]\noutput: [%s]\n",
$copyi, $copye, $copyo);
}
ok($match, $match ? "$name matched expected" : "$name did not match expected");
};
}
#------------------------------------------------------------------------
# callsign()
#
# Returns a hash array mapping lower a..z to their phonetic alphabet
# equivalent.
#------------------------------------------------------------------------
sub callsign {
my %callsign;
@callsign{ 'a'..'z' } = qw(
alpha bravo charlie delta echo foxtrot golf hotel india
juliet kilo lima mike november oscar papa quebec romeo
sierra tango umbrella victor whisky x-ray yankee zulu );
return \%callsign;
}
#------------------------------------------------------------------------
# banner($text)
#
# Prints a banner with the specified text if $DEBUG is set.
#------------------------------------------------------------------------
sub banner {
return unless $DEBUG;
my $text = join('', @_);
my $count = $ok_count ? $ok_count - 1 : scalar @results;
print "-" x 72, "\n$text ($count tests completed)\n", "-" x 72, "\n";
}
sub subtext {
my $text = shift;
$text =~ s/\s*$//sg;
$text = substr($text, 0, 32) . '...' if length $text > 32;
$text =~ s/\n/\\n/g;
return $text;
}
1;
__END__
#------------------------------------------------------------------------
# IMPORTANT NOTE
# This documentation is generated automatically from source
# templates. Any changes you make here may be lost.
#
# The 'docsrc' documentation source bundle is available for download
# from http://www.template-toolkit.org/docs.html and contains all
# the source templates, XML files, scripts, etc., from which the
# documentation for the Template Toolkit is built.
#------------------------------------------------------------------------
=head1 NAME
Template::Test - Module for automating TT2 test scripts
=head1 SYNOPSIS
use Template::Test;
$Template::Test::DEBUG = 0; # set this true to see each test running
$Template::Test::EXTRA = 2; # 2 extra tests follow test_expect()...
# ok() can be called any number of times before test_expect
ok( $true_or_false )
# test_expect() splits $input into individual tests, processes each
# and compares generated output against expected output
test_expect($input, $template, \%replace );
# $input is text or filehandle (e.g. DATA section after __END__)
test_expect( $text );
test_expect( \*DATA );
# $template is a Template object or configuration hash
my $template_cfg = { ... };
test_expect( $input, $template_cfg );
my $template_obj = Template->new($template_cfg);
test_expect( $input, $template_obj );
# $replace is a hash reference of template variables
my $replace = {
a => 'alpha',
b => 'bravo'
};
test_expect( $input, $template, $replace );
# ok() called after test_expect should be declared in $EXTRA (2)
ok( $true_or_false )
ok( $true_or_false )
=head1 DESCRIPTION
The Template::Test module defines the test_expect() and other related
subroutines which can be used to automate test scripts for the
Template Toolkit. See the numerous tests in the 't' sub-directory of
the distribution for examples of use.
The test_expect() subroutine splits an input document into a number
of separate tests, processes each one using the Template Toolkit and
then compares the generated output against an expected output, also
specified in the input document. It generates the familiar "ok/not
ok" output compatible with Test::Harness.
The test input should be specified as a text string or a reference to
a filehandle (e.g. GLOB or IO::Handle) from which it can be read. In
particular, this allows the test input to be placed after the __END__
marker and read via the DATA filehandle.
use Template::Test;
test_expect(\*DATA);
__END__
# this is the first test (this is a comment)
-- test --
blah blah blah [% foo %]
-- expect --
blah blah blah value_of_foo
# here's the second test (no surprise, so is this)
-- test --
more blah blah [% bar %]
-- expect --
more blah blah value_of_bar
Blank lines between test sections are generally ignored. Any line starting
with '#' is treated as a comment and is ignored.
The second and third parameters to test_expect() are optional. The second
may be either a reference to a Template object which should be used to
process the template fragments, or a reference to a hash array containing
configuration values which should be used to instantiate a new Template
object.
# pass reference to config hash
my $config = {
INCLUDE_PATH => '/here/there:/every/where',
POST_CHOMP => 1,
};
test_expect(\*DATA, $config);
# or create Template object explicitly
my $template = Template->new($config);
test_expect(\*DATA, $template);
The third parameter may be used to reference a hash array of template
variable which should be defined when processing the tests. This is
passed to the Template process() method.
my $replace = {
a => 'alpha',
b => 'bravo',
};
test_expect(\*DATA, $config, $replace);
The second parameter may be left undefined to specify a default Template
configuration.
test_expect(\*DATA, undef, $replace);
For testing the output of different Template configurations, a
reference to a list of named Template objects also may be passed as
the second parameter.
my $tt1 = Template->new({ ... });
my $tt2 = Template->new({ ... });
my @tts = [ one => $tt1, two => $tt1 ];
The first object in the list is used by default. Other objects may be
switched in with the '-- use $name --' marker. This should immediately
follow a '-- test --' line. That object will then be used for the rest
of the test, or until a different object is selected.
-- test --
-- use one --
[% blah %]
-- expect --
blah, blah
-- test --
still using one...
-- expect --
...
-- test --
-- use two --
[% blah %]
-- expect --
blah, blah, more blah
The test_expect() sub counts the number of tests, and then calls ntests()
to generate the familiar "1..$ntests\n" test harness line. Each
test defined generates two test numbers. The first indicates
that the input was processed without error, and the second that the
output matches that expected.
Additional test may be run before test_expect() by calling ok().
These test results are cached until ntests() is called and the final
number of tests can be calculated. Then, the "1..$ntests" line is
output, along with "ok $n" / "not ok $n" lines for each of the cached
test result. Subsequent calls to ok() then generate an output line
immediately.
my $something = SomeObject->new();
ok( $something );
my $other = AnotherThing->new();
ok( $other );
test_expect(\*DATA);
If any tests are to follow after test_expect() is called then these
should be pre-declared by setting the $EXTRA package variable. This
value (default: 0) is added to the grand total calculated by ntests().
The results of the additional tests are also registered by calling ok().
$Template::Test::EXTRA = 2;
# can call ok() any number of times before test_expect()
ok( $did_that_work );
ok( $make_sure );
ok( $dead_certain );
# <some> number of tests...
test_expect(\*DATA, $config, $replace);
# here's those $EXTRA tests
ok( defined $some_result && ref $some_result eq 'ARRAY' );
ok( $some_result->[0] eq 'some expected value' );
If you don't want to call test_expect() at all then you can call
ntests($n) to declare the number of tests and generate the test
header line. After that, simply call ok() for each test passing
a true or false values to indicate that the test passed or failed.
ntests(2);
ok(1);
ok(0);
If you're really lazy, you can just call ok() and not bother declaring
the number of tests at all. All tests results will be cached until the
end of the script and then printed in one go before the program exits.
ok( $x );
ok( $y );
You can identify only a specific part of the input file for testing
using the '-- start --' and '-- stop --' markers. Anything before the
first '-- start --' is ignored, along with anything after the next
'-- stop --' marker.
-- test --
this is test 1 (not performed)
-- expect --
this is test 1 (not performed)
-- start --
-- test --
this is test 2
-- expect --
this is test 2
-- stop --
...
For historical reasons and general utility, the module also defines a
'callsign' subroutine which returns a hash mapping a..z to their phonetic
alphabet equivalent (e.g. radio callsigns). This is used by many
of the test scripts as a "known source" of variable values.
test_expect(\*DATA, $config, callsign());
A banner() subroutine is also provided which prints a simple banner
including any text passed as parameters, if $DEBUG is set.
banner('Testing something-or-other');
example output:
#------------------------------------------------------------
# Testing something-or-other (27 tests completed)
#------------------------------------------------------------
The $DEBUG package variable can be set to enable debugging mode.
The $PRESERVE package variable can be set to stop the test_expect()
from converting newlines in the output and expected output into
the literal strings '\n'.
=head1 HISTORY
This module started its butt-ugly life as the t/texpect.pl script. It
was cleaned up to became the Template::Test module some time around
version 0.29. It underwent further cosmetic surgery for version 2.00
but still retains some rear-end resemblances.
=head1 BUGS / KNOWN "FEATURES"
Imports all methods by default. This is generally a Bad Thing, but
this module is only used in test scripts (i.e. at build time) so a) we
don't really care and b) it saves typing.
The line splitter may be a bit dumb, especially if it sees lines like
-- this -- that aren't supposed to be special markers. So don't do that.
=head1 AUTHOR
Andy Wardley E<lt>abw@andywardley.comE<gt>
L<http://www.andywardley.com/|http://www.andywardley.com/>
=head1 VERSION
2.64, distributed as part of the
Template Toolkit version 2.10, released on 24 July 2003.
=head1 COPYRIGHT
Copyright (C) 1996-2003 Andy Wardley. All Rights Reserved.
Copyright (C) 1998-2002 Canon Research Centre Europe Ltd.
This module is free software; you can redistribute it and/or
modify it under the same terms as Perl itself.
=head1 SEE ALSO
L<Template|Template>
|