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 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279
|
#!/usr/bin/perl
use strict;
use warnings;
use Test::More;
use Test::Exception;
=pod
NOTE:
A fair amount of these tests will likely be irrelevant
once we have more fine grained control over the class
building process. A lot of the edge cases tested here
are actually related to class construction order and
not any real functionality.
- SL
Role which requires a method implemented
in another role as an override (it does
not remove the requirement)
=cut
{
package Role::RequireFoo;
use strict;
use warnings;
use Moose::Role;
requires 'foo';
package Role::ProvideFoo;
use strict;
use warnings;
use Moose::Role;
::lives_ok {
with 'Role::RequireFoo';
} '... the required "foo" method will not exist yet (but we will live)';
override 'foo' => sub { 'Role::ProvideFoo::foo' };
}
is_deeply(
[ Role::ProvideFoo->meta->get_required_method_list ],
[ 'foo' ],
'... foo method is still required for Role::ProvideFoo');
=pod
Role which requires a method implemented
in the consuming class as an override.
It will fail since method modifiers are
second class citizens.
=cut
{
package Class::ProvideFoo::Base;
use Moose;
sub foo { 'Class::ProvideFoo::Base::foo' }
package Class::ProvideFoo::Override1;
use Moose;
extends 'Class::ProvideFoo::Base';
::lives_ok {
with 'Role::RequireFoo';
} '... the required "foo" method will be found in the superclass';
override 'foo' => sub { 'Class::ProvideFoo::foo' };
package Class::ProvideFoo::Override2;
use Moose;
extends 'Class::ProvideFoo::Base';
override 'foo' => sub { 'Class::ProvideFoo::foo' };
::lives_ok {
with 'Role::RequireFoo';
} '... the required "foo" method exists, although it is overriden locally';
}
=pod
Now same thing, but with a before
method modifier.
=cut
{
package Class::ProvideFoo::Before1;
use Moose;
extends 'Class::ProvideFoo::Base';
::lives_ok {
with 'Role::RequireFoo';
} '... the required "foo" method will be found in the superclass';
before 'foo' => sub { 'Class::ProvideFoo::foo:before' };
package Class::ProvideFoo::Before2;
use Moose;
extends 'Class::ProvideFoo::Base';
before 'foo' => sub { 'Class::ProvideFoo::foo:before' };
::lives_ok {
with 'Role::RequireFoo';
} '... the required "foo" method exists, although it is a before modifier locally';
package Class::ProvideFoo::Before3;
use Moose;
extends 'Class::ProvideFoo::Base';
sub foo { 'Class::ProvideFoo::foo' }
before 'foo' => sub { 'Class::ProvideFoo::foo:before' };
::lives_ok {
with 'Role::RequireFoo';
} '... the required "foo" method exists locally, and it is modified locally';
package Class::ProvideFoo::Before4;
use Moose;
extends 'Class::ProvideFoo::Base';
sub foo { 'Class::ProvideFoo::foo' }
before 'foo' => sub { 'Class::ProvideFoo::foo:before' };
::isa_ok(__PACKAGE__->meta->get_method('foo'), 'Class::MOP::Method::Wrapped');
::is(__PACKAGE__->meta->get_method('foo')->get_original_method->package_name, __PACKAGE__,
'... but the original method is from our package');
::lives_ok {
with 'Role::RequireFoo';
} '... the required "foo" method exists in the symbol table (and we will live)';
}
=pod
Now same thing, but with a method from an attribute
method modifier.
=cut
{
package Class::ProvideFoo::Attr1;
use Moose;
extends 'Class::ProvideFoo::Base';
::lives_ok {
with 'Role::RequireFoo';
} '... the required "foo" method will be found in the superclass (but then overriden)';
has 'foo' => (is => 'ro');
package Class::ProvideFoo::Attr2;
use Moose;
extends 'Class::ProvideFoo::Base';
has 'foo' => (is => 'ro');
::lives_ok {
with 'Role::RequireFoo';
} '... the required "foo" method exists, and is an accessor';
}
# ...
# a method required in a role, but then
# implemented in the superclass (as an
# attribute accessor too)
{
package Foo::Class::Base;
use Moose;
has 'bar' => (
isa => 'Int',
is => 'rw',
default => sub { 1 }
);
}
{
package Foo::Role;
use Moose::Role;
requires 'bar';
has 'foo' => (
isa => 'Int',
is => 'rw',
lazy => 1,
default => sub { (shift)->bar + 1 }
);
}
{
package Foo::Class::Child;
use Moose;
extends 'Foo::Class::Base';
::lives_ok {
with 'Foo::Role';
} '... our role combined successfully';
}
# a method required in a role and implemented in a superclass, with a method
# modifier in the subclass. this should live, but dies in 0.26 -- hdp,
# 2007-10-11
{
package Bar::Class::Base;
use Moose;
sub bar { "hello!" }
}
{
package Bar::Role;
use Moose::Role;
requires 'bar';
}
{
package Bar::Class::Child;
use Moose;
extends 'Bar::Class::Base';
after bar => sub { "o noes" };
# technically we could run lives_ok here, too, but putting it into a
# grandchild class makes it more obvious why this matters.
}
{
package Bar::Class::Grandchild;
use Moose;
extends 'Bar::Class::Child';
::lives_ok {
with 'Bar::Role';
} 'required method exists in superclass as non-modifier, so we live';
}
{
package Bar2::Class::Base;
use Moose;
sub bar { "hello!" }
}
{
package Bar2::Role;
use Moose::Role;
requires 'bar';
}
{
package Bar2::Class::Child;
use Moose;
extends 'Bar2::Class::Base';
override bar => sub { "o noes" };
# technically we could run lives_ok here, too, but putting it into a
# grandchild class makes it more obvious why this matters.
}
{
package Bar2::Class::Grandchild;
use Moose;
extends 'Bar2::Class::Child';
::lives_ok {
with 'Bar2::Role';
} 'required method exists in superclass as non-modifier, so we live';
}
done_testing;
|