File: repeatable_clone.t

package info (click to toggle)
libhtml-formhandler-perl 0.40057-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 2,320 kB
  • ctags: 685
  • sloc: perl: 8,849; makefile: 2
file content (59 lines) | stat: -rw-r--r-- 1,636 bytes parent folder | download | duplicates (5)
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
use strict;
use warnings;
use Test::More;

# tests that we have a valid form reference after
#  merging attributes for a repeatable instance and a
# form package with a 'clone' method
{
    package MyApp::Form::Rep;
    use HTML::FormHandler::Moose;
    extends 'HTML::FormHandler';

    use Clone ('clone');

    has '+name' => ( default => 'testform' );
    has_field 'foo';
    has_field 'my_array' => ( type => 'Repeatable' );
    has_field 'my_array.one';
    has_field 'my_array.two' => ( type => 'Select' );
    has_field 'my_array.three';

    sub build_update_subfields {
        { all => { wrap_label_method => \&wrap_label } }
    }

    sub wrap_label {
        my $self = shift; # field
        my $label = $self->label;
        return qq{<a href="/some/link">$label</a>};
    }

    sub default_my_array {
        my $self = shift;
        return (
            { one => 'abc1', two => 2, three => 'abc3' },
            { one => 'def1', two => 3, three => 'def3' },
            { one => 'ghi1', two => 1, three => 'ghi3' }
        );
    }
    sub options_my_array_two {
       return (
           1   => 'one',
           2   => 'two',
           3   => 'three',
       );
    }
    # this won't take effect; the 'my_array' default has precedence
    # would be used for 'num_extra'
    sub default_my_array_three { 'default_three' }
}

my $form = MyApp::Form::Rep->new;
ok( $form );
$form->process;
is( $form->field('my_array.0')->has_form, 1, 'has_form is true' );
ok( $form->field('my_array.0')->form, 'actually has form object' );
ok( $form == $form->field('my_array.0')->form, 'correct form object' );

done_testing;