X-Git-Url: http://git.shiar.net/perl/html-form-simple.git/blobdiff_plain/ac5c326058425050aa8f7ba5036f2f3bc0695350..be81b5d559a8ed87ee6493f27b698343fada60c4:/t/html.t diff --git a/t/html.t b/t/html.t index e023997..d12d6ef 100644 --- a/t/html.t +++ b/t/html.t @@ -5,7 +5,7 @@ use warnings; use Test::More; -plan tests => 31; +plan tests => 43; use_ok('HTML::Form::Simple'); @@ -176,29 +176,139 @@ is( # select -is( - $form->select, - '', # malformed html: at least 1 option required +is_deeply( + [ $form->select ], + [ qw() ], # malformed html: at least 1 option required 'empty select' ); -is( - $form->select(undef, [], '', {name => ''}), - '', +is_deeply( + [ $form->select(undef, [], '', {name => '', class => ''}) ], + [ qw() ], 'explicit empty select' ); -is( - $form->select(undef, [undef]), - '', +is_deeply( + [ $form->select(undef, [undef]) ], + [ qw() ], 'minimal select' ); -is( - $form->select(foo => [1..2]), - '', +is_deeply( + [ $form->select(foo => [1, 2]) ], + [ + '' + ], 'select contents' ); +is_deeply( + [ $form->select(foo => [1, 2], 3) ], + [ + '' + ], + 'select invalid default' +); + +is_deeply( + [ $form->select(undef, [1, 2], 2) ], + [ + '' + ], + 'select default' +); + +is_deeply( + [ + $form->select(foo => [ + '<">', {value => 2, disabled => 1, selected => 0, class => 1}, {selected => 1} + ], '2', {id => '', class => 'a 1}) + ], + [ + '' + ], + 'complex select' +); + +is( + scalar $form->select(foo => [1, 2]), + '', + 'select scalar' +); + +# radio + +is_deeply( + [ $form->select(foo => [1], {type => 'radio'}) ], + [ '' ], + 'input select' +); + +is_deeply( + [ + $form->select(foo => [ + 1, {value => 2, name => '', label => ''}, {value => 3, id => '', type => ''} + ], {type => 'checkbox', label => {3 => 'test', 2 => 'ignore'}, value => '1'}) + ], + [ + '', + '', + '', + ], + 'input selects' +); + +is( + $form->radio(foo => 1), + '', + 'radio method' +); + +is( + $form->radio(undef, {checked => 1}), + '', + 'simple radio button' +); + +is( + $form->check('foo'), + '', + 'check method' +); + +is( + $form->check(foo => 'test', {value => undef}), + '', + 'check parameters' +); + +is( + $form->check(undef, '', 1), + '', + 'simple checkbox' +); + +TODO: { + local $TODO = 'shorthand'; +is_deeply( + [ $form->check(undef, ['', '<">']) ], + [ + '', + '', + ], + 'multiple checkboxes' +); +}; + #TODO