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