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