Start setting the 'c3' mro unambiguously everywhere
[dbsrgits/DBIx-Class.git] / xt / dist / pod_coverage.t
1 BEGIN { do "./t/lib/ANFANG.pm" or die ( $@ || $! ) }
2 use DBIx::Class::Optional::Dependencies -skip_all_without => 'test_podcoverage';
3
4 use warnings;
5 use strict;
6
7 use Test::More;
8 use Module::Runtime 'require_module';
9 use lib 'maint/.Generated_Pod/lib';
10 use DBICTest;
11 use namespace::clean;
12
13 # this has already been required but leave it here for CPANTS static analysis
14 require Test::Pod::Coverage;
15
16 # Since this is about checking documentation, a little documentation
17 # of what this is doing might be in order.
18 # The exceptions structure below is a hash keyed by the module
19 # name. Any * in a name is treated like a wildcard and will behave
20 # as expected. Modules are matched by longest string first, so
21 # A::B::C will match even if there is A::B*
22
23 # The value for each is a hash, which contains one or more
24 # (although currently more than one makes no sense) of the following
25 # things:-
26 #   skip   => a true value means this module is not checked
27 #   ignore => array ref containing list of methods which
28 #             do not need to be documented.
29 my $exceptions = {
30     'DBIx::Class' => {
31         ignore => [qw/
32             MODIFY_CODE_ATTRIBUTES
33             component_base_class
34             inject_base
35             mk_classdata
36             mk_classaccessor
37         /]
38     },
39     'DBIx::Class::Optional::Dependencies' => {
40         ignore => [qw/
41             croak
42         /]
43     },
44     'DBIx::Class::Carp' => {
45         ignore => [qw/
46             unimport
47         /]
48     },
49     'DBIx::Class::Row' => {
50         ignore => [qw/
51             MULTICREATE_DEBUG
52         /],
53     },
54     'DBIx::Class::FilterColumn' => {
55         ignore => [qw/
56             new
57             update
58             store_column
59             get_column
60             get_columns
61             get_dirty_columns
62             has_column_loaded
63         /],
64     },
65     'DBIx::Class::ResultSource' => {
66         ignore => [qw/
67             compare_relationship_keys
68             pk_depends_on
69             resolve_condition
70             resolve_join
71             resolve_prefetch
72             STORABLE_freeze
73             STORABLE_thaw
74         /],
75     },
76     'DBIx::Class::ResultSet' => {
77         ignore => [qw/
78             STORABLE_freeze
79             STORABLE_thaw
80         /],
81     },
82     'DBIx::Class::ResultSourceHandle' => {
83         ignore => [qw/
84             schema
85             source_moniker
86         /],
87     },
88     'DBIx::Class::Storage' => {
89         ignore => [qw/
90             schema
91             cursor
92         /]
93     },
94     'DBIx::Class::Schema' => {
95         ignore => [qw/
96             setup_connection_class
97         /]
98     },
99
100     'DBIx::Class::Schema::Versioned' => {
101         ignore => [ qw/
102             connection
103         /]
104     },
105
106     'DBIx::Class::Admin'        => {
107         ignore => [ qw/
108             BUILD
109         /]
110      },
111
112     'DBIx::Class::Storage::DBI::Replicated*'        => {
113         ignore => [ qw/
114             connect_call_do_sql
115             disconnect_call_do_sql
116         /]
117     },
118
119     'DBIx::Class::Admin::*'                         => { skip => 1 },
120     'DBIx::Class::ClassResolver::PassThrough'       => { skip => 1 },
121     'DBIx::Class::Componentised'                    => { skip => 1 },
122     'DBIx::Class::AccessorGroup'                    => { skip => 1 },
123     'DBIx::Class::Relationship::*'                  => { skip => 1 },
124     'DBIx::Class::ResultSetProxy'                   => { skip => 1 },
125     'DBIx::Class::ResultSourceProxy'                => { skip => 1 },
126     'DBIx::Class::ResultSource::*'                  => { skip => 1 },
127     'DBIx::Class::Storage::Statistics'              => { skip => 1 },
128     'DBIx::Class::Storage::DBI::Replicated::Types'  => { skip => 1 },
129     'DBIx::Class::GlobalDestruction'                => { skip => 1 },
130     'DBIx::Class::Storage::BlockRunner'             => { skip => 1 }, # temporary
131
132 # test some specific components whose parents are exempt below
133     'DBIx::Class::Relationship::Base'               => {},
134     'DBIx::Class::SQLMaker::LimitDialects'          => {},
135
136 # internals
137     'DBIx::Class::_Util'                            => { skip => 1 },
138     'DBIx::Class::SQLMaker*'                        => { skip => 1 },
139     'DBIx::Class::SQLAHacks*'                       => { skip => 1 },
140     'DBIx::Class::Storage::DBI*'                    => { skip => 1 },
141     'SQL::Translator::*'                            => { skip => 1 },
142
143 # deprecated / backcompat stuff
144     'DBIx::Class::Serialize::Storable'              => { skip => 1 },
145     'DBIx::Class::CDBICompat*'                      => { skip => 1 },
146     'DBIx::Class::ResultSetManager'                 => { skip => 1 },
147     'DBIx::Class::DB'                               => { skip => 1 },
148
149 # skipped because the synopsis covers it clearly
150     'DBIx::Class::InflateColumn::File'              => { skip => 1 },
151
152 # internal subclass, nothing to POD
153     'DBIx::Class::ResultSet::Pager'                 => { skip => 1 },
154 };
155
156 my $ex_lookup = {};
157 for my $string (keys %$exceptions) {
158   my $ex = $exceptions->{$string};
159   $string =~ s/\*/'.*?'/ge;
160   my $re = qr/^$string$/;
161   $ex_lookup->{$re} = $ex;
162 }
163
164 my @modules = sort { $a cmp $b } Test::Pod::Coverage::all_modules('lib');
165
166 foreach my $module (@modules) {
167   SKIP: {
168
169     my ($match) =
170       grep { $module =~ $_ }
171       (sort { length $b <=> length $a || $b cmp $a } (keys %$ex_lookup) )
172     ;
173
174     my $ex = $ex_lookup->{$match} if $match;
175
176     skip ("$module exempt", 1) if ($ex->{skip});
177
178     skip ("$module not loadable", 1) unless eval { require_module($module) };
179
180     # build parms up from ignore list
181     my $parms = {};
182     $parms->{trustme} =
183       [ map { qr/^$_$/ } @{ $ex->{ignore} } ]
184         if exists($ex->{ignore});
185
186     # run the test with the potentially modified parm set
187     Test::Pod::Coverage::pod_coverage_ok($module, $parms, "$module POD coverage");
188   }
189 }
190
191 done_testing;