Inherited attributes may now be extended without restriction
[gitmo/Moose.git] / t / 020_attributes / 009_attribute_inherited_slot_specs.t
CommitLineData
1d768fb1 1#!/usr/bin/perl
2
3use strict;
4use warnings;
5
238b424d 6use Test::More tests => 84;
1d768fb1 7use Test::Exception;
8
9BEGIN {
ce0e8d63 10 use_ok('Moose');
1d768fb1 11}
12
1d768fb1 13{
83cc9094 14 package Thing;
15 use Moose;
16
17 sub hello { 'Hello World (from Thing)' }
18 sub goodbye { 'Goodbye World (from Thing)' }
19
1d768fb1 20 package Foo;
1d768fb1 21 use Moose;
ce0e8d63 22 use Moose::Util::TypeConstraints;
23
24 subtype 'FooStr'
25 => as 'Str'
26 => where { /Foo/ };
27
28 coerce 'FooStr'
29 => from ArrayRef
30 => via { 'FooArrayRef' };
1d768fb1 31
32 has 'bar' => (is => 'ro', isa => 'Str', default => 'Foo::bar');
ce0e8d63 33 has 'baz' => (is => 'rw', isa => 'Ref');
34 has 'foo' => (is => 'rw', isa => 'FooStr');
35
83cc9094 36 has 'gorch' => (is => 'ro');
37 has 'gloum' => (is => 'ro', default => sub {[]});
38
39 has 'bling' => (is => 'ro', isa => 'Thing');
40 has 'blang' => (is => 'ro', isa => 'Thing', handles => ['goodbye']);
ce0e8d63 41
f3c4e20e 42 has 'bunch_of_stuff' => (is => 'rw', isa => 'ArrayRef');
238b424d 43
44 has 'one_last_one' => (is => 'rw', isa => 'Ref');
f3c4e20e 45
ce0e8d63 46 # this one will work here ....
47 has 'fail' => (isa => 'CodeRef');
48 has 'other_fail';
1d768fb1 49
50 package Bar;
1d768fb1 51 use Moose;
238b424d 52 use Moose::Util::TypeConstraints;
1d768fb1 53
54 extends 'Foo';
83cc9094 55
56 ::lives_ok {
57 has '+bar' => (default => 'Bar::bar');
58 } '... we can change the default attribute option';
59
60 ::lives_ok {
61 has '+baz' => (isa => 'ArrayRef');
62 } '... we can add change the isa as long as it is a subtype';
1d768fb1 63
83cc9094 64 ::lives_ok {
65 has '+foo' => (coerce => 1);
66 } '... we can change/add coerce as an attribute option';
67
68 ::lives_ok {
69 has '+gorch' => (required => 1);
70 } '... we can change/add required as an attribute option';
71
72 ::lives_ok {
73 has '+gloum' => (lazy => 1);
74 } '... we can change/add lazy as an attribute option';
f3c4e20e 75
76 ::lives_ok {
77 has '+bunch_of_stuff' => (isa => 'ArrayRef[Int]');
78 } '... extend an attribute with parameterized type';
ce0e8d63 79
83cc9094 80 ::lives_ok {
238b424d 81 has '+one_last_one' => (isa => subtype('Ref', where { blessed $_ eq 'CODE' }));
82 } '... extend an attribute with anon-subtype';
83
5e98d2b6 84 ::lives_ok {
238b424d 85 has '+one_last_one' => (isa => 'Value');
5e98d2b6 86 } '... now can extend an attribute with a non-subtype';
238b424d 87
88 ::lives_ok {
83cc9094 89 has '+bling' => (handles => ['hello']);
90 } '... we can add the handles attribute option';
ce0e8d63 91
92 # this one will *not* work here ....
83cc9094 93 ::dies_ok {
94 has '+blang' => (handles => ['hello']);
95 } '... we can not alter the handles attribute option';
5e98d2b6 96 ::lives_ok {
ce0e8d63 97 has '+fail' => (isa => 'Ref');
5e98d2b6 98 } '... can now create an attribute with an improper subtype relation';
ce0e8d63 99 ::dies_ok {
100 has '+other_fail' => (trigger => sub {});
101 } '... cannot create an attribute with an illegal option';
102 ::dies_ok {
103 has '+other_fail' => (weak_ref => 1);
238b424d 104 } '... cannot create an attribute with an illegal option';
105 ::dies_ok {
106 has '+other_fail' => (isa => 'WangDoodle');
107 } '... cannot create an attribute with a non-existent type';
ce0e8d63 108
1d768fb1 109}
110
111my $foo = Foo->new;
112isa_ok($foo, 'Foo');
113
ce0e8d63 114is($foo->foo, undef, '... got the right undef default value');
115lives_ok { $foo->foo('FooString') } '... assigned foo correctly';
116is($foo->foo, 'FooString', '... got the right value for foo');
1d768fb1 117
ce0e8d63 118dies_ok { $foo->foo([]) } '... foo is not coercing (as expected)';
119
120is($foo->bar, 'Foo::bar', '... got the right default value');
1d768fb1 121dies_ok { $foo->bar(10) } '... Foo::bar is a read/only attr';
122
ce0e8d63 123is($foo->baz, undef, '... got the right undef default value');
124
125{
126 my $hash_ref = {};
127 lives_ok { $foo->baz($hash_ref) } '... Foo::baz accepts hash refs';
128 is($foo->baz, $hash_ref, '... got the right value assigned to baz');
129
130 my $array_ref = [];
131 lives_ok { $foo->baz($array_ref) } '... Foo::baz accepts an array ref';
132 is($foo->baz, $array_ref, '... got the right value assigned to baz');
133
134 my $scalar_ref = \(my $var);
135 lives_ok { $foo->baz($scalar_ref) } '... Foo::baz accepts scalar ref';
136 is($foo->baz, $scalar_ref, '... got the right value assigned to baz');
137
f3c4e20e 138 lives_ok { $foo->bunch_of_stuff([qw[one two three]]) } '... Foo::bunch_of_stuff accepts an array of strings';
139
238b424d 140 lives_ok { $foo->one_last_one(sub { 'Hello World'}) } '... Foo::one_last_one accepts a code ref';
141
ce0e8d63 142 my $code_ref = sub { 1 };
143 lives_ok { $foo->baz($code_ref) } '... Foo::baz accepts a code ref';
144 is($foo->baz, $code_ref, '... got the right value assigned to baz');
145}
146
147dies_ok {
148 Bar->new;
149} '... cannot create Bar without required gorch param';
150
151my $bar = Bar->new(gorch => 'Bar::gorch');
1d768fb1 152isa_ok($bar, 'Bar');
153isa_ok($bar, 'Foo');
154
ce0e8d63 155is($bar->foo, undef, '... got the right undef default value');
156lives_ok { $bar->foo('FooString') } '... assigned foo correctly';
157is($bar->foo, 'FooString', '... got the right value for foo');
158lives_ok { $bar->foo([]) } '... assigned foo correctly';
159is($bar->foo, 'FooArrayRef', '... got the right value for foo');
160
161is($bar->gorch, 'Bar::gorch', '... got the right default value');
1d768fb1 162
ce0e8d63 163is($bar->bar, 'Bar::bar', '... got the right default value');
1d768fb1 164dies_ok { $bar->bar(10) } '... Bar::bar is a read/only attr';
165
ce0e8d63 166is($bar->baz, undef, '... got the right undef default value');
167
168{
169 my $hash_ref = {};
170 dies_ok { $bar->baz($hash_ref) } '... Bar::baz does not accept hash refs';
171
172 my $array_ref = [];
173 lives_ok { $bar->baz($array_ref) } '... Bar::baz can accept an array ref';
174 is($bar->baz, $array_ref, '... got the right value assigned to baz');
175
176 my $scalar_ref = \(my $var);
177 dies_ok { $bar->baz($scalar_ref) } '... Bar::baz does not accept a scalar ref';
178
f3c4e20e 179 lives_ok { $bar->bunch_of_stuff([1, 2, 3]) } '... Bar::bunch_of_stuff accepts an array of ints';
180 dies_ok { $bar->bunch_of_stuff([qw[one two three]]) } '... Bar::bunch_of_stuff does not accept an array of strings';
181
ce0e8d63 182 my $code_ref = sub { 1 };
183 dies_ok { $bar->baz($code_ref) } '... Bar::baz does not accept a code ref';
184}
185
1d768fb1 186# check some meta-stuff
187
ce0e8d63 188ok(Bar->meta->has_attribute('foo'), '... Bar has a foo attr');
1d768fb1 189ok(Bar->meta->has_attribute('bar'), '... Bar has a bar attr');
ce0e8d63 190ok(Bar->meta->has_attribute('baz'), '... Bar has a baz attr');
191ok(Bar->meta->has_attribute('gorch'), '... Bar has a gorch attr');
83cc9094 192ok(Bar->meta->has_attribute('gloum'), '... Bar has a gloum attr');
193ok(Bar->meta->has_attribute('bling'), '... Bar has a bling attr');
f3c4e20e 194ok(Bar->meta->has_attribute('bunch_of_stuff'), '... Bar does have a bunch_of_stuff attr');
83cc9094 195ok(!Bar->meta->has_attribute('blang'), '... Bar has a blang attr');
5e98d2b6 196ok(Bar->meta->has_attribute('fail'), '... Bar has a fail attr');
197ok(!Bar->meta->has_attribute('other_fail'), '... Bar does not have an other_fail attr');
ce0e8d63 198
199isnt(Foo->meta->get_attribute('foo'),
200 Bar->meta->get_attribute('foo'),
201 '... Foo and Bar have different copies of foo');
1d768fb1 202isnt(Foo->meta->get_attribute('bar'),
203 Bar->meta->get_attribute('bar'),
204 '... Foo and Bar have different copies of bar');
ce0e8d63 205isnt(Foo->meta->get_attribute('baz'),
206 Bar->meta->get_attribute('baz'),
207 '... Foo and Bar have different copies of baz');
208isnt(Foo->meta->get_attribute('gorch'),
209 Bar->meta->get_attribute('gorch'),
83cc9094 210 '... Foo and Bar have different copies of gorch');
211isnt(Foo->meta->get_attribute('gloum'),
212 Bar->meta->get_attribute('gloum'),
213 '... Foo and Bar have different copies of gloum');
214isnt(Foo->meta->get_attribute('bling'),
215 Bar->meta->get_attribute('bling'),
216 '... Foo and Bar have different copies of bling');
f3c4e20e 217isnt(Foo->meta->get_attribute('bunch_of_stuff'),
218 Bar->meta->get_attribute('bunch_of_stuff'),
219 '... Foo and Bar have different copies of bunch_of_stuff');
ce0e8d63 220
daea75c9 221ok(Bar->meta->get_attribute('bar')->has_type_constraint,
222 '... Bar::bar inherited the type constraint too');
ce0e8d63 223ok(Bar->meta->get_attribute('baz')->has_type_constraint,
224 '... Bar::baz inherited the type constraint too');
1d768fb1 225
daea75c9 226is(Bar->meta->get_attribute('bar')->type_constraint->name,
227 'Str', '... Bar::bar inherited the right type constraint too');
1d768fb1 228
ce0e8d63 229is(Foo->meta->get_attribute('baz')->type_constraint->name,
230 'Ref', '... Foo::baz inherited the right type constraint too');
231is(Bar->meta->get_attribute('baz')->type_constraint->name,
232 'ArrayRef', '... Bar::baz inherited the right type constraint too');
233
234ok(!Foo->meta->get_attribute('gorch')->is_required,
235 '... Foo::gorch is not a required attr');
236ok(Bar->meta->get_attribute('gorch')->is_required,
237 '... Bar::gorch is a required attr');
238
f3c4e20e 239is(Foo->meta->get_attribute('bunch_of_stuff')->type_constraint->name,
240 'ArrayRef',
241 '... Foo::bunch_of_stuff is an ArrayRef');
242is(Bar->meta->get_attribute('bunch_of_stuff')->type_constraint->name,
243 'ArrayRef[Int]',
244 '... Bar::bunch_of_stuff is an ArrayRef[Int]');
245
83cc9094 246ok(!Foo->meta->get_attribute('gloum')->is_lazy,
247 '... Foo::gloum is not a required attr');
248ok(Bar->meta->get_attribute('gloum')->is_lazy,
249 '... Bar::gloum is a required attr');
250
ce0e8d63 251ok(!Foo->meta->get_attribute('foo')->should_coerce,
252 '... Foo::foo should not coerce');
253ok(Bar->meta->get_attribute('foo')->should_coerce,
83cc9094 254 '... Bar::foo should coerce');
255
256ok(!Foo->meta->get_attribute('bling')->has_handles,
257 '... Foo::foo should not handles');
258ok(Bar->meta->get_attribute('bling')->has_handles,
259 '... Bar::foo should handles');
ce0e8d63 260
1d768fb1 261