X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fp5-CGI-Ex;a=blobdiff_plain;f=t%2F1_validate_11_no_extra.t;h=c7a8d0ca5861c96d6dd47c99b1f54bb12865e26d;hp=46ca0e6b242488dcb9f95a0e0d8341b553b6708b;hb=4eee158dce82376f2f37de29d91c53f60a24aebe;hpb=85070b46d0a93ddbeef07341421adb8389a55418 diff --git a/t/1_validate_11_no_extra.t b/t/1_validate_11_no_extra.t index 46ca0e6..c7a8d0c 100644 --- a/t/1_validate_11_no_extra.t +++ b/t/1_validate_11_no_extra.t @@ -1,30 +1,19 @@ # -*- Mode: Perl; -*- -use strict; +=head1 NAME + +1_validate_11_no_extra.t - Test CGI::Ex::Validate's ability to not allow extra form fields -$^W = 1; +=cut -### determine number of tests -seek(DATA,0,0); -my $prog = join "", ; -my @tests = ($prog =~ /&print_ok\(/g); -my $tests = @tests; -print "1..$tests\n"; +use strict; +use Test::More tests => 21; -require CGI::Ex::Validate; +use_ok('CGI::Ex::Validate'); -my ($N, $v, $e, $ok) = (0); +my ($v, $e); -sub validate { - return scalar &CGI::Ex::Validate::validate(@_); -} -sub print_ok { - my $ok = shift; - $N ++; - warn "Test failed at line ".(caller)[2]."\n" if ! $ok; - print "" . ($ok ? "" : "not ") . "ok $N\n"; -} -&print_ok(1); +sub validate { CGI::Ex::Validate::validate(@_) } ###----------------------------------------------------------------### @@ -36,17 +25,17 @@ $v = [ }, ]; -$e = &validate({}, $v); -&print_ok(! $e); +$e = validate({}, $v); +ok(! $e); -$e = &validate({foo => "foo"}, $v); -&print_ok(! $e); +$e = validate({foo => "foo"}, $v); +ok(! $e); -$e = &validate({foo => "foo", bar => "bar"}, $v); -&print_ok($e); +$e = validate({foo => "foo", bar => "bar"}, $v); +ok($e); -$e = &validate({bar => "bar"}, $v); -&print_ok($e); +$e = validate({bar => "bar"}, $v); +ok($e); ### test on failed validate if @@ -58,17 +47,17 @@ $v = [ }, ]; -$e = &validate({}, $v); -&print_ok(! $e); +$e = validate({}, $v); +ok(! $e); -$e = &validate({foo => "foo"}, $v); -&print_ok(! $e); +$e = validate({foo => "foo"}, $v); +ok(! $e); -$e = &validate({foo => "foo", bar => "bar"}, $v); -&print_ok(! $e); +$e = validate({foo => "foo", bar => "bar"}, $v); +ok(! $e); -$e = &validate({bar => "bar"}, $v); -&print_ok(! $e); +$e = validate({bar => "bar"}, $v); +ok(! $e); ### test on successful validate if $v = [ @@ -80,17 +69,17 @@ $v = [ }, ]; -$e = &validate({baz => 1}, $v); -&print_ok(! $e); +$e = validate({baz => 1}, $v); +ok(! $e); -$e = &validate({baz => 1, foo => "foo"}, $v); -&print_ok(! $e); +$e = validate({baz => 1, foo => "foo"}, $v); +ok(! $e); -$e = &validate({baz => 1, foo => "foo", bar => "bar"}, $v); -&print_ok($e); +$e = validate({baz => 1, foo => "foo", bar => "bar"}, $v); +ok($e); -$e = &validate({baz => 1, bar => "bar"}, $v); -&print_ok($e); +$e = validate({baz => 1, bar => "bar"}, $v); +ok($e); ### test on multiple groups, some with validate if $v = [ @@ -106,17 +95,17 @@ $v = [ }, ]; -$e = &validate({haw => 1, baz => 1}, $v); -&print_ok(! $e); +$e = validate({haw => 1, baz => 1}, $v); +ok(! $e); -$e = &validate({haw => 1, baz => 1, foo => "foo"}, $v); -&print_ok(! $e); +$e = validate({haw => 1, baz => 1, foo => "foo"}, $v); +ok(! $e); -$e = &validate({haw => 1, baz => 1, foo => "foo", bar => "bar"}, $v); -&print_ok($e); +$e = validate({haw => 1, baz => 1, foo => "foo", bar => "bar"}, $v); +ok($e); -$e = &validate({haw => 1, baz => 1, bar => "bar"}, $v); -&print_ok($e); +$e = validate({haw => 1, baz => 1, bar => "bar"}, $v); +ok($e); ### test on multiple groups, some with validate if @@ -133,16 +122,14 @@ $v = [ }, ]; -$e = &validate({haw => 1, baz => 1}, $v); -&print_ok($e); - -$e = &validate({haw => 1, baz => 1, foo => "foo"}, $v); -&print_ok($e); +$e = validate({haw => 1, baz => 1}, $v); +ok($e); -$e = &validate({haw => 1, baz => 1, foo => "foo", bar => "bar"}, $v); -&print_ok($e); +$e = validate({haw => 1, baz => 1, foo => "foo"}, $v); +ok($e); -$e = &validate({haw => 1, baz => 1, bar => "bar"}, $v); -&print_ok($e); +$e = validate({haw => 1, baz => 1, foo => "foo", bar => "bar"}, $v); +ok($e); -__DATA__ +$e = validate({haw => 1, baz => 1, bar => "bar"}, $v); +ok($e);