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
|
#!/usr/bin/perl -w
use Test::More tests => 24;
use strict;
use CGI;
use CGI::Untaint;
my $data = {
name => "Tony Bowden",
age => 110,
value => -10,
count => "0",
hex => "a15b",
};
my %type = (
name => 'printable',
age => 'integer',
value => 'integer',
hex => 'hex',
count => 'printable',
);
{
my $q = CGI->new($data);
ok my $h = CGI::Untaint->new($q->Vars), "Create the handler";
isa_ok $h, "CGI::Untaint";
foreach (sort keys %type) {
ok defined(my $res = $h->extract("-as_$type{$_}" => $_)), "Extract $_";
is $res, $data->{$_}, " - Correct value ($_ = $data->{$_})";
is $h->error, '', "No error";
}
my $foo = $h->extract(-as_printable => 'foo');
ok !$foo, "No Foo";
is $h->error, "No parameter for 'foo'", "No error";
}
{
local $data->{hex} = "a15g";
my $q = CGI->new($data);
ok my $h = CGI::Untaint->new($q->Vars), "Create the handler";
my $hex = $h->extract(-as_hex => 'hex');
ok !$hex, "Invalid hex";
like $h->error, qr/does not untaint with default pattern/, $h->error;
}
{
my $data = {};
my $q = CGI->new($data);
ok my $h = CGI::Untaint->new($q->Vars), "Create an empty handler";
my $hex = $h->extract(-as_hex => 'hex');
ok !$hex, "No hex in it";
}
|