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
|
use utf8;
use strict;
use warnings;
use Test::More;
BEGIN {
use FindBin;
use lib $FindBin::Bin . '/lib';
}
{
package T;
use Validation::Class;
set roles => [
'T::User',
'T::Location'
];
package main;
my $class;
eval { $class = T->new; };
ok "T" eq ref $class, "T instantiated";
my $documents = $class->prototype->documents;
ok "Validation::Class::Mapping" eq ref $documents, "T documents hash registered as setting";
ok 2 == keys %{$documents}, "T has 2 registered document";
my $user = $documents->{'user'};
ok 7 == keys %{$user}, "T user document has 6 mappings";
can_ok $class, 'validate_document';
my $data = {
"id" => 1234,
"type" => "Master",
"name" => "Root",
"company" => "System, LLC",
"login" => "root",
"email" => "root\@localhost",
"locations" => [
{
"id" => 9876,
"type" => "Node",
"name" => "DevBox",
"company" => "System, LLC",
"address1" => "123 Street Road",
"address2" => "Suite 2",
"city" => "SINCITY",
"state" => "NO",
"zip" => "00000"
}
]
};
ok ! $class->validate_document(user => $data), "T document (user) not valid";
ok $class->errors_to_string =~ /locations\.0\.state/, "T proper error message set";
$class->prototype->documents->{'location'}->{state} = 'string';
ok $class->validate_document(user => $data), "T document (user) validated";
}
done_testing;
|