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