types are no string, you can export if you want
[gitmo/Moose.git] / t / 001_basic.t
1 #!/usr/bin/perl
2
3 use strict;
4 use warnings;
5
6 use Test::More tests => 43;
7 use Test::Exception;
8
9 BEGIN {
10     use_ok('Moose');           
11 }
12
13 {
14         package Point;
15         use strict;
16         use warnings;   
17         use Moose;
18                 
19         has 'x' => (isa => 'Int', is => 'ro');
20         has 'y' => (isa => 'Int', is => 'rw');
21         
22         sub clear {
23             my $self = shift;
24             $self->{x} = 0;
25             $self->y(0);    
26         }
27         
28         package Point3D;
29         use strict;
30         use warnings;
31         use Moose;
32         
33         extends 'Point';
34         
35         has 'z' => (isa => 'Int');
36         
37         after 'clear' => sub {
38             my $self = shift;
39             $self->{z} = 0;
40         };
41         
42 }
43
44 my $point = Point->new(x => 1, y => 2); 
45 isa_ok($point, 'Point');
46 isa_ok($point, 'Moose::Object');
47
48 is($point->x, 1, '... got the right value for x');
49 is($point->y, 2, '... got the right value for y');
50
51 $point->y(10);
52 is($point->y, 10, '... got the right (changed) value for y');
53
54 dies_ok {
55         $point->y('Foo');
56 } '... cannot assign a non-Int to y';
57
58 $point->x(1000);
59 is($point->x, 1, '... got the right (un-changed) value for x');
60
61 $point->clear();
62
63 is($point->x, 0, '... got the right (cleared) value for x');
64 is($point->y, 0, '... got the right (cleared) value for y');
65
66 # check the type constraints on the constructor
67
68 lives_ok {
69         Point->new(x => 0, y => 0);
70 } '... can assign a 0 to x and y';
71
72 dies_ok {
73         Point->new(x => 10, y => 'Foo');
74 } '... cannot assign a non-Int to y';
75
76 dies_ok {
77         Point->new(x => 'Foo', y => 10);
78 } '... cannot assign a non-Int to x';
79
80 # Point3D
81
82 my $point3d = Point3D->new(x => 10, y => 15, z => 3);
83 isa_ok($point3d, 'Point3D');
84 isa_ok($point3d, 'Point');
85 isa_ok($point3d, 'Moose::Object');
86
87 is($point3d->x, 10, '... got the right value for x');
88 is($point3d->y, 15, '... got the right value for y');
89 is($point3d->{'z'}, 3, '... got the right value for z');
90
91 dies_ok {
92         $point3d->z;
93 } '... there is no method for z';
94
95 $point3d->clear();
96
97 is($point3d->x, 0, '... got the right (cleared) value for x');
98 is($point3d->y, 0, '... got the right (cleared) value for y');
99 is($point3d->{'z'}, 0, '... got the right (cleared) value for z');
100
101 dies_ok {
102         Point3D->new(x => 10, y => 'Foo', z => 3);
103 } '... cannot assign a non-Int to y';
104
105 dies_ok {
106         Point3D->new(x => 'Foo', y => 10, z => 3);
107 } '... cannot assign a non-Int to x';
108
109 dies_ok {
110         Point3D->new(x => 0, y => 10, z => 'Bar');
111 } '... cannot assign a non-Int to z';
112
113 # test some class introspection
114
115 can_ok('Point', 'meta');
116 isa_ok(Point->meta, 'Moose::Meta::Class');
117
118 can_ok('Point3D', 'meta');
119 isa_ok(Point3D->meta, 'Moose::Meta::Class');
120
121 isnt(Point->meta, Point3D->meta, '... they are different metaclasses as well');
122
123 # poke at Point
124
125 is_deeply(
126         [ Point->meta->superclasses ],
127         [ 'Moose::Object' ],
128         '... Point got the automagic base class');
129
130 my @Point_methods = qw(meta x y clear);
131 my @Point_attrs   = ('x', 'y');
132
133 is_deeply(
134         [ sort @Point_methods                 ],
135         [ sort Point->meta->get_method_list() ],
136         '... we match the method list for Point');
137         
138 is_deeply(
139         [ sort @Point_attrs                      ],
140         [ sort Point->meta->get_attribute_list() ],
141         '... we match the attribute list for Point');   
142
143 foreach my $method (@Point_methods) {
144         ok(Point->meta->has_method($method), '... Point has the method "' . $method . '"');
145 }
146
147 # poke at Point3D
148
149 is_deeply(
150         [ Point3D->meta->superclasses ],
151         [ 'Point' ],
152         '... Point3D gets the parent given to it');
153
154 my @Point3D_methods = qw(meta clear);
155 my @Point3D_attrs   = ('z');
156
157 is_deeply(
158         [ sort @Point3D_methods                 ],
159         [ sort Point3D->meta->get_method_list() ],
160         '... we match the method list for Point3D');
161         
162 is_deeply(
163         [ sort @Point3D_attrs                      ],
164         [ sort Point3D->meta->get_attribute_list() ],
165         '... we match the attribute list for Point3D'); 
166
167 foreach my $method (@Point3D_methods) {
168         ok(Point3D->meta->has_method($method), '... Point3D has the method "' . $method . '"');
169 }