version 0.11
[gitmo/Class-C3.git] / t / 31_next_method_skip.t
CommitLineData
5d5c86d9 1#!/usr/bin/perl
2
3use strict;
4use warnings;
5
6use Test::More tests => 7;
7
8BEGIN {
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
18This 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
2ffffc6d 58Class::C3::initialize();
59
5d5c86d9 60is_deeply(
61 [ Class::C3::calculateMRO('Diamond_D') ],
62 [ qw(Diamond_D Diamond_B Diamond_C Diamond_A) ],
63 '... got the right MRO for Diamond_D');
64
65is(Diamond_D->foo, 'Diamond_D::foo => Diamond_C::foo', '... skipped B and went to C correctly');
66is(Diamond_D->bar, 'Diamond_D::bar => Diamond_A::bar', '... skipped B & C and went to A correctly');
67is(Diamond_D->baz, 'Diamond_B::baz => Diamond_A::baz', '... called B method, skipped C and went to A correctly');
68is(Diamond_D->buz, 'Diamond_D::buz => Diamond_B::baz => Diamond_A::baz', '... called D method dispatched to , different method correctly');
69eval { Diamond_D->fuz };
70like($@, qr/^No next::method 'fuz' found for Diamond_D/, '... cannot re-dispatch to a method which is not there');
71
72