1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
|
#!/usr/bin/perl
use strict;
use warnings;
use Test::More;
use Test::Exception;
use Moose::Meta::Role::Application::RoleSummation;
use Moose::Meta::Role::Composite;
{
package Role::Foo;
use Moose::Role;
before foo => sub { 'Role::Foo::foo' };
around foo => sub { 'Role::Foo::foo' };
after foo => sub { 'Role::Foo::foo' };
around baz => sub { [ 'Role::Foo', @{shift->(@_)} ] };
package Role::Bar;
use Moose::Role;
before bar => sub { 'Role::Bar::bar' };
around bar => sub { 'Role::Bar::bar' };
after bar => sub { 'Role::Bar::bar' };
package Role::Baz;
use Moose::Role;
with 'Role::Foo';
around baz => sub { [ 'Role::Baz', @{shift->(@_)} ] };
}
{
package Class::FooBar;
use Moose;
with 'Role::Baz';
sub foo { 'placeholder' }
sub baz { ['Class::FooBar'] }
}
#test modifier call order
{
is_deeply(
Class::FooBar->baz,
['Role::Baz','Role::Foo','Class::FooBar']
);
}
# test simple overrides
{
my $c = Moose::Meta::Role::Composite->new(
roles => [
Role::Foo->meta,
Role::Bar->meta,
]
);
isa_ok($c, 'Moose::Meta::Role::Composite');
is($c->name, 'Role::Foo|Role::Bar', '... got the composite role name');
lives_ok {
Moose::Meta::Role::Application::RoleSummation->new->apply($c);
} '... this succeeds as expected';
is_deeply(
[ sort $c->get_method_modifier_list('before') ],
[ 'bar', 'foo' ],
'... got the right list of methods'
);
is_deeply(
[ sort $c->get_method_modifier_list('after') ],
[ 'bar', 'foo' ],
'... got the right list of methods'
);
is_deeply(
[ sort $c->get_method_modifier_list('around') ],
[ 'bar', 'baz', 'foo' ],
'... got the right list of methods'
);
}
done_testing;
|