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
|
#!/usr/bin/perl -Ilib -I../lib
# Copyright (c) 2000-2006 Nathan Wiger <nate@wiger.org>.
# All Rights Reserved. If you're reading this, you're bored.
# 1b-fields.t - test Field generation/handling
use strict;
use vars qw($TESTING $DEBUG);
$TESTING = 1;
$DEBUG = $ENV{DEBUG} || 0;
use Test;
# use a BEGIN block so we print our plan before CGI::FormBuilder is loaded
my @pm;
BEGIN {
# try to load all the .pm's except templates from MANIFEST
open(M, "<MANIFEST") || warn "Can't open MANIFEST ($!) - skipping imports";
chomp(@pm = grep !/Template/, grep /\.pm$/, <M>);
my $numtests = 22 + @pm;
plan tests => $numtests;
# success if we said NOTEST
if ($ENV{NOTEST}) {
ok(1) for 1..$numtests;
exit;
}
}
my $n = 0;
for (@pm) {
close(STDERR);
eval "package blah$n; require '$_'; package main;";
ok(!$@);
$n++;
}
# Fake a submission request
$ENV{REQUEST_METHOD} = 'GET';
$ENV{QUERY_STRING} = 'ticket=111&user=pete&replacement=TRUE&action=Unsubscribe&name=Pete+Peteson&email=pete%40peteson.com&extra=junk&_submitted=1&blank=&two=&two=';
use CGI::FormBuilder;
use CGI::FormBuilder::Test;
# jump to a test if specified for debugging (goto eek!)
my $t = shift;
if ($t) {
eval sprintf("goto T%2.2d", $t);
die;
}
# Now manually try a whole bunch of things
#1
T01: ok(do {
my $form = CGI::FormBuilder->new(debug => $DEBUG, fields => [qw/user name email/]);
if ($form->submitted) {
1;
} else {
0;
}
}, 1);
exit if $t;
#2
T02: ok(do {
my $form = CGI::FormBuilder->new(debug => $DEBUG, fields => [qw/user name email/],
validate => { email => 'EMAIL' } );
if ($form->submitted && $form->validate) {
1;
} else {
0;
}
}, 1);
exit if $t;
#3
T03: ok(do {
# this should fail since we are saying our email should be a netmask
my $form = CGI::FormBuilder->new(debug => $DEBUG, fields => [qw/user name email/],
validate => { email => 'NETMASK' } );
if ($form->submitted && $form->validate) {
0; # failure
} else {
1;
}
}, 1);
exit if $t;
#4
T04: ok(do {
# this should also fail since the submission key will be _submitted_magic,
# and our query_string only has _submitted in it
my $form = CGI::FormBuilder->new(debug => $DEBUG, fields => [qw/user name email/],
name => 'magic');
if ($form->submitted) {
0; # failure
} else {
1;
}
}, 1);
exit if $t;
#5
T05: ok(do {
# CGI should override default values
my $form = CGI::FormBuilder->new(debug => $DEBUG, fields => [qw/user name email/],
values => { user => 'jim' } );
if ($form->submitted && $form->field('user') eq 'pete') {
1;
} else {
0;
}
}, 1);
exit if $t;
#6
T06: ok(do {
# test a similar thing, by with mixed-case values
my $form = CGI::FormBuilder->new(debug => $DEBUG, fields => [qw/user name email Addr/],
values => { User => 'jim', ADDR => 'Hello' } );
if ($form->submitted && $form->field('Addr') eq 'Hello') {
1;
} else {
0;
}
}, 1);
exit if $t;
#7
T07: ok(do {
# test a similar thing, by with mixed-case values
my $form = CGI::FormBuilder->new(debug => $DEBUG, fields => { User => 'jim', ADDR => 'Hello' } );
if ($form->submitted && ! $form->field('Addr') && $form->field('ADDR') eq 'Hello') {
1;
} else {
0;
}
}, 1);
exit if $t;
#8
T08: ok(do {
my $form = CGI::FormBuilder->new(debug => $DEBUG, fields => []); # no fields!
if ($form->submitted) {
if ($form->field('name') || $form->field('extra')) {
# if we get here, this means that the restrictive field
# masking is not working, and all CGI params are available
-1;
} elsif ($form->cgi_param('name')) {
1;
} else {
0;
}
} else {
0;
}
}, 1);
exit if $t;
#9
T09: ok(do {
# test if required does what v1.97 thinks it should (should fail)
my $form = CGI::FormBuilder->new(debug => $DEBUG, fields => { user => 'nwiger', pass => '' },
validate => { user => 'USER' },
required => [qw/pass/]);
if ($form->submitted && $form->validate) {
0;
} else {
1;
}
}, 1);
exit if $t;
#10
T10: ok(do {
# YARC (yet another 'required' check)
my $form = CGI::FormBuilder->new(
debug => $DEBUG,
fields => [qw/name email phone/],
validate => {email => 'EMAIL', phone => 'PHONE'},
required => [qw/name email/],
);
if ($form->submitted && $form->validate) {
1;
} else {
0;
}
}, 1);
exit if $t;
#11
T11: ok(do {
# test of proper CGI precendence when manually setting values
my $form = CGI::FormBuilder->new(
debug => $DEBUG,
fields => [qw/name email action/],
validate => {email => 'EMAIL'},
required => [qw/name email/],
);
$form->field(name => 'action', options => [qw/Subscribe Unsubscribe/],
value => 'Subscribe');
if ($form->submitted && $form->validate && $form->field('action') eq 'Unsubscribe') {
1;
} else {
0;
}
}, 1);
exit if $t;
#12
T12: ok(do {
# see if our checkboxes work how we want them to
my $form = CGI::FormBuilder->new(
debug => $DEBUG,
fields => [qw/name color/],
labels => {color => 'Favorite Color'},
validate => {email => 'EMAIL'},
required => [qw/name/],
sticky => 0, columns => 1,
action => 'TEST', title => 'TEST',
);
$form->field(name => 'color', options => [qw(red> green& blue")],
multiple => 1, cleanopts => 0);
$form->field(name => 'name', options => [qw(lower UPPER)], nameopts => 1);
# Just return the form rendering
# This should really go in 00generate.t, but the framework is too tight
$form->render;
}, outfile(12));
exit if $t;
#13
T13: ok(do {
# check individual fields as static
my $form = CGI::FormBuilder->new(debug => $DEBUG,
fields => [qw/name email color/],
action => 'TEST',
columns => 1);
$form->field(name => 'name', static => 1);
$form->field(name => 'email', type => 'static');
# Just return the form rendering
# This should really go in 00generate.t, but the framework is too tight
$form->render;
}, outfile(13));
exit if $t;
#14
T14: ok(do {
# test of proper CGI precendence when manually setting values
my $form = CGI::FormBuilder->new(
debug => $DEBUG,
fields => [qw/name email blank notpresent/],
values => {blank => 'DEF', name => 'DEF'}
);
if (defined($form->field('blank'))
&& ! $form->field('blank')
&& $form->field('name') eq 'Pete Peteson'
&& ! defined($form->field('notpresent'))
) {
1;
} else {
0;
}
}, 1);
exit if $t;
#15
T15: ok(do {
# test of proper CGI precendence when manually setting values
my $form = CGI::FormBuilder->new(
debug => $DEBUG,
fields => [qw/name email blank/],
keepextras => 0, # should still get value
action => 'TEST',
);
if (! $form->field('extra') &&
$form->cgi_param('extra') eq 'junk') {
1;
} else {
0;
}
}, 1);
exit if $t;
#16
T16: ok(do{
my $form = CGI::FormBuilder->new(debug => $DEBUG,
fields => [qw/name color hid1 hid2/],
action => 'TEST',
columns => 1);
$form->field(name => 'name', static => 1, type => 'text');
$form->field(name => 'hid1', type => 'hidden', value => 'Val1a');
$form->field(name => 'hid1', type => 'hidden', value => 'Val1b'); # should replace Val1a
$form->field(name => 'hid2', type => 'hidden', value => 'Val2');
$form->field(name => 'color', value => 'blew', options => [qw(read blew yell)]);
$form->field(name => 'Tummy', value => [qw(lg xxl)], options => [qw(sm med lg xl xxl xxxl)]);
# Just return the form rendering
# This should really go in 00generate.t, but the framework is too tight
$form->confirm;
}, outfile(16));
exit if $t;
#17
T17: ok(do{
my $form = CGI::FormBuilder->new(debug => $DEBUG, fields => [qw/name color dress_size taco:punch/]);
$form->field(name => 'blank', value => 175, force => 1);
$form->field(name => 'user', value => 'bob');
if ($form->field('blank') eq 175 && $form->field('user') eq 'pete') {
1;
} else {
0;
}
}, 1);
exit if $t;
#18
T18: ok(do{
my $form = CGI::FormBuilder->new(
debug => $DEBUG,
smartness => 0,
javascript => 0,
);
$form->field(name => 'blank', value => 'aoe', type => 'text');
$form->field(name => 'extra', value => '24', type => 'hidden', override => 1);
$form->field(name => 'two', value => 'one');
my @v = $form->field('two');
if ($form->submitted && $form->validate && defined($form->field('blank')) && ! $form->field('blank')
&& $form->field('extra') eq 24 && @v == 2) {
1;
} else {
0;
}
}, 1);
exit if $t;
#19
T19: ok(do{
my $form = CGI::FormBuilder->new(debug => $DEBUG);
$form->fields([qw/one two three/]);
my @v;
if (@v = $form->field('two') and @v == 2) {
1;
} else {
0;
}
}, 1);
exit if $t;
#20
T20: ok(do{
my $form = CGI::FormBuilder->new(
debug => $DEBUG,
fields => [qw/one two three/],
fieldtype => 'TextAREA',
);
$form->field(name => 'added_later', label => 'Yo');
my $ok = 1;
for ($form->fields) {
$ok = 0 unless $_->render =~ /textarea/i;
}
$ok;
}, 1);
exit if $t;
#21
T21: ok(do{
my $form = CGI::FormBuilder->new(
debug => $DEBUG,
fields => [qw/a b c/],
fieldattr => {type => 'TOMATO'},
values => {a => 'Ay', b => 'Bee', c => 'Sea'},
);
$form->values(a => 'a', b => 'b', c => 'c');
my $ok = 1;
for ($form->fields) {
$ok = 0 unless $_->value eq $_;
}
$ok;
}, 1);
exit if $t;
#22
T22: ok(do{
my $form = CGI::FormBuilder->new(
fields => [qw/name user/],
required => 'ALL',
sticky => 0,
);
my $ok = 1;
my $name = $form->field('name');
$ok = 0 unless $name eq 'Pete Peteson';
my $user = $form->field('user');
$ok = 0 unless $user eq 'pete';
for ($form->fields) {
$ok = 0 unless $_->tag eq qq(<input id="$_" name="$_" type="text" />);
}
$ok;
}, 1);
exit if $t;
|