summaryrefslogtreecommitdiffstats
path: root/t/nested.t
blob: 67f941bd7704012780d631c240a2e555852226c5 (plain) (blame)
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
#!/usr/bin/env perl
use strict;
use warnings;
use Test::More;

use Moose::Util::TypeConstraints 'find_type_constraint';

use MooseX::Validation::Doctypes;

doctype 'Name' => {
    first => 'Str',
    last  => 'Str',
};

doctype 'Person' => {
    id    => 'Str',
    name  => 'Name',
    title => 'Str',
};

{
    my $person = find_type_constraint('Person');
    isa_ok($person, 'Moose::Meta::TypeConstraint');
    isa_ok($person, 'MooseX::Meta::TypeConstraint::Doctype');

    is_deeply(
        $person->doctype,
        { id => 'Str', name => 'Name', title => 'Str' },
        "got the right doctype"
    );

    {
        my $errors = $person->validate({
            id    => '17382-QA',
            name  => {
                first => 'Bob',
                last  => 'Smith',
            },
            title => 'CIO'
        });
        is($errors, undef, "no errors");
    }

    {
        my $errors = $person->validate({
            id    => '17382-QA',
            name  => {
                first => [],
                last  => 'Smith',
            },
            title => 'CIO',
        });
        isa_ok($errors, 'MooseX::Validation::Doctypes::Errors');
        is_deeply(
            $errors->errors,
            { name => { first => "invalid value [  ] for 'name.first'" } },
            "got the right errors"
        );
        is($errors->extra_data, undef, "no errors");
    }
}

done_testing;