XXX: check() id-related improvements + tests
[perl/html-form-simple.git] / t / html.t
index 757b248dbd825400b4e2e4a12cc723d802c84822..166ab111149cfd8bc160ad17571b7284084b4e4e 100644 (file)
--- a/t/html.t
+++ b/t/html.t
@@ -5,7 +5,7 @@ use warnings;
 
 use Test::More;
 
-plan tests => 66;
+plan tests => 68;
 
 use_ok('HTML::Form::Simple');
 
@@ -402,13 +402,13 @@ is_deeply(
 
 is(
        $form->check('foo'),
-       '<input id="foo_1" name="foo" type="checkbox" value="1">',
+       '<input id="foo" name="foo" type="checkbox" value="1">',
        'check method'
 );
 
 is(
        $form->check(foo => '<">'),
-       '<label><input id="foo_1" name="foo" type="checkbox" value="1"> <"></label>',
+       '<label><input id="foo" name="foo" type="checkbox" value="1"> <"></label>',
        'labeled checkbox'
 );
 
@@ -424,13 +424,57 @@ is_deeply(
        'anonymous checkbox'
 );
 
+is(
+       $form->check(foo => [undef]),
+       '<input id="foo_1" name="foo" type="checkbox" value="1">',
+       'multipart check'
+);
+
+is_deeply(
+       [ $form->check(foo => [{value => undef}, undef]) ],
+       [
+               '<input id="foo" name="foo" type="checkbox">',
+               '<input id="foo_2" name="foo" type="checkbox" value="2">',
+       ],
+       'multiple checkboxes'
+);
+
+is(
+       $form->check(foo => [undef], {id => ''}),
+       '<input name="foo" type="checkbox" value="1">',
+       'idless checks'
+);
+
+is_deeply(
+       [ $form->check(
+               foo => [ {id => 'quux'}, {name => 'name'}, {value => 0}, {id => ''}, undef ], {id => 'bar'}
+       ) ],
+       [
+               '<input id="quux" name="foo" type="checkbox" value="1">',
+               '<input id="bar_2" name="name" type="checkbox" value="2">',
+               '<input id="bar_0" name="foo" type="checkbox" value="0">',
+               '<input name="foo" type="checkbox" value="4">',
+               '<input id="bar_5" name="foo" type="checkbox" value="5">',
+       ],
+       'check overrides'
+);
+
+is_deeply(
+       [ $form->check(foo => ['bar', {name => 'bar'}], {name => 'ignored'}) ],
+       [
+               '<label><input id="foo_1" name="foo" type="checkbox" value="1"> bar</label>',
+               '<input id="bar_2" name="bar" type="checkbox" value="2">',
+       ],
+       'checkbox names'
+);
+
 is_deeply(
        [ $form->check(undef, ['', '<">']) ],
        [
                '<input type="checkbox" value="1">',
                '<label><input type="checkbox" value="2"> <"></label>',
        ],
-       'multiple checkboxes'
+       'anonymous checkboxes'
 );
 
 is_deeply(