b7d81a839957fb17672a0c2ced06df5cc440549a
[dbsrgits/DBIx-Class.git] / t / 55namespaces_cleaned.t
1 BEGIN {
2   if ($] < 5.010) {
3
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]->() };
24       if ($@ ne '') {
25         delete $INC{$_[1]};
26         die $@;
27       }
28       return $res;
29     } );
30   }
31 }
32
33 use strict;
34 use warnings;
35
36 use Test::More;
37
38 use lib 't/lib';
39 use DBICTest;
40
41 use File::Find;
42 use File::Spec;
43 use B qw/svref_2object/;
44 use Package::Stash;
45
46 # makes sure we can load at least something
47 use DBIx::Class;
48 use DBIx::Class::Carp;
49
50 my @modules = grep {
51   my ($mod) = $_ =~ /(.+)/;
52
53   # not all modules are loadable at all times
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
61   };
62
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
67 my $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',
78
79   # this subclass is expected to inherit whatever crap comes
80   # from the parent
81   'DBIx::Class::ResultSet::Pager',
82 ) };
83
84 my $has_cmop = eval { require Class::MOP };
85
86 # can't use Class::Inspector for the mundane parts as it does not
87 # distinguish imports from anything else, what a crock of...
88 # Class::MOP is not always available either - hence just do it ourselves
89
90 my $seen; #inheritance means we will see the same method multiple times
91
92 for my $mod (@modules) {
93   SKIP: {
94     skip "$mod exempt from namespace checks",1 if $skip_idx->{$mod};
95
96     my %all_method_like = (map
97       { %{Package::Stash->new($_)->get_all_symbols('CODE')} }
98       (reverse @{mro::get_linear_isa($mod)})
99     );
100
101     my %parents = map { $_ => 1 } @{mro::get_linear_isa($mod)};
102
103     my %roles;
104     if ($has_cmop and my $mc = Class::MOP::class_of($mod)) {
105       if ($mc->can('calculate_all_roles_with_inheritance')) {
106         $roles{$_->name} = 1 for ($mc->calculate_all_roles_with_inheritance);
107       }
108     }
109
110     for my $name (keys %all_method_like) {
111
112       next if ( DBIx::Class::_ENV_::BROKEN_NAMESPACE_CLEAN and $name =~ /^carp(?:_unique|_once)?$/ );
113
114       # overload is a funky thing - it is not cleaned, and its imports are named funny
115       next if $name =~ /^\(/;
116
117       my $gv = svref_2object($all_method_like{$name})->GV;
118       my $origin = $gv->STASH->NAME;
119
120       TODO: {
121         local $TODO;
122         if ($name =~ /^__CAG_/) {
123           $TODO = 'CAG does not clean its BEGIN constants';
124         }
125
126         is ($gv->NAME, $name, "Properly named $name method at $origin" . ($origin eq $mod
127           ? ''
128           : " (inherited by $mod)"
129         ));
130       }
131
132       next if $seen->{"${origin}:${name}"}++;
133
134       if ($origin eq $mod) {
135         pass ("$name is a native $mod method");
136       }
137       elsif ($roles{$origin}) {
138         pass ("${mod}::${name} came from consumption of role $origin");
139       }
140       elsif ($parents{$origin}) {
141         pass ("${mod}::${name} came from proper parent-class $origin");
142       }
143       else {
144         my $via;
145         for (reverse @{mro::get_linear_isa($mod)} ) {
146           if ( ($_->can($name)||'') eq $all_method_like{$name} ) {
147             $via = $_;
148             last;
149           }
150         }
151         fail ("${mod}::${name} appears to have entered inheritance chain by import into "
152             . ($via || 'UNKNOWN')
153         );
154       }
155     }
156
157     next if DBIx::Class::_ENV_::BROKEN_NAMESPACE_CLEAN;
158
159     # some common import names (these should never ever be methods)
160     for my $f (qw/carp carp_once carp_unique croak confess cluck try catch finally/) {
161       if ($mod->can($f)) {
162         my $via;
163         for (reverse @{mro::get_linear_isa($mod)} ) {
164           if ( ($_->can($f)||'') eq $all_method_like{$f} ) {
165             $via = $_;
166             last;
167           }
168         }
169         fail ("Import $f leaked into method list of ${mod}, appears to have entered inheritance chain at "
170             . ($via || 'UNKNOWN')
171         );
172       }
173       else {
174         pass ("Import $f not leaked into method list of $mod");
175       }
176     }
177   }
178 }
179
180 sub find_modules {
181   my @modules;
182
183   find({
184     wanted => sub {
185       -f $_ or return;
186       s/\.pm$// or return;
187       s/^ (?: lib | blib . (?:lib|arch) ) . //x;
188       push @modules, join ('::', File::Spec->splitdir($_));
189     },
190     no_chdir => 1,
191   }, (-e 'blib' ? 'blib' : 'lib') );
192
193   return sort @modules;
194 }
195
196 done_testing;