X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F003_methods.t;h=d807876d026b1332764482e38aad6569ee544bf9;hb=c20522bd825495befde91f3201a71909d80dd31c;hp=24dde7a8b6fef2e05eb4158a3d31d9d9759f5050;hpb=c9b8b7f9e1177bd6917a1139fd5834dd1f09a6c7;p=gitmo%2FClass-MOP.git diff --git a/t/003_methods.t b/t/003_methods.t index 24dde7a..d807876 100644 --- a/t/003_methods.t +++ b/t/003_methods.t @@ -3,9 +3,10 @@ use strict; use warnings; -use Test::More no_plan => 1; +use Test::More tests => 56; use Test::Exception; -use Test::Deep; + +use Scalar::Util qw/reftype/; BEGIN { use_ok('Class::MOP'); @@ -33,6 +34,11 @@ BEGIN { # We hateses the "used only once" warnings { my $temp = \&Foo::baz } + + package OinkyBoinky; + our @ISA = "Foo"; + + sub elk { 'OinkyBoinky::elk' } package main; @@ -52,10 +58,17 @@ my $Foo = Class::MOP::Class->initialize('Foo'); my $foo = sub { 'Foo::foo' }; +ok(!UNIVERSAL::isa($foo, 'Class::MOP::Method'), '... our method is not yet blessed'); + lives_ok { $Foo->add_method('foo' => $foo); } '... we added the method successfully'; +isa_ok($foo, 'Class::MOP::Method'); + +is($foo->name, 'foo', '... got the right name for the method'); +is($foo->package_name, 'Foo', '... got the right package name for the method'); + ok($Foo->has_method('foo'), '... Foo->has_method(foo) (defined with Sub::Name)'); is($Foo->get_method('foo'), $foo, '... Foo->get_method(foo) == \&foo'); @@ -72,6 +85,40 @@ ok($Foo->has_method('bling'), '... Foo->has_method(bling) (defined in main:: usi ok($Foo->has_method('bang'), '... Foo->has_method(bang) (defined in main:: using symbol tables and Sub::Name)'); ok($Foo->has_method('evaled_foo'), '... Foo->has_method(evaled_foo) (evaled in main::)'); +my $OinkyBoinky = Class::MOP::Class->initialize('OinkyBoinky'); + +ok($OinkyBoinky->has_method('elk'), "the method 'elk' is defined in OinkyBoinky"); + +ok(!$OinkyBoinky->has_method('bar'), "the method 'bar' is not defined in OinkyBoinky"); + +ok(my $bar = $OinkyBoinky->find_method_by_name('bar'), "but if you look in the inheritence chain then 'bar' does exist"); + +is( reftype($bar), "CODE", "the returned value is a code ref" ); + + +# calling get_method blessed them all +isa_ok($_, 'Class::MOP::Method') for ( + \&Foo::FOO_CONSTANT, + \&Foo::bar, + \&Foo::baz, + \&Foo::floob, + \&Foo::blah, + \&Foo::bling, + \&Foo::bang, + \&Foo::evaled_foo, + ); + +{ + package Foo::Aliasing; + use metaclass; + sub alias_me { '...' } +} + +$Foo->alias_method('alias_me' => Foo::Aliasing->meta->get_method('alias_me')); + +ok(!$Foo->has_method('alias_me'), '... !Foo->has_method(alias_me) (aliased from Foo::Aliasing)'); +ok(defined &Foo::alias_me, '... Foo does have a symbol table slow for alias_me though'); + ok(!$Foo->has_method('blessed'), '... !Foo->has_method(blessed) (imported into Foo)'); ok(!$Foo->has_method('boom'), '... !Foo->has_method(boom) (defined in main:: using symbol tables and Sub::Name w/out package name)'); @@ -83,6 +130,29 @@ is_deeply( [ qw(FOO_CONSTANT bang bar baz blah bling evaled_foo floob foo) ], '... got the right method list for Foo'); +is_deeply( + [ sort { $a->{name} cmp $b->{name} } $Foo->compute_all_applicable_methods() ], + [ + map { + { + name => $_, + class => 'Foo', + code => $Foo->get_method($_) + } + } qw( + FOO_CONSTANT + bang + bar + baz + blah + bling + evaled_foo + floob + foo + ) + ], + '... got the right list of applicable methods for Foo'); + is($Foo->remove_method('foo'), $foo, '... removed the foo method'); ok(!$Foo->has_method('foo'), '... !Foo->has_method(foo) we just removed it'); dies_ok { Foo->foo } '... cannot call Foo->foo because it is not there'; @@ -128,5 +198,46 @@ is(Bar->foo, 'Bar::foo v2', '... Bar->foo == "Bar::foo v2"'); is_deeply( [ sort $Bar->get_method_list ], - [ qw(bar foo) ], - '... got the right method list for Bar'); + [ qw(bar foo meta) ], + '... got the right method list for Bar'); + +is_deeply( + [ sort { $a->{name} cmp $b->{name} } $Bar->compute_all_applicable_methods() ], + [ + { + name => 'bang', + class => 'Foo', + code => $Foo->get_method('bang') + }, + { + name => 'bar', + class => 'Bar', + code => $Bar->get_method('bar') + }, + (map { + { + name => $_, + class => 'Foo', + code => $Foo->get_method($_) + } + } qw( + baz + blah + bling + evaled_foo + floob + )), + { + name => 'foo', + class => 'Bar', + code => $Bar->get_method('foo') + }, + { + name => 'meta', + class => 'Bar', + code => $Bar->get_method('meta') + } + ], + '... got the right list of applicable methods for Bar'); + +