more $: $. and whatnot cleanups
[gitmo/Class-MOP.git] / t / 013_add_attribute_alternate.t
CommitLineData
2e41896e 1#!/usr/bin/perl
2
3use strict;
4use warnings;
5
b9dfbf78 6use Test::More tests => 28;
2e41896e 7use Test::Exception;
8
9BEGIN {
aa448b16 10 use_ok('Class::MOP');
2e41896e 11}
12
13{
14 package Point;
aa448b16 15 use metaclass;
2e41896e 16
1aeb4c53 17 Point->meta->add_attribute('x' => (
2e41896e 18 reader => 'x',
19 init_arg => 'x'
20 ));
21
1aeb4c53 22 Point->meta->add_attribute('y' => (
2e41896e 23 accessor => 'y',
24 init_arg => 'y'
25 ));
26
27 sub new {
28 my $class = shift;
29 bless $class->meta->construct_instance(@_) => $class;
30 }
31
32 sub clear {
33 my $self = shift;
1aeb4c53 34 $self->{'x'} = 0;
35 $self->{'y'} = 0;
2e41896e 36 }
37
38 package Point3D;
39 our @ISA = ('Point');
40
1aeb4c53 41 Point3D->meta->add_attribute('z' => (
2e41896e 42 default => 123
43 ));
44
45 sub clear {
46 my $self = shift;
1aeb4c53 47 $self->{'z'} = 0;
2e41896e 48 $self->SUPER::clear();
49 }
50}
51
52isa_ok(Point->meta, 'Class::MOP::Class');
53isa_ok(Point3D->meta, 'Class::MOP::Class');
54
55# ... test the classes themselves
56
57my $point = Point->new('x' => 2, 'y' => 3);
58isa_ok($point, 'Point');
59
60can_ok($point, 'x');
61can_ok($point, 'y');
62can_ok($point, 'clear');
63
64{
65 my $meta = $point->meta;
66 is($meta, Point->meta(), '... got the meta from the instance too');
67}
68
1aeb4c53 69is($point->y, 3, '... the y attribute was initialized correctly through the metaobject');
2e41896e 70
71$point->y(42);
1aeb4c53 72is($point->y, 42, '... the y attribute was set properly with the accessor');
2e41896e 73
1aeb4c53 74is($point->x, 2, '... the x attribute was initialized correctly through the metaobject');
2e41896e 75
b9dfbf78 76dies_ok {
77 $point->x(42);
78} '... cannot write to a read-only accessor';
1aeb4c53 79is($point->x, 2, '... the x attribute was not altered');
2e41896e 80
81$point->clear();
82
1aeb4c53 83is($point->y, 0, '... the y attribute was cleared correctly');
84is($point->x, 0, '... the x attribute was cleared correctly');
2e41896e 85
1aeb4c53 86my $point3d = Point3D->new('x' => 1, 'y' => 2, 'z' => 3);
2e41896e 87isa_ok($point3d, 'Point3D');
88isa_ok($point3d, 'Point');
89
90{
91 my $meta = $point3d->meta;
92 is($meta, Point3D->meta(), '... got the meta from the instance too');
93}
94
95can_ok($point3d, 'x');
96can_ok($point3d, 'y');
97can_ok($point3d, 'clear');
98
1aeb4c53 99is($point3d->x, 1, '... the x attribute was initialized correctly through the metaobject');
100is($point3d->y, 2, '... the y attribute was initialized correctly through the metaobject');
101is($point3d->{'z'}, 3, '... the z attribute was initialized correctly through the metaobject');
2e41896e 102
103{
104 my $point3d = Point3D->new();
105 isa_ok($point3d, 'Point3D');
106
1aeb4c53 107 is($point3d->x, undef, '... the x attribute was not initialized');
108 is($point3d->y, undef, '... the y attribute was not initialized');
109 is($point3d->{'z'}, 123, '... the z attribute was initialized correctly through the metaobject');
2e41896e 110
111}