File: get_constraints.t

package info (click to toggle)
libhtml-formfu-perl 0.09007-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 4,184 kB
  • sloc: perl: 13,186; makefile: 9; sql: 5
file content (56 lines) | stat: -rw-r--r-- 1,261 bytes parent folder | download | duplicates (6)
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
use strict;
use warnings;

use Test::More tests => 17;

use HTML::FormFu;

my $form = HTML::FormFu->new;
my $fs   = $form->element('Fieldset');

$fs->element('Text')->name('name')->constraint('Word');
$fs->element('Text')->name('age')->constraint('Number');

$form->constraint( Required => 'name', 'age' );

{
    my $constraints = $form->get_constraints;

    is( @$constraints, 4 );

    is( $constraints->[0]->name, 'name' );
    is( $constraints->[1]->name, 'name' );
    is( $constraints->[2]->name, 'age' );
    is( $constraints->[3]->name, 'age' );

    is( $constraints->[0]->type, 'Word' );
    is( $constraints->[1]->type, 'Required' );
    is( $constraints->[2]->type, 'Number' );
    is( $constraints->[3]->type, 'Required' );
}

{
    my $constraints = $form->get_constraints('name');

    is( @$constraints, 2 );

    is( $constraints->[0]->type, 'Word' );
    is( $constraints->[1]->type, 'Required' );
}

{
    my $constraints = $form->get_constraints( { name => 'age' } );

    is( @$constraints, 2 );

    is( $constraints->[0]->type, 'Number' );
    is( $constraints->[1]->type, 'Required' );
}

{
    my $constraints = $form->get_constraints( { type => 'Number' } );

    is( @$constraints, 1 );

    is( $constraints->[0]->name, 'age' );
}