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
|
#!/usr/bin/perl
# Copyright (c) Nate Wiger http://nateware.com.
# All Rights Reserved. If you're reading this, you're bored.
# 2e-template-ssi.t - test CGI::SSI support
use strict;
our $TESTING = 1;
our $DEBUG = $ENV{DEBUG} || 0;
our $LOGNAME = $ENV{LOGNAME} || '';
our $VERSION;
BEGIN { $VERSION = '3.08'; }
use Test;
use FindBin;
# use a BEGIN block so we print our plan before CGI::FormBuilder is loaded
our $SKIP;
BEGIN {
my $numtests = 5;
unshift @INC, "$FindBin::Bin/../lib";
plan tests => $numtests;
# try to load template engine so absent template does
# not cause all tests to fail
eval "require CGI::SSI";
$SKIP = $@ ? 'skip: CGI::SSI not installed here' : 0; # eval failed, skip all tests
# success if we said NOTEST
if ($ENV{NOTEST}) {
ok(1) for 1..$numtests;
exit;
}
}
# Need to fake a request or else we stall
$ENV{REQUEST_METHOD} = 'GET';
$ENV{QUERY_STRING} = 'ticket=111&user=pete&replacement=TRUE';
use CGI::FormBuilder 3.08;
use CGI::FormBuilder::Test;
# Grab our template from our test00.html file
my $template = outfile(0);
my $kurtlidl = outfile(99);
# What options we want to use, and what we expect to see
my @test = (
{
opt => { fields => [qw/name color/],
submit => 0,
reset => 'No esta una button del submito',
template => { type=>'CGI_SSI', string => $template },
validate => { name => 'NAME' },
},
mod => { color => { options => [qw/red green blue/], nameopts => 1 },
size => { value => 42 } },
},
{
opt => { fields => [qw/name color size/],
template => { type=>'CGI_SSI', string => $template },
values => {color => [qw/purple/], size => 8},
reset => 'Start over, boob!',
validate => {}, # should be empty
},
mod => { color => { options => [qw/white black other/] },
name => { size => 80 } },
},
{
opt => { fields => [qw/name color email/], submit => [qw/Update Delete/], reset => 0,
template => { type=>'CGI_SSI', string => $template },
values => {color => [qw/yellow green orange/]},
validate => { color => [qw(red blue yellow pink)] },
},
mod => { color => {options => [[red => 1], [blue => 2], [yellow => 3], [pink => 4]] },
size => {value => '(unknown)' }
},
},
{
opt => { fields => [qw/field1 field2/], method => 'post',
title => 'test form page', header => 0,
template => { type=>'CGI_SSI', string => $kurtlidl },
},
mod => {
field1 => { value => 109, comment => '<i>Hello</i>' },
field2 => { type => 'submit', value => "1 < 2 < 3", label => "Reefer", comment => '<i>goodbyE@</i>' },
field3 => { type => 'button', value => "<<PUSH>>", comment => '<i>onSubmit</i>' },
},
},
);
# Perl 5 is sick sometimes.
@test = @test[$ARGV[0] - 1] if @ARGV;
my $seq = $ARGV[0] || 1;
# Cycle thru and try it out
for (@test) {
my $form = CGI::FormBuilder->new(
debug => $DEBUG,
action => 'TEST',
title => 'TEST',
%{ $_->{opt} },
);
# the ${mod} key twiddles fields
while(my($f,$o) = each %{$_->{mod} || {}}) {
$o->{name} = $f;
$form->field(%$o);
}
#
# Just compare the output of render with what's expected
# the correct string output is now in external files.
# The seemingly extra eval is required so that failures
# to import the template modules do not kill the tests.
# (since render is called regardless of whether $SKIP is set)
#
my $out = outfile($seq++);
my $ren = $SKIP ? '' : $form->render;
my $ok = skip($SKIP, $ren, $out);
if (! $ok && $LOGNAME eq 'nwiger') {
#use Data::Dumper;
#die Dumper($form);
open(O, ">/tmp/fb.1.html");
print O $out;
close O;
open(O, ">/tmp/fb.2.html");
print O $ren;
close O;
system "diff /tmp/fb.1.html /tmp/fb.2.html";
exit 1;
}
}
# MORE TESTS DOWN HERE
# from eszpee for tmpl_param
skip($SKIP, do{
my $form2 = CGI::FormBuilder->new(
template => { type=>'CGI_SSI', string => '<!--#echo var="test" -->' }
);
$form2->tmpl_param(test => "this message should appear");
eval '$form2->render';
}, 'this message should appear');
|