Revised Basics Recipe 1 a fair bit ...
[gitmo/Moose.git] / t / 000_recipes / basics / 001_point.t
CommitLineData
fcd84ca9 1#!/usr/bin/perl
2
3use strict;
4use warnings;
5
7ff56534 6use Test::More tests => 57;
bc1e29b5 7use Test::Exception;
fcd84ca9 8
fcd84ca9 9{
fa2985bc 10 package Point;
11 use Moose;
12
a34602e7 13 has 'x' => (isa => 'Int', is => 'rw', required => 1);
14 has 'y' => (isa => 'Int', is => 'rw', required => 1);
fa2985bc 15
16 sub clear {
17 my $self = shift;
a34602e7 18 $self->x(0);
fa2985bc 19 $self->y(0);
20 }
21
22 __PACKAGE__->meta->make_immutable( debug => 0 );
23}
24
25{
26 package Point3D;
27 use Moose;
28
29 extends 'Point';
30
a34602e7 31 has 'z' => (isa => 'Int', is => 'rw', required => 1);
fa2985bc 32
33 after 'clear' => sub {
34 my $self = shift;
a34602e7 35 $self->z(0);
fa2985bc 36 };
37
38 __PACKAGE__->meta->make_immutable( debug => 0 );
fcd84ca9 39}
40
41my $point = Point->new(x => 1, y => 2);
42isa_ok($point, 'Point');
bc1e29b5 43isa_ok($point, 'Moose::Object');
fcd84ca9 44
45is($point->x, 1, '... got the right value for x');
46is($point->y, 2, '... got the right value for y');
47
48$point->y(10);
fcd84ca9 49is($point->y, 10, '... got the right (changed) value for y');
50
a15dff8d 51dies_ok {
52 $point->y('Foo');
53} '... cannot assign a non-Int to y';
54
d7f17ebb 55dies_ok {
a34602e7 56 Point->new();
57} '... must provide required attributes to new';
bc1e29b5 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
89$point3d->clear();
90
91is($point3d->x, 0, '... got the right (cleared) value for x');
92is($point3d->y, 0, '... got the right (cleared) value for y');
a34602e7 93is($point3d->z, 0, '... got the right (cleared) value for z');
a15dff8d 94
95dies_ok {
96 Point3D->new(x => 10, y => 'Foo', z => 3);
97} '... cannot assign a non-Int to y';
98
99dies_ok {
100 Point3D->new(x => 'Foo', y => 10, z => 3);
101} '... cannot assign a non-Int to x';
102
103dies_ok {
104 Point3D->new(x => 0, y => 10, z => 'Bar');
105} '... cannot assign a non-Int to z';
bc1e29b5 106
a34602e7 107dies_ok {
108 Point3D->new(x => 10, y => 3);
109} '... z is a required attribute for Point3D';
110
bc1e29b5 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
2c83d341 128my @Point_methods = qw(meta new 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
a34602e7 160my @Point3D_methods = qw(new meta z 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}