incremented version and updated changelog, fixed bug that created extra coercions...
[gitmo/MooseX-Types.git] / t / 13_typedecorator.t
1 #!/usr/bin/env perl
2 use warnings;
3 use strict;
4
5 use Test::More tests => 39;
6 use Test::Exception;
7 use FindBin;
8 use lib "$FindBin::Bin/lib";
9
10 {
11     package Test::MooseX::TypeLibrary::TypeDecorator;
12     
13     use Moose;
14     use MooseX::Types::Moose qw(
15         Int Str ArrayRef HashRef
16     );
17     use DecoratorLibrary qw(
18         MyArrayRefBase MyArrayRefInt01 MyArrayRefInt02 StrOrArrayRef
19         AtLeastOneInt 
20     );
21     
22     has 'arrayrefbase' => (is=>'rw', isa=>MyArrayRefBase, coerce=>1);
23     has 'arrayrefint01' => (is=>'rw', isa=>MyArrayRefInt01, coerce=>1);
24     has 'arrayrefint02' => (is=>'rw', isa=>MyArrayRefInt02, coerce=>1);
25     has 'arrayrefint03' => (is=>'rw', isa=>MyArrayRefBase[Int]);
26     has 'StrOrArrayRef' => (is=>'rw', isa=>StrOrArrayRef);
27     has 'AtLeastOneInt' => (is=>'rw', isa=>AtLeastOneInt);
28     has 'pipeoverloading' => (is=>'rw', isa=>Int|Str);
29     #has 'deep' => (is=>'rw', isa=>ArrayRef([ArrayRef([HashRef([Int])])]));
30     
31     has 'deep' => (is=>'rw', isa=>ArrayRef[ArrayRef[HashRef[Int]]] );
32     
33 }
34
35 ## Make sure we have a 'create object sanity check'
36
37 ok my $type = Test::MooseX::TypeLibrary::TypeDecorator->new(),
38  => 'Created some sort of object';
39  
40 isa_ok $type, 'Test::MooseX::TypeLibrary::TypeDecorator'
41  => "Yes, it's the correct kind of object";
42
43 ## test arrayrefbase normal and coercion
44
45 ok $type->arrayrefbase([qw(a b c d e)])
46  => 'Assigned arrayrefbase qw(a b c d e)';
47  
48 is_deeply $type->arrayrefbase, [qw(a b c d e)],
49  => 'Assignment is correct';
50
51 ok $type->arrayrefbase('d,e,f')
52  => 'Assignment arrayrefbase d,e,f to test coercion';
53  
54 is_deeply $type->arrayrefbase, [qw(d e f)],
55  => 'Assignment and coercion is correct';
56
57 ## test arrayrefint01 normal and coercion
58
59 ok $type->arrayrefint01([qw(1 2 3)])
60  => 'Assignment arrayrefint01 qw(1 2 3)';
61  
62 is_deeply $type->arrayrefint01, [qw(1 2 3)],
63  => 'Assignment is correct';
64
65 ok $type->arrayrefint01('4.5.6')
66  => 'Assigned arrayrefint01 4.5.6 to test coercion from Str';
67  
68 is_deeply $type->arrayrefint01, [qw(4 5 6)],
69  => 'Assignment and coercion is correct';
70
71 ok $type->arrayrefint01({a=>7,b=>8})
72  => 'Assigned arrayrefint01 {a=>7,b=>8} to test coercion from HashRef';
73  
74 is_deeply $type->arrayrefint01, [qw(7 8)],
75  => 'Assignment and coercion is correct';
76  
77 throws_ok sub {
78     $type->arrayrefint01([qw(a b c)])
79 }, qr/Attribute \(arrayrefint01\) does not pass the type constraint/ => 'Dies when values are strings';
80
81 ## test arrayrefint02 normal and coercion
82
83 ok $type->arrayrefint02([qw(1 2 3)])
84  => 'Assigned arrayrefint02 qw(1 2 3)';
85  
86 is_deeply $type->arrayrefint02, [qw(1 2 3)],
87  => 'Assignment is correct';
88
89 ok $type->arrayrefint02('4:5:6')
90  => 'Assigned arrayrefint02 4:5:6 to test coercion from Str';
91  
92 is_deeply $type->arrayrefint02, [qw(4 5 6)],
93  => 'Assignment and coercion is correct';
94
95 ok $type->arrayrefint02({a=>7,b=>8})
96  => 'Assigned arrayrefint02 {a=>7,b=>8} to test coercion from HashRef';
97  
98 is_deeply $type->arrayrefint02, [qw(7 8)],
99  => 'Assignment and coercion is correct';
100  
101 ok $type->arrayrefint02({a=>'AA',b=>'BBB', c=>'CCCCCCC'})
102  => "Assigned arrayrefint02 {a=>'AA',b=>'BBB', c=>'CCCCCCC'} to test coercion from HashRef";
103  
104 is_deeply $type->arrayrefint02, [qw(2 3 7)],
105  => 'Assignment and coercion is correct';
106
107 ok $type->arrayrefint02({a=>[1,2],b=>[3,4]})
108  => "Assigned arrayrefint02 {a=>[1,2],b=>[3,4]} to test coercion from HashRef";
109  
110 is_deeply $type->arrayrefint02, [qw(1 2 3 4)],
111  => 'Assignment and coercion is correct';
112  
113 # test arrayrefint03 
114
115 ok $type->arrayrefint03([qw(11 12 13)])
116  => 'Assigned arrayrefint01 qw(11 12 13)';
117  
118 is_deeply $type->arrayrefint03, [qw(11 12 13)],
119  => 'Assignment is correct';
120  
121 throws_ok sub {
122     $type->arrayrefint03([qw(a b c)])
123 }, qr/Attribute \(arrayrefint03\) does not pass the type constraint/ => 'Dies when values are strings';
124
125 # TEST StrOrArrayRef
126
127 ok $type->StrOrArrayRef('string')
128  => 'String part of union is good';
129
130 ok $type->StrOrArrayRef([1,2,3])
131  => 'arrayref part of union is good';
132  
133 throws_ok sub {
134     $type->StrOrArrayRef({a=>111});
135 }, qr/Attribute \(StrOrArrayRef\) does not pass the type constraint/ => 'Correctly failed to use a hashref';
136
137 # Test AtLeastOneInt
138
139 ok $type->AtLeastOneInt([1,2]),
140  => 'Good assignment';
141
142 is_deeply $type->AtLeastOneInt, [1,2]
143  => "Got expected values.";
144  
145 throws_ok sub {
146     $type->AtLeastOneInt([]);
147 }, qr/Attribute \(AtLeastOneInt\) does not pass the type constraint/ => 'properly fails';
148
149 throws_ok sub {
150     $type->AtLeastOneInt(['a','b']);
151 }, qr/Attribute \(AtLeastOneInt\) does not pass the type constraint/ => 'properly fails arrayref of strings';
152
153 ## Test pipeoverloading
154
155 ok $type->pipeoverloading(1)
156  => 'Integer for union test accepted';
157  
158 ok $type->pipeoverloading('a')
159  => 'String for union test accepted';
160
161 throws_ok sub {
162     $type->pipeoverloading({a=>1,b=>2});
163 }, qr/Validation failed for 'Int | Str'/ => 'Union test corrected fails a HashRef';
164
165 ## test deep
166
167 ok $type->deep([[{a=>1,b=>2},{c=>3,d=>4}],[{e=>5}]])
168  => 'Assigned deep to [[{a=>1,b=>2},{c=>3,d=>4}],[{e=>5}]]';
169
170 is_deeply $type->deep, [[{a=>1,b=>2},{c=>3,d=>4}],[{e=>5}]],
171  => 'Assignment is correct';
172  
173 throws_ok sub {
174     $type->deep({a=>1,b=>2});
175 }, qr/Attribute \(deep\) does not pass the type constraint/ => 'Deep Constraints properly fail';