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