X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F55namespaces_cleaned.t;h=6a3cc025becba74bad11ab7e97cda00ddc95b533;hb=f9cc85ce4c60c87d559247e28fe9a5f2ec18992c;hp=85c288b47d380a136b31626d3e328e97056c5975;hpb=a1249d49dffc7703374d3ea8aa3637609f21843e;p=dbsrgits%2FDBIx-Class.git diff --git a/t/55namespaces_cleaned.t b/t/55namespaces_cleaned.t index 85c288b..6a3cc02 100644 --- a/t/55namespaces_cleaned.t +++ b/t/55namespaces_cleaned.t @@ -6,9 +6,11 @@ use Test::More; use File::Find; use File::Spec; use B qw/svref_2object/; +use Package::Stash; # makes sure we can load at least something use DBIx::Class; +use DBIx::Class::Carp; my @modules = grep { my $mod = $_; @@ -52,15 +54,10 @@ for my $mod (@modules) { SKIP: { skip "$mod exempt from namespace checks",1 if $skip_idx->{$mod}; - my %all_method_like = do { - no strict 'refs'; - map { - my $m = $_; - map - { *{"${m}::$_"}{CODE} ? ( $_ => *{"${m}::$_"}{CODE} ) : () } - keys %{"${m}::"} - } (reverse @{mro::get_linear_isa($mod)}); - }; + my %all_method_like = (map + { %{Package::Stash->new($_)->get_all_symbols('CODE')} } + (reverse @{mro::get_linear_isa($mod)}) + ); my %parents = map { $_ => 1 } @{mro::get_linear_isa($mod)}; @@ -73,19 +70,24 @@ for my $mod (@modules) { for my $name (keys %all_method_like) { + next if ( DBIx::Class::_ENV_::BROKEN_NAMESPACE_CLEAN() and $name =~ /^carp(?:_unique|_once)?$/ ); + # overload is a funky thing - it is neither cleaned, and its imports are named funny next if $name =~ /^\(/; my $gv = svref_2object($all_method_like{$name})->GV; my $origin = $gv->STASH->NAME; - next if $seen->{"${origin}:${name}"}++; - TODO: { local $TODO = 'CAG does not clean its BEGIN constants' if $name =~ /^__CAG_/; - is ($gv->NAME, $name, "Properly named $name method at $origin"); + is ($gv->NAME, $name, "Properly named $name method at $origin" . ($origin eq $mod + ? '' + : " (inherited by $mod)" + )); } + next if $seen->{"${origin}:${name}"}++; + if ($origin eq $mod) { pass ("$name is a native $mod method"); } @@ -108,6 +110,27 @@ for my $mod (@modules) { ); } } + + next if DBIx::Class::_ENV_::BROKEN_NAMESPACE_CLEAN(); + + # some common import names (these should never ever be methods) + for my $f (qw/carp carp_once carp_unique croak confess cluck try catch finally/) { + if ($mod->can($f)) { + my $via; + for (reverse @{mro::get_linear_isa($mod)} ) { + if ( ($_->can($f)||'') eq $all_method_like{$f} ) { + $via = $_; + last; + } + } + fail ("Import $f leaked into method list of ${mod}, appears to have entered inheritance chain at " + . ($via || 'UNKNOWN') + ); + } + else { + pass ("Import $f not leaked into method list of $mod"); + } + } } }