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