0_25
[gitmo/Class-MOP.git] / t / 005_attributes.t
CommitLineData
2eb717d5 1#!/usr/bin/perl
2
3use strict;
4use warnings;
5
22286063 6use Test::More tests => 40;
2eb717d5 7use Test::Exception;
8
9BEGIN {
aa448b16 10 use_ok('Class::MOP');
2eb717d5 11}
12
13my $FOO_ATTR = Class::MOP::Attribute->new('$foo');
14my $BAR_ATTR = Class::MOP::Attribute->new('$bar' => (
15 accessor => 'bar'
16));
17my $BAZ_ATTR = Class::MOP::Attribute->new('$baz' => (
18 reader => 'get_baz',
19 writer => 'set_baz',
20));
21
22286063 22my $BAR_ATTR_2 = Class::MOP::Attribute->new('$bar');
23
2eb717d5 24{
25 package Foo;
aa448b16 26 use metaclass;
2eb717d5 27
727919c5 28 my $meta = Foo->meta;
2eb717d5 29 ::lives_ok {
30 $meta->add_attribute($FOO_ATTR);
31 } '... we added an attribute to Foo successfully';
32 ::ok($meta->has_attribute('$foo'), '... Foo has $foo attribute');
33 ::is($meta->get_attribute('$foo'), $FOO_ATTR, '... got the right attribute back for Foo');
34
35 ::ok(!$meta->has_method('foo'), '... no accessor created');
22286063 36
37 ::lives_ok {
38 $meta->add_attribute($BAR_ATTR_2);
39 } '... we added an attribute to Foo successfully';
40 ::ok($meta->has_attribute('$bar'), '... Foo has $bar attribute');
41 ::is($meta->get_attribute('$bar'), $BAR_ATTR_2, '... got the right attribute back for Foo');
42
43 ::ok(!$meta->has_method('bar'), '... no accessor created');
2eb717d5 44}
45{
46 package Bar;
47 our @ISA = ('Foo');
48
727919c5 49 my $meta = Bar->meta;
2eb717d5 50 ::lives_ok {
51 $meta->add_attribute($BAR_ATTR);
52 } '... we added an attribute to Bar successfully';
53 ::ok($meta->has_attribute('$bar'), '... Bar has $bar attribute');
54 ::is($meta->get_attribute('$bar'), $BAR_ATTR, '... got the right attribute back for Bar');
55
56 ::ok($meta->has_method('bar'), '... an accessor has been created');
22286063 57 ::isa_ok($meta->get_method('bar'), 'Class::MOP::Attribute::Accessor');
2eb717d5 58}
59{
60 package Baz;
61 our @ISA = ('Bar');
62
727919c5 63 my $meta = Baz->meta;
2eb717d5 64 ::lives_ok {
65 $meta->add_attribute($BAZ_ATTR);
66 } '... we added an attribute to Baz successfully';
67 ::ok($meta->has_attribute('$baz'), '... Baz has $baz attribute');
68 ::is($meta->get_attribute('$baz'), $BAZ_ATTR, '... got the right attribute back for Baz');
69
70 ::ok($meta->has_method('get_baz'), '... a reader has been created');
71 ::ok($meta->has_method('set_baz'), '... a writer has been created');
72
73 ::isa_ok($meta->get_method('get_baz'), 'Class::MOP::Attribute::Accessor');
74 ::isa_ok($meta->get_method('set_baz'), 'Class::MOP::Attribute::Accessor');
75}
76
77{
78 my $meta = Baz->meta;
79 isa_ok($meta, 'Class::MOP::Class');
80
81 is_deeply(
c9e77dbb 82 [ sort { $a->name cmp $b->name } $meta->compute_all_applicable_attributes() ],
2eb717d5 83 [
c9e77dbb 84 $BAR_ATTR,
85 $BAZ_ATTR,
86 $FOO_ATTR,
2eb717d5 87 ],
88 '... got the right list of applicable attributes for Baz');
c9e77dbb 89
90 is_deeply(
91 [ map { $_->associated_class } sort { $a->name cmp $b->name } $meta->compute_all_applicable_attributes() ],
92 [ Bar->meta, Baz->meta, Foo->meta ],
93 '... got the right list of associated classes from the applicable attributes for Baz');
cbd9f942 94
95 my $attr;
96 lives_ok {
97 $attr = $meta->remove_attribute('$baz');
98 } '... removed the $baz attribute successfully';
99 is($attr, $BAZ_ATTR, '... got the right attribute back for Baz');
100
101 ok(!$meta->has_attribute('$baz'), '... Baz no longer has $baz attribute');
22286063 102 is($meta->get_attribute('$baz'), undef, '... Baz no longer has $baz attribute');
cbd9f942 103
104 ok(!$meta->has_method('get_baz'), '... a reader has been removed');
105 ok(!$meta->has_method('set_baz'), '... a writer has been removed');
106
107 is_deeply(
c9e77dbb 108 [ sort { $a->name cmp $b->name } $meta->compute_all_applicable_attributes() ],
cbd9f942 109 [
c9e77dbb 110 $BAR_ATTR,
111 $FOO_ATTR,
cbd9f942 112 ],
113 '... got the right list of applicable attributes for Baz');
114
c9e77dbb 115 is_deeply(
116 [ map { $_->associated_class } sort { $a->name cmp $b->name } $meta->compute_all_applicable_attributes() ],
117 [ Bar->meta, Foo->meta ],
118 '... got the right list of associated classes from the applicable attributes for Baz');
119
cbd9f942 120 {
121 my $attr;
122 lives_ok {
123 $attr = Bar->meta->remove_attribute('$bar');
124 } '... removed the $bar attribute successfully';
125 is($attr, $BAR_ATTR, '... got the right attribute back for Bar');
2eb717d5 126
cbd9f942 127 ok(!Bar->meta->has_attribute('$bar'), '... Bar no longer has $bar attribute');
2eb717d5 128
cbd9f942 129 ok(!Bar->meta->has_method('bar'), '... a accessor has been removed');
130 }
131
132 is_deeply(
c9e77dbb 133 [ sort { $a->name cmp $b->name } $meta->compute_all_applicable_attributes() ],
cbd9f942 134 [
22286063 135 $BAR_ATTR_2,
c9e77dbb 136 $FOO_ATTR,
cbd9f942 137 ],
138 '... got the right list of applicable attributes for Baz');
139
c9e77dbb 140 is_deeply(
141 [ map { $_->associated_class } sort { $a->name cmp $b->name } $meta->compute_all_applicable_attributes() ],
22286063 142 [ Foo->meta, Foo->meta ],
c9e77dbb 143 '... got the right list of associated classes from the applicable attributes for Baz');
144
22286063 145 # remove attribute which is not there
146 my $val;
147 lives_ok {
148 $val = $meta->remove_attribute('$blammo');
149 } '... attempted to remove the non-existent $blammo attribute';
150 is($val, undef, '... got the right value back (undef)');
151
cbd9f942 152}