Fix last remaining tests with -T under < 5.10
[dbsrgits/DBIx-Class.git] / xt / extra / internals / namespaces_cleaned.t
CommitLineData
c0329273 1BEGIN { do "./t/lib/ANFANG.pm" or die ( $@ || $! ) }
2
88b1530a 3BEGIN {
750a4ad2 4 if ( "$]" < 5.010) {
6a0067ea 5
45638aed 6 # Pre-5.10 perls pollute %INC on unsuccesfull module
7 # require, making it appear as if the module is already
8 # loaded on subsequent require()s
9 # Can't seem to find the exact RT/perldelta entry
10 #
11 # The reason we can't just use a sane, clean loader, is because
12 # if a Module require()s another module the %INC will still
13 # get filled with crap and we are back to square one. A global
14 # fix is really the only way for this test, as we try to load
15 # each available module separately, and have no control (nor
16 # knowledge) over their common dependencies.
17 #
18 # we want to do this here, in the very beginning, before even
19 # warnings/strict are loaded
20
c0329273 21
45638aed 22 require DBICTest::Util::OverrideRequire;
23
24 DBICTest::Util::OverrideRequire::override_global_require( sub {
25 my $res = eval { $_[0]->() };
6a0067ea 26 if ($@ ne '') {
45638aed 27 delete $INC{$_[1]};
6a0067ea 28 die $@;
88b1530a 29 }
45638aed 30 return $res;
31 } );
88b1530a 32 }
33}
34
9c1700e3 35use strict;
36use warnings;
37
652d9b76 38# FIXME This is a crock of shit, needs to go away
39# currently here to work around https://rt.cpan.org/Ticket/Display.html?id=74151
40# kill with fire when PS::XS / RT#74151 is *finally* fixed
41BEGIN {
42 my $PS_provider;
43
44 if ( "$]" < 5.010 ) {
45 require Package::Stash::PP;
46 $PS_provider = 'Package::Stash::PP';
47 }
48 else {
49 require Package::Stash;
50 $PS_provider = 'Package::Stash';
51 }
52 eval <<"EOS" or die $@;
53
54sub stash_for (\$) {
55 $PS_provider->new(\$_[0]);
56}
571;
58EOS
59}
60
9c1700e3 61use Test::More;
62
70cf159f 63use DBICTest;
9c1700e3 64use File::Find;
65use File::Spec;
66use B qw/svref_2object/;
67
68# makes sure we can load at least something
69use DBIx::Class;
90cfe42b 70use DBIx::Class::Carp;
9c1700e3 71
72my @modules = grep {
f3ec358e 73 my ($mod) = $_ =~ /(.+)/;
9c1700e3 74
9c1700e3 75 # not all modules are loadable at all times
88b1530a 76 do {
77 # trap deprecation warnings and whatnot
78 local $SIG{__WARN__} = sub {};
79 eval "require $mod";
80 } ? $mod : do {
81 SKIP: { skip "Failed require of $mod: " . ($@ =~ /^(.+?)$/m)[0], 1 };
82 (); # empty RV for @modules
9c1700e3 83 };
84
9c1700e3 85} find_modules();
86
87# have an exception table for old and/or weird code we are not sure
88# we *want* to clean in the first place
89my $skip_idx = { map { $_ => 1 } (
51ec0382 90 'SQL::Translator::Producer::DBIx::Class::File', # too crufty to touch
9c1700e3 91
92 # not sure how to handle type libraries
93 'DBIx::Class::Storage::DBI::Replicated::Types',
94 'DBIx::Class::Admin::Types',
95
96 # G::L::D is unclean, but we never inherit from it
97 'DBIx::Class::Admin::Descriptive',
98 'DBIx::Class::Admin::Usage',
cd122820 99
100 # this subclass is expected to inherit whatever crap comes
101 # from the parent
102 'DBIx::Class::ResultSet::Pager',
9f98c4b2 103
b1dbf716 104 # utility classes, not part of the inheritance chain
3f5e367a 105 'DBIx::Class::Optional::Dependencies',
9f98c4b2 106 'DBIx::Class::ResultSource::RowParser::Util',
b1dbf716 107 'DBIx::Class::_Util',
9c1700e3 108) };
109
bfcecabc 110my $has_moose = eval { require Moose::Util };
9c1700e3 111
8d73fcd4 112Sub::Defer::undefer_all();
113
9c1700e3 114my $seen; #inheritance means we will see the same method multiple times
115
116for my $mod (@modules) {
117 SKIP: {
118 skip "$mod exempt from namespace checks",1 if $skip_idx->{$mod};
119
90cfe42b 120 my %all_method_like = (map
652d9b76 121 { %{stash_for($_)->get_all_symbols('CODE')} }
90cfe42b 122 (reverse @{mro::get_linear_isa($mod)})
123 );
9c1700e3 124
125 my %parents = map { $_ => 1 } @{mro::get_linear_isa($mod)};
126
127 my %roles;
bfcecabc 128 if ($has_moose and my $mc = Moose::Util::find_meta($mod)) {
9c1700e3 129 if ($mc->can('calculate_all_roles_with_inheritance')) {
130 $roles{$_->name} = 1 for ($mc->calculate_all_roles_with_inheritance);
131 }
132 }
133
134 for my $name (keys %all_method_like) {
135
6a0067ea 136 # overload is a funky thing - it is not cleaned, and its imports are named funny
9c1700e3 137 next if $name =~ /^\(/;
138
139 my $gv = svref_2object($all_method_like{$name})->GV;
140 my $origin = $gv->STASH->NAME;
141
8b4d8064 142 is ($gv->NAME, $name, "Properly named $name method at $origin" . ($origin eq $mod
143 ? ''
144 : " (inherited by $mod)"
145 ));
9c1700e3 146
70c28808 147 next if $seen->{"${origin}:${name}"}++;
148
9c1700e3 149 if ($origin eq $mod) {
150 pass ("$name is a native $mod method");
151 }
152 elsif ($roles{$origin}) {
153 pass ("${mod}::${name} came from consumption of role $origin");
154 }
155 elsif ($parents{$origin}) {
156 pass ("${mod}::${name} came from proper parent-class $origin");
157 }
158 else {
159 my $via;
160 for (reverse @{mro::get_linear_isa($mod)} ) {
161 if ( ($_->can($name)||'') eq $all_method_like{$name} ) {
162 $via = $_;
163 last;
164 }
165 }
b5ce6748 166
167 # exception time
168 if (
169 ( $name eq 'import' and $via = 'Exporter' )
51ec0382 170 or
171 # jesus christ nobody had any idea how to design an interface back then
172 ( $name =~ /_trigger/ and $via = 'Class::Trigger' )
b5ce6748 173 ) {
174 pass("${mod}::${name} is a valid uncleaned import from ${name}");
175 }
176 else {
177 fail ("${mod}::${name} appears to have entered inheritance chain by import into "
178 . ($via || 'UNKNOWN')
179 );
180 }
9c1700e3 181 }
182 }
70c28808 183
184 # some common import names (these should never ever be methods)
185 for my $f (qw/carp carp_once carp_unique croak confess cluck try catch finally/) {
186 if ($mod->can($f)) {
187 my $via;
188 for (reverse @{mro::get_linear_isa($mod)} ) {
189 if ( ($_->can($f)||'') eq $all_method_like{$f} ) {
190 $via = $_;
191 last;
192 }
193 }
194 fail ("Import $f leaked into method list of ${mod}, appears to have entered inheritance chain at "
195 . ($via || 'UNKNOWN')
196 );
197 }
198 else {
199 pass ("Import $f not leaked into method list of $mod");
200 }
201 }
9c1700e3 202 }
203}
204
205sub find_modules {
206 my @modules;
207
35f4cebe 208 find( {
9c1700e3 209 wanted => sub {
210 -f $_ or return;
211 s/\.pm$// or return;
212 s/^ (?: lib | blib . (?:lib|arch) ) . //x;
213 push @modules, join ('::', File::Spec->splitdir($_));
214 },
215 no_chdir => 1,
35f4cebe 216 }, (
217 # find them in both lib and blib, duplicates are fine, since
218 # @INC is preadjusted for us by the harness
219 'lib',
220 ( -e 'blib' ? 'blib' : () ),
221 ));
9c1700e3 222
223 return sort @modules;
224}
225
9c1700e3 226done_testing;