getting-there
[gitmo/Moose.git] / t / 050_util_type_constraints.t
1 #!/usr/bin/perl
2
3 use strict;
4 use warnings;
5
6 use Test::More tests => 25;
7 use Test::Exception;
8
9 use Scalar::Util ();
10
11 BEGIN {
12     use_ok('Moose::Util::TypeConstraints');           
13 }
14
15 type Num => where { Scalar::Util::looks_like_number($_) };
16 type String => where { !ref($_) && !Num($_) };
17
18 subtype Natural 
19         => as Num 
20         => where { $_ > 0 };
21
22 subtype NaturalLessThanTen 
23         => as Natural
24         => where { $_ < 10 }
25         => message { "The number '$_' is not less than 10" };
26         
27 Moose::Util::TypeConstraints->export_type_contstraints_as_functions();
28
29 is(Num(5), 5, '... this is a Num');
30 ok(!defined(Num('Foo')), '... this is not a Num');
31
32 is(String('Foo'), 'Foo', '... this is a Str');
33 ok(!defined(String(5)), '... this is not a Str');
34
35 is(Natural(5), 5, '... this is a Natural');
36 is(Natural(-5), undef, '... this is not a Natural');
37 is(Natural('Foo'), undef, '... this is not a Natural');
38
39 is(NaturalLessThanTen(5), 5, '... this is a NaturalLessThanTen');
40 is(NaturalLessThanTen(12), undef, '... this is not a NaturalLessThanTen');
41 is(NaturalLessThanTen(-5), undef, '... this is not a NaturalLessThanTen');
42 is(NaturalLessThanTen('Foo'), undef, '... this is not a NaturalLessThanTen');
43         
44 # anon sub-typing       
45         
46 my $negative = subtype Num => where     { $_ < 0 };
47 ok(defined $negative, '... got a value back from negative');
48 isa_ok($negative, 'Moose::Meta::TypeConstraint');
49
50 is($negative->check(-5), -5, '... this is a negative number');
51 ok(!defined($negative->check(5)), '... this is not a negative number');
52 is($negative->check('Foo'), undef, '... this is not a negative number');
53
54 # check some meta-details
55
56 my $natural_less_than_ten = find_type_constraint('NaturalLessThanTen');
57 isa_ok($natural_less_than_ten, 'Moose::Meta::TypeConstraint');
58
59 ok($natural_less_than_ten->has_message, '... it has a message');
60
61 ok(!defined($natural_less_than_ten->validate(5)), '... validated successfully (no error)');
62
63 is($natural_less_than_ten->validate(15), 
64    "The number '15' is not less than 10", 
65    '... validated unsuccessfully (got error)');
66
67 my $natural = find_type_constraint('Natural');
68 isa_ok($natural, 'Moose::Meta::TypeConstraint');
69
70 ok(!$natural->has_message, '... it does not have a message');
71
72 ok(!defined($natural->validate(5)), '... validated successfully (no error)');
73
74 is($natural->validate(-5), 
75   "Validation failed for 'Natural' failed.", 
76   '... validated unsuccessfully (got error)');
77
78