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