Really make sure xt/ tests run on non-plain installs (fix c26b30de)
[dbsrgits/DBIx-Class.git] / xt / dist / pod_coverage.t
1 use DBIx::Class::Optional::Dependencies -skip_all_without => 'test_podcoverage';
2
3 use warnings;
4 use strict;
5
6 use Test::More;
7 use List::Util 'first';
8 use Module::Runtime 'require_module';
9 use lib qw(t/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             mk_classdata
35             mk_classaccessor
36         /]
37     },
38     'DBIx::Class::Optional::Dependencies' => {
39         ignore => [qw/
40             croak
41         /]
42     },
43     'DBIx::Class::Carp' => {
44         ignore => [qw/
45             unimport
46         /]
47     },
48     'DBIx::Class::Row' => {
49         ignore => [qw/
50             MULTICREATE_DEBUG
51         /],
52     },
53     'DBIx::Class::FilterColumn' => {
54         ignore => [qw/
55             new
56             update
57             store_column
58             get_column
59             get_columns
60             has_column_loaded
61         /],
62     },
63     'DBIx::Class::ResultSource' => {
64         ignore => [qw/
65             compare_relationship_keys
66             pk_depends_on
67             resolve_condition
68             resolve_join
69             resolve_prefetch
70             STORABLE_freeze
71             STORABLE_thaw
72         /],
73     },
74     'DBIx::Class::ResultSet' => {
75         ignore => [qw/
76             STORABLE_freeze
77             STORABLE_thaw
78         /],
79     },
80     'DBIx::Class::ResultSourceHandle' => {
81         ignore => [qw/
82             schema
83             source_moniker
84         /],
85     },
86     'DBIx::Class::Storage' => {
87         ignore => [qw/
88             schema
89             cursor
90         /]
91     },
92     'DBIx::Class::Schema' => {
93         ignore => [qw/
94             setup_connection_class
95         /]
96     },
97
98     'DBIx::Class::Schema::Versioned' => {
99         ignore => [ qw/
100             connection
101         /]
102     },
103
104     'DBIx::Class::Admin'        => {
105         ignore => [ qw/
106             BUILD
107         /]
108      },
109
110     'DBIx::Class::Storage::DBI::Replicated*'        => {
111         ignore => [ qw/
112             connect_call_do_sql
113             disconnect_call_do_sql
114         /]
115     },
116
117     'DBIx::Class::Admin::*'                         => { skip => 1 },
118     'DBIx::Class::ClassResolver::PassThrough'       => { skip => 1 },
119     'DBIx::Class::Componentised'                    => { skip => 1 },
120     'DBIx::Class::AccessorGroup'                    => { skip => 1 },
121     'DBIx::Class::Relationship::*'                  => { skip => 1 },
122     'DBIx::Class::ResultSetProxy'                   => { skip => 1 },
123     'DBIx::Class::ResultSourceProxy'                => { skip => 1 },
124     'DBIx::Class::ResultSource::*'                  => { skip => 1 },
125     'DBIx::Class::Storage::Statistics'              => { skip => 1 },
126     'DBIx::Class::Storage::DBI::Replicated::Types'  => { skip => 1 },
127     'DBIx::Class::GlobalDestruction'                => { skip => 1 },
128     'DBIx::Class::Storage::BlockRunner'             => { skip => 1 }, # temporary
129
130 # test some specific components whose parents are exempt below
131     'DBIx::Class::Relationship::Base'               => {},
132     'DBIx::Class::SQLMaker::LimitDialects'          => {},
133
134 # internals
135     'DBIx::Class::_Util'                            => { skip => 1 },
136     'DBIx::Class::SQLMaker*'                        => { skip => 1 },
137     'DBIx::Class::SQLAHacks*'                       => { skip => 1 },
138     'DBIx::Class::Storage::DBI*'                    => { skip => 1 },
139     'SQL::Translator::*'                            => { skip => 1 },
140
141 # deprecated / backcompat stuff
142     'DBIx::Class::Serialize::Storable'              => { skip => 1 },
143     'DBIx::Class::CDBICompat*'                      => { skip => 1 },
144     'DBIx::Class::ResultSetManager'                 => { skip => 1 },
145     'DBIx::Class::DB'                               => { skip => 1 },
146
147 # skipped because the synopsis covers it clearly
148     'DBIx::Class::InflateColumn::File'              => { skip => 1 },
149
150 # internal subclass, nothing to POD
151     'DBIx::Class::ResultSet::Pager'                 => { skip => 1 },
152 };
153
154 my $ex_lookup = {};
155 for my $string (keys %$exceptions) {
156   my $ex = $exceptions->{$string};
157   $string =~ s/\*/'.*?'/ge;
158   my $re = qr/^$string$/;
159   $ex_lookup->{$re} = $ex;
160 }
161
162 my @modules = sort { $a cmp $b } Test::Pod::Coverage::all_modules('lib');
163
164 foreach my $module (@modules) {
165   SKIP: {
166
167     my ($match) =
168       first { $module =~ $_ }
169       (sort { length $b <=> length $a || $b cmp $a } (keys %$ex_lookup) )
170     ;
171
172     my $ex = $ex_lookup->{$match} if $match;
173
174     skip ("$module exempt", 1) if ($ex->{skip});
175
176     skip ("$module not loadable", 1) unless eval { require_module($module) };
177
178     # build parms up from ignore list
179     my $parms = {};
180     $parms->{trustme} =
181       [ map { qr/^$_$/ } @{ $ex->{ignore} } ]
182         if exists($ex->{ignore});
183
184     # run the test with the potentially modified parm set
185     Test::Pod::Coverage::pod_coverage_ok($module, $parms, "$module POD coverage");
186   }
187 }
188
189 done_testing;