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 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
|
use strict;
use warnings;
use Test::More tests => 5;
use HTML::FormFu;
my $form = HTML::FormFu->new({ tt_args => { INCLUDE_PATH => 'share/templates/tt/xhtml' } });
$form->auto_fieldset( { nested_name => 'foo' } );
my $field = $form->element('ComboBox')
->name('bar')
->options( [ [ 1 => 'One' ], [ 2 => 'Two' ] ] )
;
$form->process;
is( "$form", <<EOF );
<form action="" method="post">
<fieldset>
<div class="combobox">
<span class="elements">
<select name="foo.bar_select">
<option value=""></option>
<option value="1">One</option>
<option value="2">Two</option>
</select>
<input name="foo.bar_text" type="text" />
</span>
</div>
</fieldset>
</form>
EOF
$form->process({
"foo.bar_select" => '2',
"foo.bar_text" => '',
});
is( $form->param("foo.bar"), 2 );
is( "$form", <<EOF );
<form action="" method="post">
<fieldset>
<div class="combobox">
<span class="elements">
<select name="foo.bar_select">
<option value=""></option>
<option value="1">One</option>
<option value="2" selected="selected">Two</option>
</select>
<input name="foo.bar_text" type="text" value="" />
</span>
</div>
</fieldset>
</form>
EOF
$form->process({
"foo.bar_select" => '',
"foo.bar_text" => '3',
});
is( $form->param("foo.bar"), 3 );
is( "$form", <<EOF );
<form action="" method="post">
<fieldset>
<div class="combobox">
<span class="elements">
<select name="foo.bar_select">
<option value="" selected="selected"></option>
<option value="1">One</option>
<option value="2">Two</option>
</select>
<input name="foo.bar_text" type="text" value="3" />
</span>
</div>
</fieldset>
</form>
EOF
|