X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F13_typedecorator.t;h=c9b20d41c844555a824fb3eea6601db867f416fa;hb=cf18f4e1ec1cfeba0d8feb98139214cd41135011;hp=c225938dbd8f5a6bd017d01faf93a7b01ac2f167;hpb=d9002a8523567e24b0787a81d891928f937bd6af;p=gitmo%2FMooseX-Types.git diff --git a/t/13_typedecorator.t b/t/13_typedecorator.t index c225938..c9b20d4 100644 --- a/t/13_typedecorator.t +++ b/t/13_typedecorator.t @@ -2,7 +2,7 @@ use warnings; use strict; -use Test::More tests => 47; +use Test::More tests => 62; use Test::Exception; use FindBin; use lib "$FindBin::Bin/lib"; @@ -16,7 +16,8 @@ use lib "$FindBin::Bin/lib"; ); use DecoratorLibrary qw( MyArrayRefBase MyArrayRefInt01 MyArrayRefInt02 StrOrArrayRef - AtLeastOneInt + AtLeastOneInt Jobs SubOfMyArrayRefInt01 WierdIntergersArrayRef1 + WierdIntergersArrayRef2 ); has 'arrayrefbase' => (is=>'rw', isa=>MyArrayRefBase, coerce=>1); @@ -28,6 +29,10 @@ use lib "$FindBin::Bin/lib"; has 'pipeoverloading' => (is=>'rw', isa=>Int|Str); has 'deep' => (is=>'rw', isa=>ArrayRef[ArrayRef[HashRef[Int]]] ); has 'deep2' => (is=>'rw', isa=>ArrayRef[Int|ArrayRef[HashRef[Int|Object]]] ); + has 'enum' => (is=>'rw', isa=>Jobs); + has 'SubOfMyArrayRefInt01_attr' => (is=>'rw', isa=>SubOfMyArrayRefInt01); + has 'WierdIntergersArrayRef1_attr' => (is=>'rw', isa=>WierdIntergersArrayRef1); + has 'WierdIntergersArrayRef2_attr' => (is=>'rw', isa=>WierdIntergersArrayRef2); } ## Make sure we have a 'create object sanity check' @@ -202,3 +207,76 @@ ok $type->deep2([1,2,3]) is_deeply $type->deep2, [1,2,3], => 'Assignment is correct'; + +## Test jobs + +ok $type->enum('Programming') + => 'Good Assignment of Programming to Enum'; + + +throws_ok sub { + $type->enum('ddddd'); +}, qr/Attribute \(enum\) does not pass the type constraint/ => 'Enum properly fails'; + +## Test SubOfMyArrayRefInt01_attr + +ok $type->SubOfMyArrayRefInt01_attr([15,20,25]) + => 'Assigned SubOfMyArrayRefInt01_attr to [15,20,25]'; + +is_deeply $type->SubOfMyArrayRefInt01_attr, [15,20,25], + => 'Assignment is correct'; + +throws_ok sub { + $type->SubOfMyArrayRefInt01_attr([15,5,20]); +}, qr/Attribute \(SubOfMyArrayRefInt01_attr\) does not pass the type constraint/ + => 'SubOfMyArrayRefInt01 Constraints properly fail'; + +## test WierdIntergersArrayRef1 + +ok $type->WierdIntergersArrayRef1_attr([5,10,1000]) + => 'Assigned deep2 to [5,10,1000]'; + +is_deeply $type->WierdIntergersArrayRef1_attr, [5,10,1000], + => 'Assignment is correct'; + +throws_ok sub { + $type->WierdIntergersArrayRef1_attr({a=>1,b=>2}); +}, qr/Attribute \(WierdIntergersArrayRef1_attr\) does not pass the type constraint/ + => 'Constraints properly fail'; + +throws_ok sub { + $type->WierdIntergersArrayRef1_attr([5,10,1]); +}, qr/Attribute \(WierdIntergersArrayRef1_attr\) does not pass the type constraint/ + => 'Constraints properly fail'; + +throws_ok sub { + $type->WierdIntergersArrayRef1_attr([1]); +}, qr/Attribute \(WierdIntergersArrayRef1_attr\) does not pass the type constraint/ + => 'Constraints properly fail'; + +## test WierdIntergersArrayRef2 + +ok $type->WierdIntergersArrayRef2_attr([5,10,$type]) + => 'Assigned deep2 to [5,10,$type]'; + +is_deeply $type->WierdIntergersArrayRef2_attr, [5,10,$type], + => 'Assignment is correct'; + +throws_ok sub { + $type->WierdIntergersArrayRef2_attr({a=>1,b=>2}); +}, qr/Attribute \(WierdIntergersArrayRef2_attr\) does not pass the type constraint/ + => 'Constraints properly fail'; + +throws_ok sub { + $type->WierdIntergersArrayRef2_attr([5,10,1]); +}, qr/Attribute \(WierdIntergersArrayRef2_attr\) does not pass the type constraint/ + => 'Constraints properly fail'; + +throws_ok sub { + $type->WierdIntergersArrayRef2_attr([1]); +}, qr/Attribute \(WierdIntergersArrayRef2_attr\) does not pass the type constraint/ + => 'Constraints properly fail'; + + + +