Test that "no Moose::Role" doesn't explode, qualify the namespace of Moose::_get_caller
[gitmo/Moose.git] / t / 030_roles / 002_role.t
CommitLineData
e185c027 1#!/usr/bin/perl
2
3use strict;
4use warnings;
5
0558683c 6use Test::More tests => 35;
e185c027 7use Test::Exception;
8
9BEGIN {
10 use_ok('Moose::Role');
11}
12
38f1204c 13=pod
14
15NOTE:
16
17Should we be testing here that the has & override
18are injecting their methods correctly? In other
19words, should 'has_method' return true for them?
20
21=cut
22
e185c027 23{
24 package FooRole;
e185c027 25 use Moose::Role;
26
27 our $VERSION = '0.01';
28
29 has 'bar' => (is => 'rw', isa => 'Foo');
30 has 'baz' => (is => 'ro');
31
32 sub foo { 'FooRole::foo' }
bdabd620 33 sub boo { 'FooRole::boo' }
0558683c 34
35 before 'boo' => sub { "FooRole::boo:before" };
36
37 after 'boo' => sub { "FooRole::boo:after1" };
38 after 'boo' => sub { "FooRole::boo:after2" };
39
40 around 'boo' => sub { "FooRole::boo:around" };
41
42 override 'bling' => sub { "FooRole::bling:override" };
43 override 'fling' => sub { "FooRole::fling:override" };
44
bdabd620 45 ::dies_ok { extends() } '... extends() is not supported';
0558683c 46 ::dies_ok { augment() } '... augment() is not supported';
47 ::dies_ok { inner() } '... inner() is not supported';
fd75e12b 48
49 no Moose::Role;
e185c027 50}
51
52my $foo_role = FooRole->meta;
53isa_ok($foo_role, 'Moose::Meta::Role');
68efb014 54isa_ok($foo_role, 'Class::MOP::Module');
e185c027 55
56is($foo_role->name, 'FooRole', '... got the right name of FooRole');
57is($foo_role->version, '0.01', '... got the right version of FooRole');
58
59# methods ...
60
61ok($foo_role->has_method('foo'), '... FooRole has the foo method');
093b12c2 62is($foo_role->get_method('foo')->body, \&FooRole::foo, '... FooRole got the foo method');
e185c027 63
a7d0cd00 64isa_ok($foo_role->get_method('foo'), 'Moose::Meta::Role::Method');
65
bdabd620 66ok($foo_role->has_method('boo'), '... FooRole has the boo method');
093b12c2 67is($foo_role->get_method('boo')->body, \&FooRole::boo, '... FooRole got the boo method');
bdabd620 68
69isa_ok($foo_role->get_method('boo'), 'Moose::Meta::Role::Method');
70
e185c027 71is_deeply(
bdabd620 72 [ sort $foo_role->get_method_list() ],
73 [ 'boo', 'foo' ],
e185c027 74 '... got the right method list');
75
76# attributes ...
77
78is_deeply(
79 [ sort $foo_role->get_attribute_list() ],
80 [ 'bar', 'baz' ],
81 '... got the right attribute list');
82
83ok($foo_role->has_attribute('bar'), '... FooRole does have the bar attribute');
84
85is_deeply(
86 $foo_role->get_attribute('bar'),
87 { is => 'rw', isa => 'Foo' },
88 '... got the correct description of the bar attribute');
89
90ok($foo_role->has_attribute('baz'), '... FooRole does have the baz attribute');
91
92is_deeply(
93 $foo_role->get_attribute('baz'),
94 { is => 'ro' },
95 '... got the correct description of the baz attribute');
96
0558683c 97# method modifiers
98
99ok($foo_role->has_before_method_modifiers('boo'), '... now we have a boo:before modifier');
100is(($foo_role->get_before_method_modifiers('boo'))[0]->(),
101 "FooRole::boo:before",
102 '... got the right method back');
103
104is_deeply(
105 [ $foo_role->get_method_modifier_list('before') ],
106 [ 'boo' ],
107 '... got the right list of before method modifiers');
108
109ok($foo_role->has_after_method_modifiers('boo'), '... now we have a boo:after modifier');
110is(($foo_role->get_after_method_modifiers('boo'))[0]->(),
111 "FooRole::boo:after1",
112 '... got the right method back');
113is(($foo_role->get_after_method_modifiers('boo'))[1]->(),
114 "FooRole::boo:after2",
115 '... got the right method back');
116
117is_deeply(
118 [ $foo_role->get_method_modifier_list('after') ],
119 [ 'boo' ],
120 '... got the right list of after method modifiers');
121
122ok($foo_role->has_around_method_modifiers('boo'), '... now we have a boo:around modifier');
123is(($foo_role->get_around_method_modifiers('boo'))[0]->(),
124 "FooRole::boo:around",
125 '... got the right method back');
126
127is_deeply(
128 [ $foo_role->get_method_modifier_list('around') ],
129 [ 'boo' ],
130 '... got the right list of around method modifiers');
131
132## overrides
133
134ok($foo_role->has_override_method_modifier('bling'), '... now we have a bling:override modifier');
135is($foo_role->get_override_method_modifier('bling')->(),
136 "FooRole::bling:override",
137 '... got the right method back');
138
139ok($foo_role->has_override_method_modifier('fling'), '... now we have a fling:override modifier');
140is($foo_role->get_override_method_modifier('fling')->(),
141 "FooRole::fling:override",
142 '... got the right method back');
143
144is_deeply(
145 [ sort $foo_role->get_method_modifier_list('override') ],
146 [ 'bling', 'fling' ],
147 '... got the right list of override method modifiers');
148