X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F55namespaces_cleaned.t;h=4caddf898948dacaa5f3c8c94e1ed0c8d84e8837;hb=af1f4f842ae446a3339b92b33851ea80c928f17a;hp=6a3cc025becba74bad11ab7e97cda00ddc95b533;hpb=e0b2dc7456481be6870a23a5927a99c8416c82f7;p=dbsrgits%2FDBIx-Class.git diff --git a/t/55namespaces_cleaned.t b/t/55namespaces_cleaned.t index 6a3cc02..4caddf8 100644 --- a/t/55namespaces_cleaned.t +++ b/t/55namespaces_cleaned.t @@ -1,3 +1,35 @@ +BEGIN { + if ($] < 5.010) { + + # Pre-5.10 perls pollute %INC on unsuccesfull module + # require, making it appear as if the module is already + # loaded on subsequent require()s + # Can't seem to find the exact RT/perldelta entry + # + # The reason we can't just use a sane, clean loader, is because + # if a Module require()s another module the %INC will still + # get filled with crap and we are back to square one. A global + # fix is really the only way for this test, as we try to load + # each available module separately, and have no control (nor + # knowledge) over their common dependencies. + # + # we want to do this here, in the very beginning, before even + # warnings/strict are loaded + + unshift @INC, 't/lib'; + require DBICTest::Util::OverrideRequire; + + DBICTest::Util::OverrideRequire::override_global_require( sub { + my $res = eval { $_[0]->() }; + if ($@ ne '') { + delete $INC{$_[1]}; + die $@; + } + return $res; + } ); + } +} + use strict; use warnings; @@ -15,16 +47,16 @@ use DBIx::Class::Carp; my @modules = grep { my $mod = $_; - # trap deprecation warnings and whatnot - local $SIG{__WARN__} = sub {}; - # not all modules are loadable at all times - eval "require $mod" ? $mod : do { - SKIP: { skip "Failed require of $mod: $@", 1 }; - (); + do { + # trap deprecation warnings and whatnot + local $SIG{__WARN__} = sub {}; + eval "require $mod"; + } ? $mod : do { + SKIP: { skip "Failed require of $mod: " . ($@ =~ /^(.+?)$/m)[0], 1 }; + (); # empty RV for @modules }; - } find_modules(); # have an exception table for old and/or weird code we are not sure @@ -40,6 +72,16 @@ my $skip_idx = { map { $_ => 1 } ( # G::L::D is unclean, but we never inherit from it 'DBIx::Class::Admin::Descriptive', 'DBIx::Class::Admin::Usage', + + # this subclass is expected to inherit whatever crap comes + # from the parent + 'DBIx::Class::ResultSet::Pager', + + # this is not part of the inheritance tree (plus is a temporary fix anyway) + 'DBIx::Class::GlobalDestruction', + + # Moo does not name its generated methods, fix pending + 'DBIx::Class::Storage::BlockRunner', ) }; my $has_cmop = eval { require Class::MOP }; @@ -72,14 +114,18 @@ for my $mod (@modules) { 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 + # overload is a funky thing - it is not cleaned, and its imports are named funny next if $name =~ /^\(/; my $gv = svref_2object($all_method_like{$name})->GV; my $origin = $gv->STASH->NAME; TODO: { - local $TODO = 'CAG does not clean its BEGIN constants' if $name =~ /^__CAG_/; + local $TODO; + if ($name =~ /^__CAG_/) { + $TODO = 'CAG does not clean its BEGIN constants'; + } + is ($gv->NAME, $name, "Properly named $name method at $origin" . ($origin eq $mod ? '' : " (inherited by $mod)" @@ -150,5 +196,4 @@ sub find_modules { return sort @modules; } - done_testing;