Convert all tests to done_testing.
[gitmo/Moose.git] / t / 040_type_constraints / 023_types_and_undef.t
1 #!/usr/bin/perl
2
3 use strict;
4 use warnings;
5
6 use Test::More;
7 use Test::Exception;
8
9
10 {
11     package Foo;
12     use Moose;
13     use Moose::Util::TypeConstraints;
14
15     use Scalar::Util ();
16
17     type Number
18         => where { defined($_) && !ref($_) && Scalar::Util::looks_like_number($_) };
19
20     type String
21         => where { defined($_) && !ref($_) && !Scalar::Util::looks_like_number($_) };
22
23     has vUndef   => ( is => 'rw', isa => 'Undef'   );
24     has vDefined => ( is => 'rw', isa => 'Defined' );
25     has vInt     => ( is => 'rw', isa => 'Int'     );
26     has vNumber  => ( is => 'rw', isa => 'Number'  );
27     has vStr     => ( is => 'rw', isa => 'Str'     );
28     has vString  => ( is => 'rw', isa => 'String'  );
29
30     has v_lazy_Undef   => ( is => 'rw', lazy => 1,  default => sub { undef }, isa => 'Undef'   );
31     has v_lazy_Defined => ( is => 'rw', lazy => 1,  default => sub { undef }, isa => 'Defined' );
32     has v_lazy_Int     => ( is => 'rw', lazy => 1,  default => sub { undef }, isa => 'Int'     );
33     has v_lazy_Number  => ( is => 'rw', lazy => 1,  default => sub { undef }, isa => 'Number'  );
34     has v_lazy_Str     => ( is => 'rw', lazy => 1,  default => sub { undef }, isa => 'Str'     );
35     has v_lazy_String  => ( is => 'rw', lazy => 1,  default => sub { undef }, isa => 'String'  );
36 }
37
38 #    EXPORT TYPE CONSTRAINTS
39 #
40 Moose::Util::TypeConstraints->export_type_constraints_as_functions;
41
42 ok( Undef(undef),   '... undef is a Undef');
43 ok(!Defined(undef), '... undef is NOT a Defined');
44 ok(!Int(undef),     '... undef is NOT an Int');
45 ok(!Number(undef),  '... undef is NOT a Number');
46 ok(!Str(undef),     '... undef is NOT a Str');
47 ok(!String(undef),  '... undef is NOT a String');
48
49 ok(!Undef(5),  '... 5 is a NOT a Undef');
50 ok(Defined(5), '... 5 is a Defined');
51 ok(Int(5),     '... 5 is an Int');
52 ok(Number(5),  '... 5 is a Number');
53 ok(Str(5),     '... 5 is a Str');
54 ok(!String(5), '... 5 is NOT a String');
55
56 ok(!Undef(0.5),  '... 0.5 is a NOT a Undef');
57 ok(Defined(0.5), '... 0.5 is a Defined');
58 ok(!Int(0.5),    '... 0.5 is NOT an Int');
59 ok(Number(0.5),  '... 0.5 is a Number');
60 ok(Str(0.5),     '... 0.5 is a Str');
61 ok(!String(0.5), '... 0.5 is NOT a String');
62
63 ok(!Undef('Foo'),  '... "Foo" is NOT a Undef');
64 ok(Defined('Foo'), '... "Foo" is a Defined');
65 ok(!Int('Foo'),    '... "Foo" is NOT an Int');
66 ok(!Number('Foo'), '... "Foo" is NOT a Number');
67 ok(Str('Foo'),     '... "Foo" is a Str');
68 ok(String('Foo'),  '... "Foo" is a String');
69
70
71 my $foo = Foo->new;
72
73 lives_ok { $foo->vUndef(undef) } '... undef is a Foo->Undef';
74 dies_ok { $foo->vDefined(undef) } '... undef is NOT a Foo->Defined';
75 dies_ok { $foo->vInt(undef) } '... undef is NOT a Foo->Int';
76 dies_ok { $foo->vNumber(undef) } '... undef is NOT a Foo->Number';
77 dies_ok { $foo->vStr(undef) } '... undef is NOT a Foo->Str';
78 dies_ok { $foo->vString(undef) } '... undef is NOT a Foo->String';
79
80 dies_ok { $foo->vUndef(5) } '... 5 is NOT a Foo->Undef';
81 lives_ok { $foo->vDefined(5) } '... 5 is a Foo->Defined';
82 lives_ok { $foo->vInt(5) } '... 5 is a Foo->Int';
83 lives_ok { $foo->vNumber(5) } '... 5 is a Foo->Number';
84 lives_ok { $foo->vStr(5) } '... 5 is a Foo->Str';
85 dies_ok { $foo->vString(5) } '... 5 is NOT a Foo->String';
86
87 dies_ok { $foo->vUndef(0.5) } '... 0.5 is NOT a Foo->Undef';
88 lives_ok { $foo->vDefined(0.5) } '... 0.5 is a Foo->Defined';
89 dies_ok { $foo->vInt(0.5) } '... 0.5 is NOT a Foo->Int';
90 lives_ok { $foo->vNumber(0.5) } '... 0.5 is a Foo->Number';
91 lives_ok { $foo->vStr(0.5) } '... 0.5 is a Foo->Str';
92 dies_ok { $foo->vString(0.5) } '... 0.5 is NOT a Foo->String';
93
94 dies_ok { $foo->vUndef('Foo') } '... "Foo" is NOT a Foo->Undef';
95 lives_ok { $foo->vDefined('Foo') } '... "Foo" is a Foo->Defined';
96 dies_ok { $foo->vInt('Foo') } '... "Foo" is NOT a Foo->Int';
97 dies_ok { $foo->vNumber('Foo') } '... "Foo" is NOT a Foo->Number';
98 lives_ok { $foo->vStr('Foo') } '... "Foo" is a Foo->Str';
99 lives_ok { $foo->vString('Foo') } '... "Foo" is a Foo->String';
100
101 # the lazy tests
102
103 lives_ok { $foo->v_lazy_Undef() } '... undef is a Foo->Undef';
104 dies_ok { $foo->v_lazy_Defined() } '... undef is NOT a Foo->Defined';
105 dies_ok { $foo->v_lazy_Int() } '... undef is NOT a Foo->Int';
106 dies_ok { $foo->v_lazy_Number() } '... undef is NOT a Foo->Number';
107 dies_ok { $foo->v_lazy_Str() } '... undef is NOT a Foo->Str';
108 dies_ok { $foo->v_lazy_String() } '... undef is NOT a Foo->String';
109
110 done_testing;