158 lines
4.1 KiB
Perl
158 lines
4.1 KiB
Perl
#-------------------------------------------------------------------
|
|
# WebGUI is Copyright 2001-2009 Plain Black Corporation.
|
|
#-------------------------------------------------------------------
|
|
# Please read the legal notices (docs/legal.txt) and the license
|
|
# (docs/license.txt) that came with this distribution before using
|
|
# this software.
|
|
#-------------------------------------------------------------------
|
|
# http://www.plainblack.com info@plainblack.com
|
|
#-------------------------------------------------------------------
|
|
|
|
use FindBin;
|
|
use strict;
|
|
use lib "$FindBin::Bin/../lib";
|
|
|
|
use WebGUI::Test;
|
|
use WebGUI::Form;
|
|
use WebGUI::Form::Integer;
|
|
use WebGUI::Session;
|
|
use HTML::Form;
|
|
use WebGUI::Form_Checking;
|
|
|
|
#The goal of this test is to verify that Integer form elements work
|
|
|
|
use Test::More; # increment this value for each test you create
|
|
|
|
my $session = WebGUI::Test->session;
|
|
|
|
# put your tests here
|
|
|
|
my $testBlock = [
|
|
{
|
|
key => 'Int1',
|
|
testValue => '-123456',
|
|
expected => 'EQUAL',
|
|
comment => 'valid, negative integer',
|
|
},
|
|
{
|
|
key => 'Int2',
|
|
testValue => '002300',
|
|
expected => 'EQUAL',
|
|
comment => 'valid, leading zeroes',
|
|
},
|
|
{
|
|
key => 'Int3',
|
|
testValue => '+123456',
|
|
expected => 0,
|
|
comment => 'reject explicitly positive integer',
|
|
},
|
|
{
|
|
key => 'Int4',
|
|
testValue => '123-456.',
|
|
expected => 0,
|
|
comment => 'rejects non-sense integer with negative sign',
|
|
},
|
|
{
|
|
key => 'Int5',
|
|
testValue => '123.456',
|
|
expected => 0,
|
|
comment => 'rejects float',
|
|
},
|
|
{
|
|
key => 'Int6',
|
|
testValue => '0',
|
|
expected => 0,
|
|
comment => 'zero passes',
|
|
},
|
|
{
|
|
key => 'Int7',
|
|
testValue => '',
|
|
expected => 0,
|
|
comment => 'empty string returns 0',
|
|
},
|
|
{
|
|
key => 'Int8',
|
|
testValue => undef,
|
|
expected => 0,
|
|
comment => 'undef returns 0',
|
|
},
|
|
];
|
|
|
|
my $formClass = 'WebGUI::Form::Integer';
|
|
my $formType = 'Integer';
|
|
|
|
my $numTests = 11 + scalar @{ $testBlock } + 11;
|
|
|
|
|
|
plan tests => $numTests;
|
|
|
|
my ($header, $footer) = (WebGUI::Form::formHeader($session), WebGUI::Form::formFooter($session));
|
|
|
|
my $html = join "\n",
|
|
$header,
|
|
$formClass->new($session, {
|
|
name => 'TestInteger',
|
|
value => '123456',
|
|
})->toHtml,
|
|
$footer;
|
|
|
|
my @forms = HTML::Form->parse($html, 'http://www.webgui.org');
|
|
|
|
##Test Form Generation
|
|
|
|
is(scalar @forms, 1, '1 form was parsed');
|
|
|
|
my @inputs = $forms[0]->inputs;
|
|
is(scalar @inputs, 2, 'The form has 2 inputs');
|
|
|
|
#Basic tests
|
|
|
|
my $input = $inputs[1];
|
|
is($input->name, 'TestInteger', 'Checking input name');
|
|
is($input->type, 'text', 'Checking input type');
|
|
is($input->value, '123456', 'Checking default value');
|
|
is($input->{size}, 11, 'Default size');
|
|
is($input->{maxlength}, 11, 'Default maxlength');
|
|
|
|
##Test Form Output parsing
|
|
|
|
my $html = join "\n",
|
|
$header,
|
|
$formClass->new($session, {
|
|
name => 'TestInt2',
|
|
value => '98765',
|
|
size => 15,
|
|
maxlength => 20,
|
|
})->toHtml,
|
|
$footer;
|
|
|
|
@forms = HTML::Form->parse($html, 'http://www.webgui.org');
|
|
@inputs = $forms[0]->inputs;
|
|
my $input = $inputs[1];
|
|
is($input->name, 'TestInt2', 'Checking input name');
|
|
is($input->value, '98765', 'Checking default value');
|
|
is($input->{size}, 15, 'set size');
|
|
is($input->{maxlength}, 20, 'set maxlength');
|
|
|
|
##Test Form Output parsing
|
|
|
|
WebGUI::Form_Checking::auto_check($session, $formType, $testBlock);
|
|
|
|
# just testing that getValue works with an argument
|
|
|
|
my $int = WebGUI::Form::Integer->new($session);
|
|
is($int->getValue(-123456), -123456, 'getValue(-123456)');
|
|
is($int->getValue('002300'), '002300', 'getValue(002300)');
|
|
is($int->getValue('+123456'), 0, 'getValue(+123456)');
|
|
is($int->getValue('123-456.'), 0, 'getValue(123-456.)');
|
|
is($int->getValue(123.456), 0, 'getValue(123.456)');
|
|
|
|
is($session->form->integer(undef,-123456), -123456, 'session->form->integer(undef,-123456)');
|
|
is($session->form->integer(undef,'002300'), '002300', 'session->form->integer(undef,002300)');
|
|
is($session->form->integer(undef,'+123456'), 0, 'session->form->integer(undef,+123456)');
|
|
is($session->form->integer(undef,'123-456.'), 0, 'session->form->integer(undef,123-456.)');
|
|
is($session->form->integer(undef,123.456), 0, 'session->form->integer(undef,123.456)');
|
|
|
|
|
|
__END__
|
|
|