all new tests in place that must work with the (pending) update to Moose and MX:Types
[gitmo/MooseX-Types-Structured.git] / t / 05-advanced.t
CommitLineData
896f108d 1BEGIN {
2 use strict;
3 use warnings;
67a8bc04 4 use Test::More tests=>16;
896f108d 5 use Test::Exception;
6}
7
8{
9 package Test::MooseX::Meta::TypeConstraint::Structured::Advanced;
10
11 use Moose;
12 use MooseX::Types::Structured qw(Dict Tuple);
13 use MooseX::Types::Moose qw(Int Str Object ArrayRef HashRef Maybe);
14 use MooseX::Types -declare => [qw(
15 EqualLength MoreThanFive MoreLengthPlease PersonalInfo MorePersonalInfo
16 MinFiveChars
17 )];
18
19 subtype MoreThanFive,
20 as Int,
21 where { $_ > 5};
22
23 ## Tuple contains two equal length Arrays
24 subtype EqualLength,
25 as Tuple[ArrayRef[MoreThanFive],ArrayRef[MoreThanFive]],
26 where { $#{$_->[0]} == $#{$_->[1]} };
27
28 ## subclass the complex tuple
29 subtype MoreLengthPlease,
30 as EqualLength,
31 where { $#{$_->[0]} >= 4};
32
33 ## Complexe Dict
34 subtype PersonalInfo,
35 as Dict[name=>Str, stats=>MoreLengthPlease|Object];
36
37 ## Minimum 5 char string
38 subtype MinFiveChars,
39 as Str,
40 where { length($_) > 5};
67a8bc04 41
896f108d 42 ## Dict key overloading
43 subtype MorePersonalInfo,
a4a88fef 44 as PersonalInfo[name=>MinFiveChars, stats=>MoreLengthPlease|Object];
896f108d 45
46 has 'EqualLengthAttr' => (is=>'rw', isa=>EqualLength);
47 has 'MoreLengthPleaseAttr' => (is=>'rw', isa=>MoreLengthPlease);
48 has 'PersonalInfoAttr' => (is=>'rw', isa=>PersonalInfo);
49 has 'MorePersonalInfo' => (is=>'rw', isa=>MorePersonalInfo);
50}
51
52## Instantiate a new test object
53
54ok my $obj = Test::MooseX::Meta::TypeConstraint::Structured::Advanced->new
55 => 'Instantiated new Record test class.';
56
57isa_ok $obj => 'Test::MooseX::Meta::TypeConstraint::Structured::Advanced'
58 => 'Created correct object type.';
67a8bc04 59
896f108d 60## Test EqualLengthAttr
61
62lives_ok sub {
63 $obj->EqualLengthAttr([[6,7,8],[9,10,11]]);
64} => 'Set EqualLengthAttr attribute without error';
65
66throws_ok sub {
67 $obj->EqualLengthAttr([1,'hello', 'test.xxx.test']);
68}, qr/Attribute \(EqualLengthAttr\) does not pass the type constraint/
69 => q{EqualLengthAttr correctly fails [1,'hello', 'test.xxx.test']};
70
71throws_ok sub {
72 $obj->EqualLengthAttr([[6,7],[9,10,11]]);
73}, qr/Attribute \(EqualLengthAttr\) does not pass the type constraint/
74 => q{EqualLengthAttr correctly fails [[6,7],[9,10,11]]};
75
76throws_ok sub {
77 $obj->EqualLengthAttr([[6,7,1],[9,10,11]]);
78}, qr/Attribute \(EqualLengthAttr\) does not pass the type constraint/
79 => q{EqualLengthAttr correctly fails [[6,7,1],[9,10,11]]};
80
81## Test MoreLengthPleaseAttr
82
83lives_ok sub {
84 $obj->MoreLengthPleaseAttr([[6,7,8,9,10],[11,12,13,14,15]]);
85} => 'Set MoreLengthPleaseAttr attribute without error';
86
87throws_ok sub {
88 $obj->MoreLengthPleaseAttr([[6,7,8,9],[11,12,13,14]]);
89}, qr/Attribute \(MoreLengthPleaseAttr\) does not pass the type constraint/
90 => q{MoreLengthPleaseAttr correctly fails [[6,7,8,9],[11,12,13,14]]};
91
92## Test PersonalInfoAttr
93
94lives_ok sub {
95 $obj->PersonalInfoAttr({name=>'John', stats=>[[6,7,8,9,10],[11,12,13,14,15]]});
67a8bc04 96} => 'Set PersonalInfoAttr attribute without error 1';
896f108d 97
98lives_ok sub {
99 $obj->PersonalInfoAttr({name=>'John', stats=>$obj});
67a8bc04 100} => 'Set PersonalInfoAttr attribute without error 2';
896f108d 101
102throws_ok sub {
103 $obj->PersonalInfoAttr({name=>'John', stats=>[[6,7,8,9],[11,12,13,14]]});
104}, qr/Attribute \(PersonalInfoAttr\) does not pass the type constraint/
105 => q{PersonalInfoAttr correctly fails name=>'John', stats=>[[6,7,8,9],[11,12,13,14]]};
106
107throws_ok sub {
108 $obj->PersonalInfoAttr({name=>'John', extra=>1, stats=>[[6,7,8,9,10],[11,12,13,14,15]]});
109}, qr/Attribute \(PersonalInfoAttr\) does not pass the type constraint/
110 => q{PersonalInfoAttr correctly fails name=>'John', extra=>1, stats=>[[6,7,8,9,10],[11,12,13,14,15]]};
111
67a8bc04 112## Test MorePersonalInfo
113
114lives_ok sub {
115 $obj->MorePersonalInfo({name=>'Johnnap', stats=>[[6,7,8,9,10],[11,12,13,14,15]]});
116} => 'Set MorePersonalInfo attribute without error 1';
117
118throws_ok sub {
119 $obj->MorePersonalInfo({name=>'Johnnap', stats=>[[6,7,8,9],[11,12,13,14]]});
120}, qr/Attribute \(MorePersonalInfo\) does not pass the type constraint/
121 => q{MorePersonalInfo correctly fails name=>'Johnnap', stats=>[[6,7,8,9],[11,12,13,14]]};
122
123throws_ok sub {
124 $obj->MorePersonalInfo({name=>'Johnnap', extra=>1, stats=>[[6,7,8,9,10],[11,12,13,14,15]]});
125}, qr/Attribute \(MorePersonalInfo\) does not pass the type constraint/
126 => q{MorePersonalInfo correctly fails name=>'Johnnap', extra=>1, stats=>[[6,7,8,9,10],[11,12,13,14,15]]};
127
a4a88fef 128throws_ok sub {
129 $obj->MorePersonalInfo({name=>'.bc', stats=>[[6,7,8,9,10],[11,12,13,14,15]]});
130}, qr/Attribute \(MorePersonalInfo\) does not pass the type constraint/
131 => q{MorePersonalInfo correctly fails name=>'.bc', stats=>[[6,7,8,9,10],[11,12,13,14,15]]};
132
896f108d 133