Proof of concept, no-downstream-changes-needed port to Moo
[dbsrgits/DBIx-Class-Historic.git] / xt / dist / pod_coverage.t
CommitLineData
c0329273 1BEGIN { do "./t/lib/ANFANG.pm" or die ( $@ || $! ) }
cb551b07 2use DBIx::Class::Optional::Dependencies -skip_all_without => 'test_podcoverage';
3
dc4600b2 4use warnings;
5use strict;
6
0fe5201a 7use Test::More;
554484cb 8use Module::Runtime 'require_module';
c0329273 9use lib 'maint/.Generated_Pod/lib';
dc4600b2 10use DBICTest;
6298a324 11use namespace::clean;
0fe5201a 12
f7ed0ed3 13# this has already been required but leave it here for CPANTS static analysis
14require Test::Pod::Coverage;
15
9b83fccd 16# Since this is about checking documentation, a little documentation
32978f6e 17# of what this is doing might be in order.
9b83fccd 18# The exceptions structure below is a hash keyed by the module
32978f6e 19# name. Any * in a name is treated like a wildcard and will behave
8c96bbc2 20# as expected. Modules are matched by longest string first, so
32978f6e 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
9b83fccd 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.
7eb4ecc8 29my $exceptions = {
30 'DBIx::Class' => {
517ba890 31 ignore => [qw/
517ba890 32 component_base_class
517ba890 33 /]
b20edc27 34 },
cb551b07 35 'DBIx::Class::Optional::Dependencies' => {
36 ignore => [qw/
37 croak
38 /]
39 },
70c28808 40 'DBIx::Class::Carp' => {
41 ignore => [qw/
42 unimport
43 /]
44 },
0c62fa59 45 'DBIx::Class::Row' => {
517ba890 46 ignore => [qw/
47 MULTICREATE_DEBUG
48 /],
0c62fa59 49 },
cde96798 50 'DBIx::Class::FilterColumn' => {
51 ignore => [qw/
52 new
53 update
491c8ff9 54 store_column
55 get_column
56 get_columns
b482a095 57 get_dirty_columns
dc6dadae 58 has_column_loaded
cde96798 59 /],
60 },
bc984450 61 'DBIx::Class::ResultSource' => {
62 ignore => [qw/
8ae83f0e 63 BUILD
64 BUILDARGS
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
399b9455 117 'DBIx::Class::_TempExtlib*' => { skip => 1 },
118
97f9f16e 119 'DBIx::Class::Admin::*' => { skip => 1 },
32978f6e 120 'DBIx::Class::ClassResolver::PassThrough' => { skip => 1 },
121 'DBIx::Class::Componentised' => { skip => 1 },
db29433c 122 'DBIx::Class::AccessorGroup' => { skip => 1 },
32978f6e 123 'DBIx::Class::Relationship::*' => { skip => 1 },
124 'DBIx::Class::ResultSetProxy' => { skip => 1 },
125 'DBIx::Class::ResultSourceProxy' => { skip => 1 },
9550c834 126 'DBIx::Class::ResultSource::*' => { skip => 1 },
32978f6e 127 'DBIx::Class::Storage::Statistics' => { skip => 1 },
eb7afcab 128 'DBIx::Class::Storage::DBI::Replicated::Types' => { skip => 1 },
a4367b26 129 'DBIx::Class::GlobalDestruction' => { skip => 1 },
9345b14c 130 'DBIx::Class::Storage::BlockRunner' => { skip => 1 }, # temporary
737416a4 131
32978f6e 132# test some specific components whose parents are exempt below
32978f6e 133 'DBIx::Class::Relationship::Base' => {},
d5dedbd6 134 'DBIx::Class::SQLMaker::LimitDialects' => {},
737416a4 135
32978f6e 136# internals
b1dbf716 137 'DBIx::Class::_Util' => { skip => 1 },
d5dedbd6 138 'DBIx::Class::SQLMaker*' => { skip => 1 },
9fc20b28 139 'DBIx::Class::SQLAHacks*' => { skip => 1 },
32978f6e 140 'DBIx::Class::Storage::DBI*' => { skip => 1 },
141 'SQL::Translator::*' => { skip => 1 },
737416a4 142
32978f6e 143# deprecated / backcompat stuff
1b6fe47d 144 'DBIx::Class::Serialize::Storable' => { skip => 1 },
32978f6e 145 'DBIx::Class::CDBICompat*' => { skip => 1 },
146 'DBIx::Class::ResultSetManager' => { skip => 1 },
147 'DBIx::Class::DB' => { skip => 1 },
737416a4 148
32978f6e 149# skipped because the synopsis covers it clearly
150 'DBIx::Class::InflateColumn::File' => { skip => 1 },
cd122820 151
152# internal subclass, nothing to POD
153 'DBIx::Class::ResultSet::Pager' => { skip => 1 },
7eb4ecc8 154};
155
32978f6e 156my $ex_lookup = {};
157for 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
47589465 164my @modules = sort { $a cmp $b } Test::Pod::Coverage::all_modules('lib');
32978f6e 165
7eb4ecc8 166foreach my $module (@modules) {
32978f6e 167 SKIP: {
168
6298a324 169 my ($match) =
87b12551 170 grep { $module =~ $_ }
32978f6e 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
554484cb 178 skip ("$module not loadable", 1) unless eval { require_module($module) };
179
32978f6e 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
a109c954 187 Test::Pod::Coverage::pod_coverage_ok($module, $parms, "$module POD coverage");
32978f6e 188 }
7eb4ecc8 189}
32978f6e 190
191done_testing;