A number of equivalent-logic ::FC refactors
[dbsrgits/DBIx-Class.git] / xt / podcoverage.t
CommitLineData
dc4600b2 1use warnings;
2use strict;
3
0fe5201a 4use Test::More;
6298a324 5use List::Util 'first';
3e2a5d5d 6use lib qw(t/lib maint/.Generated_Pod/lib);
dc4600b2 7use DBICTest;
6298a324 8use namespace::clean;
0fe5201a 9
a109c954 10require DBIx::Class;
11unless ( DBIx::Class::Optional::Dependencies->req_ok_for ('test_podcoverage') ) {
12 my $missing = DBIx::Class::Optional::Dependencies->req_missing_for ('test_podcoverage');
20884f55 13 $ENV{RELEASE_TESTING}
a109c954 14 ? die ("Failed to load release-testing module requirements: $missing")
15 : plan skip_all => "Test needs: $missing"
dc4600b2 16}
7eb4ecc8 17
f7ed0ed3 18# this has already been required but leave it here for CPANTS static analysis
19require Test::Pod::Coverage;
20
9b83fccd 21# Since this is about checking documentation, a little documentation
32978f6e 22# of what this is doing might be in order.
9b83fccd 23# The exceptions structure below is a hash keyed by the module
32978f6e 24# name. Any * in a name is treated like a wildcard and will behave
8c96bbc2 25# as expected. Modules are matched by longest string first, so
32978f6e 26# A::B::C will match even if there is A::B*
27
28# The value for each is a hash, which contains one or more
9b83fccd 29# (although currently more than one makes no sense) of the following
30# things:-
31# skip => a true value means this module is not checked
32# ignore => array ref containing list of methods which
33# do not need to be documented.
7eb4ecc8 34my $exceptions = {
35 'DBIx::Class' => {
517ba890 36 ignore => [qw/
37 MODIFY_CODE_ATTRIBUTES
38 component_base_class
39 mk_classdata
40 mk_classaccessor
41 /]
b20edc27 42 },
70c28808 43 'DBIx::Class::Carp' => {
44 ignore => [qw/
45 unimport
46 /]
47 },
0c62fa59 48 'DBIx::Class::Row' => {
517ba890 49 ignore => [qw/
50 MULTICREATE_DEBUG
51 /],
0c62fa59 52 },
cde96798 53 'DBIx::Class::FilterColumn' => {
54 ignore => [qw/
55 new
56 update
491c8ff9 57 store_column
58 get_column
59 get_columns
dc6dadae 60 has_column_loaded
cde96798 61 /],
62 },
bc984450 63 'DBIx::Class::ResultSource' => {
64 ignore => [qw/
517ba890 65 compare_relationship_keys
66 pk_depends_on
67 resolve_condition
68 resolve_join
69 resolve_prefetch
50261284 70 STORABLE_freeze
71 STORABLE_thaw
517ba890 72 /],
73 },
0b66414b 74 'DBIx::Class::ResultSet' => {
75 ignore => [qw/
76 STORABLE_freeze
77 STORABLE_thaw
78 /],
79 },
517ba890 80 'DBIx::Class::ResultSourceHandle' => {
81 ignore => [qw/
82 schema
83 source_moniker
bc984450 84 /],
85 },
b20edc27 86 'DBIx::Class::Storage' => {
517ba890 87 ignore => [qw/
88 schema
89 cursor
90 /]
7eb4ecc8 91 },
249963d4 92 'DBIx::Class::Schema' => {
517ba890 93 ignore => [qw/
94 setup_connection_class
95 /]
249963d4 96 },
32978f6e 97
98 'DBIx::Class::Schema::Versioned' => {
99 ignore => [ qw/
100 connection
517ba890 101 /]
00c937a2 102 },
737416a4 103
8c96bbc2 104 'DBIx::Class::Admin' => {
105 ignore => [ qw/
106 BUILD
107 /]
108 },
109
5f6a861d 110 'DBIx::Class::Storage::DBI::Replicated*' => {
111 ignore => [ qw/
112 connect_call_do_sql
113 disconnect_call_do_sql
114 /]
115 },
116
97f9f16e 117 'DBIx::Class::Admin::*' => { skip => 1 },
32978f6e 118 'DBIx::Class::ClassResolver::PassThrough' => { skip => 1 },
119 'DBIx::Class::Componentised' => { skip => 1 },
db29433c 120 'DBIx::Class::AccessorGroup' => { skip => 1 },
32978f6e 121 'DBIx::Class::Relationship::*' => { skip => 1 },
122 'DBIx::Class::ResultSetProxy' => { skip => 1 },
123 'DBIx::Class::ResultSourceProxy' => { skip => 1 },
9550c834 124 'DBIx::Class::ResultSource::*' => { skip => 1 },
32978f6e 125 'DBIx::Class::Storage::Statistics' => { skip => 1 },
eb7afcab 126 'DBIx::Class::Storage::DBI::Replicated::Types' => { skip => 1 },
a4367b26 127 'DBIx::Class::GlobalDestruction' => { skip => 1 },
9345b14c 128 'DBIx::Class::Storage::BlockRunner' => { skip => 1 }, # temporary
737416a4 129
32978f6e 130# test some specific components whose parents are exempt below
32978f6e 131 'DBIx::Class::Relationship::Base' => {},
d5dedbd6 132 'DBIx::Class::SQLMaker::LimitDialects' => {},
737416a4 133
32978f6e 134# internals
b1dbf716 135 'DBIx::Class::_Util' => { skip => 1 },
d5dedbd6 136 'DBIx::Class::SQLMaker*' => { skip => 1 },
9fc20b28 137 'DBIx::Class::SQLAHacks*' => { skip => 1 },
32978f6e 138 'DBIx::Class::Storage::DBI*' => { skip => 1 },
139 'SQL::Translator::*' => { skip => 1 },
737416a4 140
32978f6e 141# deprecated / backcompat stuff
1b6fe47d 142 'DBIx::Class::Serialize::Storable' => { skip => 1 },
32978f6e 143 'DBIx::Class::CDBICompat*' => { skip => 1 },
144 'DBIx::Class::ResultSetManager' => { skip => 1 },
145 'DBIx::Class::DB' => { skip => 1 },
737416a4 146
32978f6e 147# skipped because the synopsis covers it clearly
148 'DBIx::Class::InflateColumn::File' => { skip => 1 },
cd122820 149
150# internal subclass, nothing to POD
151 'DBIx::Class::ResultSet::Pager' => { skip => 1 },
7eb4ecc8 152};
153
32978f6e 154my $ex_lookup = {};
155for 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
47589465 162my @modules = sort { $a cmp $b } Test::Pod::Coverage::all_modules('lib');
32978f6e 163
7eb4ecc8 164foreach my $module (@modules) {
32978f6e 165 SKIP: {
166
6298a324 167 my ($match) =
168 first { $module =~ $_ }
32978f6e 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 # build parms up from ignore list
177 my $parms = {};
178 $parms->{trustme} =
179 [ map { qr/^$_$/ } @{ $ex->{ignore} } ]
180 if exists($ex->{ignore});
181
182 # run the test with the potentially modified parm set
a109c954 183 Test::Pod::Coverage::pod_coverage_ok($module, $parms, "$module POD coverage");
32978f6e 184 }
7eb4ecc8 185}
32978f6e 186
187done_testing;