XXX: hidden hash
[perl/html-form-simple.git] / t / html.t
index e023997831b20a951b6fd949dc55dbe0e2a4bb7e..3c6d8f4898b1284d9c061cf734535d95ca776dd3 100644 (file)
--- a/t/html.t
+++ b/t/html.t
@@ -5,7 +5,7 @@ use warnings;
 
 use Test::More;
 
-plan tests => 31;
+plan tests => 53;
 
 use_ok('HTML::Form::Simple');
 
@@ -52,7 +52,20 @@ is(
        'hidden'
 );
 
-#TODO: hidden options
+is(
+       $form->hidden(undef, undef, {value => 'bar', name => 'foo', id => 'foo'}),
+       '<input id="foo" name="foo" type="hidden" value="bar">',
+       'hidden options'
+);
+
+is_deeply(
+       [ $form->hidden({2 => 0, 10 => 1}, {class => 'test'}) ],
+       [
+               '<input class="test" name="10" type="hidden" value="1">',
+               '<input class="test" name="2" type="hidden" value="0">',
+       ],
+       'hidden hash'
+);
 
 # submit
 
@@ -119,15 +132,22 @@ is(
 );
 
 is(
-       $form->input('', '', {disabled => 0, something => undef, class => undef, style => ''}),
+       $form->input('', '', {
+               disabled => 0,
+               something => undef,
+               class => undef,
+               style => '',
+               name => 'ignore',
+               value => 'overrides',
+       }),
        '<input name="" type="text" value="">',
        'input with empty attributes'
 );
 
 is(
-       $form->input(undef, undef, {name => 'override', value => 'override'}),
-       '<input type="text">',
-       'ignore input overrides'
+       $form->input(undef, undef, {name => '0', value => '0'}),
+       '<input id="0" name="0" type="text" value="0">',
+       'input overrides'
 );
 
 is(
@@ -176,29 +196,209 @@ is(
 
 # select
 
-is(
-       $form->select,
-       '<select></select>', # malformed html: at least 1 option required
+is_deeply(
+       [ $form->select ],
+       [ qw(<select> </select>) ], # malformed html: at least 1 option required
        'empty select'
 );
 
-is(
-       $form->select(undef, [], '', {name => ''}),
-       '<select></select>',
+is_deeply(
+       [ $form->select(undef, [], '', {name => '', class => ''}) ],
+       [ qw(<select> </select>) ],
        'explicit empty select'
 );
 
-is(
-       $form->select(undef, [undef]),
-       '<select><option></select>',
+is_deeply(
+       [ $form->select(undef, [undef]) ],
+       [ qw(<select> <option> </select>) ],
        'minimal select'
 );
 
-is(
-       $form->select(foo => [1..2]),
-       '<select name="foo"><option value="1"><option value="2"></select>',
+is_deeply(
+       [ $form->select(foo => [1, 2]) ],
+       [
+               '<select id="foo" name="foo">',
+               '<option value="1">', '<option value="2">',
+               '</select>'
+       ],
        'select contents'
 );
 
+is_deeply(
+       [ $form->select(foo => [1, 2], 3) ],
+       [
+               '<select id="foo" name="foo">',
+               '<option value="1">', '<option value="2">',
+               '</select>'
+       ],
+       'select invalid default'
+);
+
+is_deeply(
+       [ $form->select(undef, [1, 2], 2) ],
+       [
+               '<select>',
+               '<option value="1">', '<option selected value="2">',
+               '</select>'
+       ],
+       'select default'
+);
+
+is_deeply(
+       [
+               $form->select(foo => [
+                       '<">', {value => 2, disabled => 1, selected => 0, class => 1}, {selected => 1}
+               ], '2', {id => '', class => 'a <b', value => 1})
+       ],
+       [
+               '<select class="a &lt;b" name="foo">',
+               '<option value="&lt;&quot;>">',
+               '<option selected disabled class="1" value="2">',
+               '<option selected>',
+               '</select>'
+       ],
+       'complex select'
+);
+
+is(
+       scalar $form->select(foo => [1, 2]),
+       '<select id="foo" name="foo"><option value="1"><option value="2"></select>',
+       'select scalar'
+);
+
+# radio
+
+is_deeply(
+       [ $form->select(foo => [1], {type => 'radio'}) ],
+       [ '<input id="foo_1" name="foo" type="radio" value="1">' ],
+       '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 checked id="foo_1" name="foo" type="checkbox" value="1">',
+               '<input id="foo_2" name="" type="checkbox" value="2">',
+               '<label><input name="foo" value="3"> test</label>',
+       ],
+       'input selects'
+);
+
+is(
+       $form->radio(foo => 'test'),
+       '<label><input id="foo_1" name="foo" type="radio" value="1"> test</label>',
+       'radio method'
+);
+
+is(
+       $form->radio(foo => undef, 2),
+       '<input id="foo_2" name="foo" type="radio" value="2">',
+       'labelless radio'
+);
+
+is(
+       $form->radio(undef, {checked => 1}),
+       '<input checked type="radio">',
+       'simple radio button'
+);
+
+is_deeply(
+       [ $form->radio(undef, ['', '<">']) ],
+       [
+               '<input type="radio" value="1">',
+               '<label><input type="radio" value="2"> <"></label>',
+       ],
+       'multiple radios'
+);
+
+is_deeply(
+       [ $form->radio(foo => 'test', ['foo', ''], {value => '', id => ''}) ],
+       [
+               '<label><input name="foo" type="radio" value="foo"> test</label>',
+               '<label><input checked name="foo" type="radio" value=""> test</label>',
+       ],
+       'multiple radios with custom value'
+);
+
+is_deeply(
+       [ $form->radio(foo => ['', 0], [0, 1, '']) ],
+       [
+               '<input id="foo_0" name="foo" type="radio" value="0">',
+               '<label><input id="foo_1" name="foo" type="radio" value="1"> 0</label>',
+               '<input id="foo_" name="foo" type="radio" value="">',
+       ],
+       'multiple radios with custom values'
+);
+
+# check
+
+is(
+       $form->check('foo'),
+       '<input id="foo_1" name="foo" type="checkbox" value="1">',
+       'check method'
+);
+
+is(
+       $form->check(foo => '<">'),
+       '<label><input id="foo_1" name="foo" type="checkbox" value="1"> <"></label>',
+       'labeled checkbox'
+);
+
+is(
+       $form->check(foo => {label => 'test', value => undef}, {disabled => 1}),
+       '<label><input disabled id="foo" name="foo" type="checkbox"> test</label>',
+       'check parameters'
+);
+
+is_deeply(
+       [ $form->check(undef, '', 1) ],
+       [ '<input checked type="checkbox" value="1">' ],
+       'anonymous checkbox'
+);
+
+is_deeply(
+       [ $form->check(undef, ['', '<">']) ],
+       [
+               '<input type="checkbox" value="1">',
+               '<label><input type="checkbox" value="2"> <"></label>',
+       ],
+       'multiple checkboxes'
+);
+
+is_deeply(
+       [ $form->check(undef, [{}, undef], 1) ],
+       [
+               '<input checked type="checkbox" value="1">',
+               '<input checked type="checkbox" value="2">',
+       ],
+       'multiple checked checkboxes'
+);
+
+{
+       local $, = ' | ';
+       is(
+               scalar $form->check(foo => [1, 0], {value => 0}),
+               join(' | ',
+                       '<label><input id="foo_1" name="foo" type="checkbox" value="1"> 1</label>',
+                       '<label><input id="foo_2" name="foo" type="checkbox" value="2"> 0</label>',
+               ),
+               'merged checkboxes'
+       );
+}
+
+is_deeply(
+       [ $form->check(undef, [{value => 4, type => 'radio'}], [1, 0, 0], {value => 3}) ],
+       [
+               '<input checked type="radio" value="4">',
+               '<input type="checkbox" value="2">',
+               '<input checked type="checkbox" value="3">',
+       ],
+       'various checkboxes'
+);
+
 #TODO