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
|
use strict;
use Test::More;
use CGI::Application;
# The load_tmpl hook changed in CGI::Application between versions 4.0 and 4.01
if (CGI::Application->can('new_hook') and $CGI::Application::VERSION > 4.0) {
plan 'no_plan';
}
else {
plan skip_all => 'installed version of CGI::Application does not support the latest load_tmpl hook';
}
my $Per_Template_Driver_Tests = 5;
my %Expected_Output;
$Expected_Output{'__Default__'} = <<'EOF';
--begin--
var1:porkpiehat1
var2:porkpiehat2
var3:porkpiehat3
--end--
EOF
my %Extension = (
HTMLTemplate => '.html',
HTMLTemplateExpr => '.html',
HTMLTemplatePluggable => '.html',
TemplateToolkit => '.tmpl',
Petal => '.xhtml',
);
$Expected_Output{'Petal'} =
qq|<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
$Expected_Output{'__Default__'}
</html>|;
{
package WebApp;
use Test::More;
use CGI::Application;
use CGI::Application::Plugin::AnyTemplate;
use vars '@ISA';
@ISA = ('CGI::Application');
sub setup {
my $self = shift;
$self->header_type('none');
$self->start_mode('simple_elsewhere');
$self->run_modes([qw/simple_elsewhere/]);
$self->template->config(
default_type => $self->param('template_driver'),
add_include_paths => 'really_bad_path',
);
$self->add_callback('load_tmpl', \&my_load_tmpl1);
$self->add_callback('load_tmpl', \&my_load_tmpl2);
}
sub simple_elsewhere {
my $self = shift;
my $driver = $self->param('template_driver');
my $expected_output = $Expected_Output{$driver}
|| $Expected_Output{'__Default__'};
my $template = $self->template->load;
$template->param('var3' => 'porkpiehat3');
my $output = $template->output;
$output = $$output if ref $output eq 'SCALAR';
is($output, $expected_output, "Got expected output for driver: $driver");
'';
}
sub my_load_tmpl1 {
my ($self, $ht_params, $tmpl_params, $tmpl_file) = @_;
my $driver = $self->param('template_driver');
my $extension = $Extension{$driver};
is($ht_params->{'path'}, 'really_bad_path', '[my_load_tmpl1] path]');
$ht_params->{'path'} = 'badpath';
is($tmpl_file, 'simple_elsewhere' . $extension, '[my_load_tmpl1] filename]');
$tmpl_params->{'var1'} = 'porkpiehat1';
}
sub my_load_tmpl2 {
my ($self, $ht_params, $tmpl_params, $tmpl_file) = @_;
my $driver = $self->param('template_driver');
my $extension = $Extension{$driver};
is($ht_params->{'path'}, 'badpath', '[my_load_tmpl2] path]');
$ht_params->{'path'} = 't/tmpl_include';
is($tmpl_file, 'simple_elsewhere' . $extension, '[my_load_tmpl2] filename]');
$tmpl_params->{'var2'} = 'porkpiehat2';
}
}
SKIP: {
if (test_driver_prereqs('HTMLTemplate')) {
WebApp->new(PARAMS => { template_driver => 'HTMLTemplate' })->run;
}
else {
skip "HTML::Template not installed", $Per_Template_Driver_Tests;
}
}
SKIP: {
if (test_driver_prereqs('HTMLTemplateExpr')) {
WebApp->new(PARAMS => { template_driver => 'HTMLTemplateExpr' })->run;
}
else {
skip "HTML::Template::Expr not installed", $Per_Template_Driver_Tests;
}
}
SKIP: {
if (test_driver_prereqs('TemplateToolkit')) {
WebApp->new(PARAMS => { template_driver => 'TemplateToolkit' })->run;
}
else {
skip "Template::Toolkit not installed", $Per_Template_Driver_Tests;
}
}
SKIP: {
if (test_driver_prereqs('Petal')) {
WebApp->new(PARAMS => { template_driver => 'Petal' })->run;
}
else {
skip "Petal not installed", $Per_Template_Driver_Tests;
}
}
SKIP: {
if (test_driver_prereqs('HTMLTemplatePluggable')) {
require HTML::Template::Plugin::Dot;
import HTML::Template::Plugin::Dot;
WebApp->new(PARAMS => {
template_driver => 'HTMLTemplatePluggable',
template_engine_class => 'HTML::Template::Pluggable',
})->run;
}
else {
skip "HTML::Template::Pluggable not installed", $Per_Template_Driver_Tests;
}
}
sub test_driver_prereqs {
my $driver = shift;
my $driver_module = 'CGI::Application::Plugin::AnyTemplate::Driver::' . $driver;
eval "require $driver_module;";
die $@ if $@;
my @required_modules = $driver_module->required_modules;
foreach (@required_modules) {
eval "require $_;";
if ($@) {
return;
}
}
return 1;
}
|