Change attr names so they don't overwrite the exported type function
[gitmo/MooseX-Types.git] / t / 13_typedecorator.t
index e22aca5..800554a 100644 (file)
@@ -2,7 +2,7 @@
 use warnings;
 use strict;
 
-use Test::More tests => 52;
+use Test::More tests => 62;
 use Test::Exception;
 use FindBin;
 use lib "$FindBin::Bin/lib";
@@ -16,20 +16,23 @@ use lib "$FindBin::Bin/lib";
     );
     use DecoratorLibrary qw(
         MyArrayRefBase MyArrayRefInt01 MyArrayRefInt02 StrOrArrayRef
-        AtLeastOneInt Jobs SubOfMyArrayRefInt01
+        AtLeastOneInt Jobs SubOfMyArrayRefInt01 WierdIntergersArrayRef1
+        WierdIntergersArrayRef2
     );
     
     has 'arrayrefbase' => (is=>'rw', isa=>MyArrayRefBase, coerce=>1);
     has 'arrayrefint01' => (is=>'rw', isa=>MyArrayRefInt01, coerce=>1);
     has 'arrayrefint02' => (is=>'rw', isa=>MyArrayRefInt02, coerce=>1);
     has 'arrayrefint03' => (is=>'rw', isa=>MyArrayRefBase[Int]);
-    has 'StrOrArrayRef' => (is=>'rw', isa=>StrOrArrayRef);
-    has 'AtLeastOneInt' => (is=>'rw', isa=>AtLeastOneInt);
+    has 'StrOrArrayRef_attr' => (is=>'rw', isa=>StrOrArrayRef);
+    has 'AtLeastOneInt_attr' => (is=>'rw', isa=>AtLeastOneInt);
     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'
@@ -124,31 +127,31 @@ throws_ok sub {
 
 # TEST StrOrArrayRef
 
-ok $type->StrOrArrayRef('string')
+ok $type->StrOrArrayRef_attr('string')
  => 'String part of union is good';
 
-ok $type->StrOrArrayRef([1,2,3])
+ok $type->StrOrArrayRef_attr([1,2,3])
  => 'arrayref part of union is good';
  
 throws_ok sub {
-    $type->StrOrArrayRef({a=>111});
-}, qr/Attribute \(StrOrArrayRef\) does not pass the type constraint/ => 'Correctly failed to use a hashref';
+    $type->StrOrArrayRef_attr({a=>111});
+}, qr/Attribute \(StrOrArrayRef_attr\) does not pass the type constraint/ => 'Correctly failed to use a hashref';
 
 # Test AtLeastOneInt
 
-ok $type->AtLeastOneInt([1,2]),
+ok $type->AtLeastOneInt_attr([1,2]),
  => 'Good assignment';
 
-is_deeply $type->AtLeastOneInt, [1,2]
+is_deeply $type->AtLeastOneInt_attr, [1,2]
  => "Got expected values.";
  
 throws_ok sub {
-    $type->AtLeastOneInt([]);
-}, qr/Attribute \(AtLeastOneInt\) does not pass the type constraint/ => 'properly fails to assign as []';
+    $type->AtLeastOneInt_attr([]);
+}, qr/Attribute \(AtLeastOneInt_attr\) does not pass the type constraint/ => 'properly fails to assign as []';
 
 throws_ok sub {
-    $type->AtLeastOneInt(['a','b']);
-}, qr/Attribute \(AtLeastOneInt\) does not pass the type constraint/ => 'properly fails arrayref of strings';
+    $type->AtLeastOneInt_attr(['a','b']);
+}, qr/Attribute \(AtLeastOneInt_attr\) does not pass the type constraint/ => 'properly fails arrayref of strings';
 
 ## Test pipeoverloading
 
@@ -225,4 +228,55 @@ is_deeply $type->SubOfMyArrayRefInt01_attr, [15,20,25],
  
 throws_ok sub {
     $type->SubOfMyArrayRefInt01_attr([15,5,20]);
-}, qr/Attribute \(SubOfMyArrayRefInt01_attr\) does not pass the type constraint/ => 'SubOfMyArrayRefInt01 Constraints properly fail';
\ No newline at end of file
+}, 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';
+
+
+
+