added tests which show how roll tiebreaking works when methods and attributes are...
[gitmo/Moose.git] / t / 044_role_conflict_detection.t
CommitLineData
db1ab48d 1#!/usr/bin/perl
2
3use strict;
4use warnings;
5
3c5fd53a 6use Test::More tests => 126;
db1ab48d 7use Test::Exception;
8
9BEGIN {
10 use_ok('Moose');
11 use_ok('Moose::Role');
12}
13
14=pod
15
16Mutually recursive roles.
17
18=cut
19
20{
21 package Role::Foo;
db1ab48d 22 use Moose::Role;
23
24 requires 'foo';
25
26 sub bar { 'Role::Foo::bar' }
27
28 package Role::Bar;
db1ab48d 29 use Moose::Role;
30
31 requires 'bar';
32
33 sub foo { 'Role::Bar::foo' }
34}
35
36{
37 package My::Test1;
db1ab48d 38 use Moose;
39
40 ::lives_ok {
41 with 'Role::Foo', 'Role::Bar';
42 } '... our mutually recursive roles combine okay';
43
44 package My::Test2;
db1ab48d 45 use Moose;
46
47 ::lives_ok {
48 with 'Role::Bar', 'Role::Foo';
49 } '... our mutually recursive roles combine okay (no matter what order)';
50}
51
52my $test1 = My::Test1->new;
53isa_ok($test1, 'My::Test1');
54
55ok($test1->does('Role::Foo'), '... $test1 does Role::Foo');
56ok($test1->does('Role::Bar'), '... $test1 does Role::Bar');
57
58can_ok($test1, 'foo');
59can_ok($test1, 'bar');
60
61is($test1->foo, 'Role::Bar::foo', '... $test1->foo worked');
62is($test1->bar, 'Role::Foo::bar', '... $test1->bar worked');
63
64my $test2 = My::Test2->new;
65isa_ok($test2, 'My::Test2');
66
67ok($test2->does('Role::Foo'), '... $test2 does Role::Foo');
68ok($test2->does('Role::Bar'), '... $test2 does Role::Bar');
69
70can_ok($test2, 'foo');
71can_ok($test2, 'bar');
72
73is($test2->foo, 'Role::Bar::foo', '... $test2->foo worked');
74is($test2->bar, 'Role::Foo::bar', '... $test2->bar worked');
75
76# check some meta-stuff
77
78ok(Role::Foo->meta->has_method('bar'), '... it still has the bar method');
79ok(Role::Foo->meta->requires_method('foo'), '... it still has the required foo method');
80
81ok(Role::Bar->meta->has_method('foo'), '... it still has the foo method');
82ok(Role::Bar->meta->requires_method('bar'), '... it still has the required bar method');
83
84=pod
85
86Role method conflicts
87
88=cut
89
90{
91 package Role::Bling;
db1ab48d 92 use Moose::Role;
93
94 sub bling { 'Role::Bling::bling' }
95
96 package Role::Bling::Bling;
db1ab48d 97 use Moose::Role;
98
99 sub bling { 'Role::Bling::Bling::bling' }
100}
101
102{
103 package My::Test3;
db1ab48d 104 use Moose;
105
106 ::throws_ok {
107 with 'Role::Bling', 'Role::Bling::Bling';
108 } qr/requires the method \'bling\' to be implemented/, '... role methods conflicted and method was required';
109
110 package My::Test4;
db1ab48d 111 use Moose;
112
113 ::lives_ok {
114 with 'Role::Bling';
115 with 'Role::Bling::Bling';
116 } '... role methods didnt conflict when manually combined';
117
118 package My::Test5;
db1ab48d 119 use Moose;
120
121 ::lives_ok {
122 with 'Role::Bling::Bling';
123 with 'Role::Bling';
124 } '... role methods didnt conflict when manually combined (in opposite order)';
125
126 package My::Test6;
db1ab48d 127 use Moose;
128
129 ::lives_ok {
130 with 'Role::Bling::Bling', 'Role::Bling';
131 } '... role methods didnt conflict when manually resolved';
132
133 sub bling { 'My::Test6::bling' }
134}
135
136ok(!My::Test3->meta->has_method('bling'), '... we didnt get any methods in the conflict');
137ok(My::Test4->meta->has_method('bling'), '... we did get the method when manually dealt with');
138ok(My::Test5->meta->has_method('bling'), '... we did get the method when manually dealt with');
139ok(My::Test6->meta->has_method('bling'), '... we did get the method when manually dealt with');
140
d79e62fd 141ok(!My::Test3->does('Role::Bling'), '... our class does() the correct roles');
142ok(!My::Test3->does('Role::Bling::Bling'), '... our class does() the correct roles');
143ok(My::Test4->does('Role::Bling'), '... our class does() the correct roles');
144ok(My::Test4->does('Role::Bling::Bling'), '... our class does() the correct roles');
145ok(My::Test5->does('Role::Bling'), '... our class does() the correct roles');
146ok(My::Test5->does('Role::Bling::Bling'), '... our class does() the correct roles');
147ok(My::Test6->does('Role::Bling'), '... our class does() the correct roles');
148ok(My::Test6->does('Role::Bling::Bling'), '... our class does() the correct roles');
149
db1ab48d 150is(My::Test4->bling, 'Role::Bling::bling', '... and we got the first method that was added');
151is(My::Test5->bling, 'Role::Bling::Bling::bling', '... and we got the first method that was added');
152is(My::Test6->bling, 'My::Test6::bling', '... and we got the local method');
153
154# check how this affects role compostion
155
156{
157 package Role::Bling::Bling::Bling;
db1ab48d 158 use Moose::Role;
159
160 with 'Role::Bling::Bling';
161
162 sub bling { 'Role::Bling::Bling::Bling::bling' }
163}
164
165ok(Role::Bling::Bling->meta->has_method('bling'), '... still got the bling method in Role::Bling::Bling');
d79e62fd 166ok(Role::Bling::Bling->meta->does_role('Role::Bling::Bling'), '... our role correctly does() the other role');
db1ab48d 167ok(Role::Bling::Bling::Bling->meta->has_method('bling'), '... still got the bling method in Role::Bling::Bling::Bling');
d05cd563 168is(Role::Bling::Bling::Bling->meta->get_method('bling')->(),
169 'Role::Bling::Bling::Bling::bling',
170 '... still got the bling method in Role::Bling::Bling::Bling');
db1ab48d 171
172=pod
173
174Role attribute conflicts
175
176=cut
177
178{
179 package Role::Boo;
db1ab48d 180 use Moose::Role;
181
182 has 'ghost' => (is => 'ro', default => 'Role::Boo::ghost');
183
184 package Role::Boo::Hoo;
db1ab48d 185 use Moose::Role;
186
187 has 'ghost' => (is => 'ro', default => 'Role::Boo::Hoo::ghost');
188}
189
190{
191 package My::Test7;
db1ab48d 192 use Moose;
193
194 ::throws_ok {
195 with 'Role::Boo', 'Role::Boo::Hoo';
196 } qr/Role \'Role::Boo::Hoo\' has encountered an attribute conflict/,
197 '... role attrs conflicted and method was required';
198
199 package My::Test8;
db1ab48d 200 use Moose;
201
202 ::lives_ok {
203 with 'Role::Boo';
204 with 'Role::Boo::Hoo';
205 } '... role attrs didnt conflict when manually combined';
206
207 package My::Test9;
db1ab48d 208 use Moose;
209
210 ::lives_ok {
211 with 'Role::Boo::Hoo';
212 with 'Role::Boo';
213 } '... role attrs didnt conflict when manually combined';
214
215 package My::Test10;
db1ab48d 216 use Moose;
217
218 has 'ghost' => (is => 'ro', default => 'My::Test10::ghost');
219
220 ::throws_ok {
221 with 'Role::Boo', 'Role::Boo::Hoo';
222 } qr/Role \'Role::Boo::Hoo\' has encountered an attribute conflict/,
223 '... role attrs conflicted and cannot be manually disambiguted';
224
225}
226
227ok(!My::Test7->meta->has_attribute('ghost'), '... we didnt get any attributes in the conflict');
228ok(My::Test8->meta->has_attribute('ghost'), '... we did get an attributes when manually composed');
229ok(My::Test9->meta->has_attribute('ghost'), '... we did get an attributes when manually composed');
230ok(My::Test10->meta->has_attribute('ghost'), '... we did still have an attribute ghost (conflict does not mess with class)');
231
d79e62fd 232ok(!My::Test7->does('Role::Boo'), '... our class does() the correct roles');
233ok(!My::Test7->does('Role::Boo::Hoo'), '... our class does() the correct roles');
234ok(My::Test8->does('Role::Boo'), '... our class does() the correct roles');
235ok(My::Test8->does('Role::Boo::Hoo'), '... our class does() the correct roles');
236ok(My::Test9->does('Role::Boo'), '... our class does() the correct roles');
237ok(My::Test9->does('Role::Boo::Hoo'), '... our class does() the correct roles');
238ok(!My::Test10->does('Role::Boo'), '... our class does() the correct roles');
239ok(!My::Test10->does('Role::Boo::Hoo'), '... our class does() the correct roles');
240
db1ab48d 241can_ok('My::Test8', 'ghost');
242can_ok('My::Test9', 'ghost');
243can_ok('My::Test10', 'ghost');
244
245is(My::Test8->new->ghost, 'Role::Boo::ghost', '... got the expected default attr value');
246is(My::Test9->new->ghost, 'Role::Boo::Hoo::ghost', '... got the expected default attr value');
247is(My::Test10->new->ghost, 'My::Test10::ghost', '... got the expected default attr value');
248
d05cd563 249=pod
250
251Role override method conflicts
252
253=cut
254
0558683c 255{
256 package Role::Plot;
257 use Moose::Role;
258
259 override 'twist' => sub {
260 super() . ' -> Role::Plot::twist';
261 };
262
263 package Role::Truth;
264 use Moose::Role;
265
266 override 'twist' => sub {
267 super() . ' -> Role::Truth::twist';
268 };
269}
270
271{
272 package My::Test::Base;
273 use Moose;
274
275 sub twist { 'My::Test::Base::twist' }
276
277 package My::Test11;
278 use Moose;
279
280 extends 'My::Test::Base';
281
282 ::lives_ok {
283 with 'Role::Truth';
284 } '... composed the role with override okay';
285
286 package My::Test12;
287 use Moose;
288
289 extends 'My::Test::Base';
290
291 ::lives_ok {
292 with 'Role::Plot';
293 } '... composed the role with override okay';
294
295 package My::Test13;
296 use Moose;
297
298 ::dies_ok {
299 with 'Role::Plot';
300 } '... cannot compose it because we have no superclass';
301
302 package My::Test14;
303 use Moose;
304
305 extends 'My::Test::Base';
306
307 ::throws_ok {
308 with 'Role::Plot', 'Role::Truth';
309 } qr/Two \'override\' methods of the same name encountered/,
310 '... cannot compose it because we have no superclass';
311}
312
313ok(My::Test11->meta->has_method('twist'), '... the twist method has been added');
314ok(My::Test12->meta->has_method('twist'), '... the twist method has been added');
315ok(!My::Test13->meta->has_method('twist'), '... the twist method has not been added');
316ok(!My::Test14->meta->has_method('twist'), '... the twist method has not been added');
317
318ok(!My::Test11->does('Role::Plot'), '... our class does() the correct roles');
319ok(My::Test11->does('Role::Truth'), '... our class does() the correct roles');
320ok(!My::Test12->does('Role::Truth'), '... our class does() the correct roles');
321ok(My::Test12->does('Role::Plot'), '... our class does() the correct roles');
322ok(!My::Test13->does('Role::Plot'), '... our class does() the correct roles');
323ok(!My::Test14->does('Role::Truth'), '... our class does() the correct roles');
324ok(!My::Test14->does('Role::Plot'), '... our class does() the correct roles');
325
326is(My::Test11->twist(), 'My::Test::Base::twist -> Role::Truth::twist', '... got the right method return');
327is(My::Test12->twist(), 'My::Test::Base::twist -> Role::Plot::twist', '... got the right method return');
328ok(!My::Test13->can('twist'), '... no twist method here at all');
329is(My::Test14->twist(), 'My::Test::Base::twist', '... got the right method return (from superclass)');
330
331{
332 package Role::Reality;
333 use Moose::Role;
334
335 ::throws_ok {
336 with 'Role::Plot';
337 } qr/A local method of the same name as been found/,
338 '... could not compose roles here, it dies';
339
340 sub twist {
341 'Role::Reality::twist';
342 }
343}
344
345ok(Role::Reality->meta->has_method('twist'), '... the twist method has not been added');
346ok(!Role::Reality->meta->does_role('Role::Plot'), '... our role does() the correct roles');
347is(Role::Reality->meta->get_method('twist')->(),
348 'Role::Reality::twist',
349 '... the twist method returns the right value');
3c5fd53a 350
351=pod
352
353Role conflicts between attributes and methods
354
355=cut
356
357{
358 package Role::Method;
359 use Moose::Role;
360
361 sub ghost { 'Role::Method::ghost' }
362
363 package Role::Method2;
364 use Moose::Role;
365
366 sub ghost { 'Role::Method2::ghost' }
367
368 package Role::Attribute;
369 use Moose::Role;
370
371 has 'ghost' => (is => 'ro', default => 'Role::Attribute::ghost');
372
373 package Role::Attribute2;
374 use Moose::Role;
375
376 has 'ghost' => (is => 'ro', default => 'Role::Attribute2::ghost');
377}
378
379{
380 package My::Test15;
381 use Moose;
382
383 ::lives_ok {
384 with 'Role::Method';
385 } '... composed the method role into the method class';
386
387 sub ghost { 'My::Test15::ghost' }
388
389 package My::Test16;
390 use Moose;
391
392 ::lives_ok {
393 with 'Role::Method';
394 } '... composed the method role into the attribute class';
395
396 has 'ghost' => (is => 'ro', default => 'My::Test16::ghost');
397
398 package My::Test17;
399 use Moose;
400
401 ::lives_ok {
402 with 'Role::Attribute';
403 } '... composed the attribute role into the method class';
404
405 sub ghost { 'My::Test17::ghost' }
406
407 package My::Test18;
408 use Moose;
409
410 ::lives_ok {
411 with 'Role::Attribute';
412 } '... composed the attribute role into the attribute class';
413
414 has 'ghost' => (is => 'ro', default => 'My::Test18::ghost');
415
416 package My::Test19;
417 use Moose;
418
419 ::lives_ok {
420 with 'Role::Method', 'Role::Method2';
421 } '... composed method roles into class with method tiebreaker';
422
423 sub ghost { 'My::Test19::ghost' }
424
425 package My::Test20;
426 use Moose;
427
428 ::lives_ok {
429 with 'Role::Method', 'Role::Method2';
430 } '... composed method roles into class with attribute tiebreaker';
431
432 has 'ghost' => (is => 'ro', default => 'My::Test20::ghost');
433
434 package My::Test21;
435 use Moose;
436
437 ::lives_ok {
438 with 'Role::Attribute', 'Role::Attribute2';
439 } '... composed attribute roles into class with method tiebreaker';
440
441 sub ghost { 'My::Test21::ghost' }
442
443 package My::Test22;
444 use Moose;
445
446 ::lives_ok {
447 with 'Role::Attribute', 'Role::Attribute2';
448 } '... composed attribute roles into class with attribute tiebreaker';
449
450 has 'ghost' => (is => 'ro', default => 'My::Test22::ghost');
451
452 package My::Test23;
453 use Moose;
454
455 ::lives_ok {
456 with 'Role::Method', 'Role::Attribute';
457 } '... composed method and attribute role into class with method tiebreaker';
458
459 sub ghost { 'My::Test23::ghost' }
460
461 package My::Test24;
462 use Moose;
463
464 ::lives_ok {
465 with 'Role::Method', 'Role::Attribute';
466 } '... composed method and attribute role into class with attribute tiebreaker';
467
468 has 'ghost' => (is => 'ro', default => 'My::Test24::ghost');
469
470 package My::Test25;
471 use Moose;
472
473 ::lives_ok {
474 with 'Role::Attribute', 'Role::Method';
475 } '... composed attribute and method role into class with method tiebreaker';
476
477 sub ghost { 'My::Test25::ghost' }
478
479 package My::Test26;
480 use Moose;
481
482 ::lives_ok {
483 with 'Role::Attribute', 'Role::Method';
484 } '... composed attribute and method role into class with attribute tiebreaker';
485
486 has 'ghost' => (is => 'ro', default => 'My::Test26::ghost');
487}
488
489my $test15 = My::Test15->new;
490isa_ok($test15, 'My::Test15');
491is($test15->ghost, 'My::Test15::ghost', '... we access the method from the class and ignore the role method');
492
493my $test16 = My::Test16->new;
494isa_ok($test16, 'My::Test16');
495is($test16->ghost, 'My::Test16::ghost', '... we access the attribute from the class and ignore the role method');
496
497my $test17 = My::Test17->new;
498isa_ok($test17, 'My::Test17');
499is($test17->ghost, 'My::Test17::ghost', '... we access the method from the class and ignore the role attribute');
500
501my $test18 = My::Test18->new;
502isa_ok($test18, 'My::Test18');
503is($test18->ghost, 'My::Test18::ghost', '... we access the attribute from the class and ignore the role attribute');
504
505my $test19 = My::Test19->new;
506isa_ok($test19, 'My::Test19');
507is($test19->ghost, 'My::Test19::ghost', '... we access the method from the class and ignore the role methods');
508
509my $test20 = My::Test20->new;
510isa_ok($test20, 'My::Test20');
511is($test20->ghost, 'My::Test20::ghost', '... we access the attribute from the class and ignore the role methods');
512
513my $test21 = My::Test21->new;
514isa_ok($test21, 'My::Test21');
515is($test21->ghost, 'My::Test21::ghost', '... we access the method from the class and ignore the role attributes');
516
517my $test22 = My::Test22->new;
518isa_ok($test22, 'My::Test22');
519is($test22->ghost, 'My::Test22::ghost', '... we access the attribute from the class and ignore the role attributes');
520
521my $test23 = My::Test23->new;
522isa_ok($test23, 'My::Test23');
523is($test23->ghost, 'My::Test23::ghost', '... we access the method from the class and ignore the role method and attribute');
524
525my $test24 = My::Test24->new;
526isa_ok($test24, 'My::Test24');
527is($test24->ghost, 'My::Test24::ghost', '... we access the attribute from the class and ignore the role method and attribute');
528
529my $test25 = My::Test25->new;
530isa_ok($test25, 'My::Test25');
531is($test25->ghost, 'My::Test25::ghost', '... we access the method from the class and ignore the role attribute and method');
532
533my $test26 = My::Test26->new;
534isa_ok($test26, 'My::Test26');
535is($test26->ghost, 'My::Test26::ghost', '... we access the attribute from the class and ignore the role attribute and method');
536