Class::C3 - 0.05 release
[gitmo/Class-C3.git] / t / 31_next_method_skip.t
1 #!/usr/bin/perl
2
3 use strict;
4 use warnings;
5
6 use Test::More tests => 7;
7
8 BEGIN {
9     use lib 'opt', '../opt', '..';    
10     use_ok('c3');
11     # uncomment this line, and re-run the
12     # test to see the normal p5 dispatch order
13     #$Class::C3::TURN_OFF_C3 = 1;    
14 }
15
16 =pod
17
18 This tests the classic diamond inheritence pattern.
19
20    <A>
21   /   \
22 <B>   <C>
23   \   /
24    <D>
25
26 =cut
27
28 {
29     package Diamond_A;
30     use c3; 
31     sub bar { 'Diamond_A::bar' }        
32     sub baz { 'Diamond_A::baz' }
33 }
34 {
35     package Diamond_B;
36     use base 'Diamond_A';
37     use c3;    
38     sub baz { 'Diamond_B::baz => ' . (shift)->next::method() }         
39 }
40 {
41     package Diamond_C;
42     use c3;    
43     use base 'Diamond_A';     
44     sub foo { 'Diamond_C::foo' }   
45     sub buz { 'Diamond_C::buz' }           
46 }
47 {
48     package Diamond_D;
49     use base ('Diamond_B', 'Diamond_C');
50     use c3; 
51     sub foo { 'Diamond_D::foo => ' . (shift)->next::method() } 
52     sub bar { 'Diamond_D::bar => ' . (shift)->next::method() }   
53     sub buz { 'Diamond_D::buz => ' . (shift)->baz() }  
54     sub fuz { 'Diamond_D::fuz => ' . (shift)->next::method() }           
55
56 }
57
58 is_deeply(
59     [ Class::C3::calculateMRO('Diamond_D') ],
60     [ qw(Diamond_D Diamond_B Diamond_C Diamond_A) ],
61     '... got the right MRO for Diamond_D');
62
63 is(Diamond_D->foo, 'Diamond_D::foo => Diamond_C::foo', '... skipped B and went to C correctly');
64 is(Diamond_D->bar, 'Diamond_D::bar => Diamond_A::bar', '... skipped B & C and went to A correctly');
65 is(Diamond_D->baz, 'Diamond_B::baz => Diamond_A::baz', '... called B method, skipped C and went to A correctly');
66 is(Diamond_D->buz, 'Diamond_D::buz => Diamond_B::baz => Diamond_A::baz', '... called D method dispatched to , different method correctly');
67 eval { Diamond_D->fuz };
68 like($@, qr/^No next::method 'fuz' found for Diamond_D/, '... cannot re-dispatch to a method which is not there');
69
70