applying patch from Robert Norris for next::can
[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 => 9;
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     sub woz { 'Diamond_C::woz' }  
47 }
48 {
49     package Diamond_D;
50     use base ('Diamond_B', 'Diamond_C');
51     use c3; 
52     sub foo { 'Diamond_D::foo => ' . (shift)->next::method() } 
53     sub bar { 'Diamond_D::bar => ' . (shift)->next::method() }   
54     sub buz { 'Diamond_D::buz => ' . (shift)->baz() }  
55     sub fuz { 'Diamond_D::fuz => ' . (shift)->next::method() }
56     sub woz { 'Diamond_D::woz can => ' . (shift)->next::can() }
57     sub noz { 'Diamond_D::noz can => ' . (shift)->next::can() }               
58
59 }
60
61 Class::C3::initialize();
62
63 is_deeply(
64     [ Class::C3::calculateMRO('Diamond_D') ],
65     [ qw(Diamond_D Diamond_B Diamond_C Diamond_A) ],
66     '... got the right MRO for Diamond_D');
67
68 is(Diamond_D->foo, 'Diamond_D::foo => Diamond_C::foo', '... skipped B and went to C correctly');
69 is(Diamond_D->bar, 'Diamond_D::bar => Diamond_A::bar', '... skipped B & C and went to A correctly');
70 is(Diamond_D->baz, 'Diamond_B::baz => Diamond_A::baz', '... called B method, skipped C and went to A correctly');
71 is(Diamond_D->buz, 'Diamond_D::buz => Diamond_B::baz => Diamond_A::baz', '... called D method dispatched to , different method correctly');
72 eval { Diamond_D->fuz };
73 like($@, qr/^No next::method 'fuz' found for Diamond_D/, '... cannot re-dispatch to a method which is not there');
74
75 is(Diamond_D->woz, 'Diamond_D::woz can => 1', '... can re-dispatch figured out correctly');
76 is(Diamond_D->noz, 'Diamond_D::noz can => 0', '... cannot re-dispatch figured out correctly');