6 use Test::More tests => 58;
17 has 'x' => (isa => 'Int', is => 'ro');
18 has 'y' => (isa => 'Int', is => 'rw');
26 __PACKAGE__->meta->make_immutable(debug => 0);
33 has 'z' => (isa => 'Int');
35 after 'clear' => sub {
40 __PACKAGE__->meta->make_immutable(debug => 0);
43 my $point = Point->new(x => 1, y => 2);
44 isa_ok($point, 'Point');
45 isa_ok($point, 'Moose::Object');
47 is($point->x, 1, '... got the right value for x');
48 is($point->y, 2, '... got the right value for y');
51 is($point->y, 10, '... got the right (changed) value for y');
55 } '... cannot assign a non-Int to y';
59 } '... cannot assign to a read-only method';
60 is($point->x, 1, '... got the right (un-changed) value for x');
64 is($point->x, 0, '... got the right (cleared) value for x');
65 is($point->y, 0, '... got the right (cleared) value for y');
67 # check the type constraints on the constructor
70 Point->new(x => 0, y => 0);
71 } '... can assign a 0 to x and y';
74 Point->new(x => 10, y => 'Foo');
75 } '... cannot assign a non-Int to y';
78 Point->new(x => 'Foo', y => 10);
79 } '... cannot assign a non-Int to x';
83 my $point3d = Point3D->new({ x => 10, y => 15, z => 3 });
84 isa_ok($point3d, 'Point3D');
85 isa_ok($point3d, 'Point');
86 isa_ok($point3d, 'Moose::Object');
88 is($point3d->x, 10, '... got the right value for x');
89 is($point3d->y, 15, '... got the right value for y');
90 is($point3d->{'z'}, 3, '... got the right value for z');
94 } '... there is no method for z';
98 is($point3d->x, 0, '... got the right (cleared) value for x');
99 is($point3d->y, 0, '... got the right (cleared) value for y');
100 is($point3d->{'z'}, 0, '... got the right (cleared) value for z');
103 Point3D->new(x => 10, y => 'Foo', z => 3);
104 } '... cannot assign a non-Int to y';
107 Point3D->new(x => 'Foo', y => 10, z => 3);
108 } '... cannot assign a non-Int to x';
111 Point3D->new(x => 0, y => 10, z => 'Bar');
112 } '... cannot assign a non-Int to z';
114 # test some class introspection
116 can_ok('Point', 'meta');
117 isa_ok(Point->meta, 'Moose::Meta::Class');
119 can_ok('Point3D', 'meta');
120 isa_ok(Point3D->meta, 'Moose::Meta::Class');
122 isnt(Point->meta, Point3D->meta, '... they are different metaclasses as well');
127 [ Point->meta->superclasses ],
129 '... Point got the automagic base class');
131 my @Point_methods = qw(meta new x y clear);
132 my @Point_attrs = ('x', 'y');
135 [ sort @Point_methods ],
136 [ sort Point->meta->get_method_list() ],
137 '... we match the method list for Point');
140 [ sort @Point_attrs ],
141 [ sort Point->meta->get_attribute_list() ],
142 '... we match the attribute list for Point');
144 foreach my $method (@Point_methods) {
145 ok(Point->meta->has_method($method), '... Point has the method "' . $method . '"');
148 foreach 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');
159 [ Point3D->meta->superclasses ],
161 '... Point3D gets the parent given to it');
163 my @Point3D_methods = qw(new meta clear);
164 my @Point3D_attrs = ('z');
167 [ sort @Point3D_methods ],
168 [ sort Point3D->meta->get_method_list() ],
169 '... we match the method list for Point3D');
172 [ sort @Point3D_attrs ],
173 [ sort Point3D->meta->get_attribute_list() ],
174 '... we match the attribute list for Point3D');
176 foreach my $method (@Point3D_methods) {
177 ok(Point3D->meta->has_method($method), '... Point3D has the method "' . $method . '"');
180 foreach 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');