And lose yet another dependency: List::Util (yes, I know it's core)
[dbsrgits/DBIx-Class.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/
32 MODIFY_CODE_ATTRIBUTES
33 component_base_class
34 mk_classdata
35 mk_classaccessor
36 /]
b20edc27 37 },
cb551b07 38 'DBIx::Class::Optional::Dependencies' => {
39 ignore => [qw/
40 croak
41 /]
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
b482a095 60 get_dirty_columns
dc6dadae 61 has_column_loaded
cde96798 62 /],
63 },
bc984450 64 'DBIx::Class::ResultSource' => {
65 ignore => [qw/
517ba890 66 compare_relationship_keys
67 pk_depends_on
68 resolve_condition
69 resolve_join
70 resolve_prefetch
50261284 71 STORABLE_freeze
72 STORABLE_thaw
517ba890 73 /],
74 },
0b66414b 75 'DBIx::Class::ResultSet' => {
76 ignore => [qw/
77 STORABLE_freeze
78 STORABLE_thaw
79 /],
80 },
517ba890 81 'DBIx::Class::ResultSourceHandle' => {
82 ignore => [qw/
83 schema
84 source_moniker
bc984450 85 /],
86 },
b20edc27 87 'DBIx::Class::Storage' => {
517ba890 88 ignore => [qw/
89 schema
90 cursor
91 /]
7eb4ecc8 92 },
249963d4 93 'DBIx::Class::Schema' => {
517ba890 94 ignore => [qw/
95 setup_connection_class
96 /]
249963d4 97 },
32978f6e 98
99 'DBIx::Class::Schema::Versioned' => {
100 ignore => [ qw/
101 connection
517ba890 102 /]
00c937a2 103 },
737416a4 104
8c96bbc2 105 'DBIx::Class::Admin' => {
106 ignore => [ qw/
107 BUILD
108 /]
109 },
110
5f6a861d 111 'DBIx::Class::Storage::DBI::Replicated*' => {
112 ignore => [ qw/
113 connect_call_do_sql
114 disconnect_call_do_sql
115 /]
116 },
117
97f9f16e 118 'DBIx::Class::Admin::*' => { skip => 1 },
32978f6e 119 'DBIx::Class::ClassResolver::PassThrough' => { skip => 1 },
120 'DBIx::Class::Componentised' => { skip => 1 },
db29433c 121 'DBIx::Class::AccessorGroup' => { skip => 1 },
32978f6e 122 'DBIx::Class::Relationship::*' => { skip => 1 },
123 'DBIx::Class::ResultSetProxy' => { skip => 1 },
124 'DBIx::Class::ResultSourceProxy' => { skip => 1 },
9550c834 125 'DBIx::Class::ResultSource::*' => { skip => 1 },
32978f6e 126 'DBIx::Class::Storage::Statistics' => { skip => 1 },
eb7afcab 127 'DBIx::Class::Storage::DBI::Replicated::Types' => { skip => 1 },
a4367b26 128 'DBIx::Class::GlobalDestruction' => { skip => 1 },
9345b14c 129 'DBIx::Class::Storage::BlockRunner' => { skip => 1 }, # temporary
737416a4 130
32978f6e 131# test some specific components whose parents are exempt below
32978f6e 132 'DBIx::Class::Relationship::Base' => {},
d5dedbd6 133 'DBIx::Class::SQLMaker::LimitDialects' => {},
737416a4 134
32978f6e 135# internals
b1dbf716 136 'DBIx::Class::_Util' => { skip => 1 },
d5dedbd6 137 'DBIx::Class::SQLMaker*' => { skip => 1 },
9fc20b28 138 'DBIx::Class::SQLAHacks*' => { skip => 1 },
32978f6e 139 'DBIx::Class::Storage::DBI*' => { skip => 1 },
140 'SQL::Translator::*' => { skip => 1 },
737416a4 141
32978f6e 142# deprecated / backcompat stuff
1b6fe47d 143 'DBIx::Class::Serialize::Storable' => { skip => 1 },
32978f6e 144 'DBIx::Class::CDBICompat*' => { skip => 1 },
145 'DBIx::Class::ResultSetManager' => { skip => 1 },
146 'DBIx::Class::DB' => { skip => 1 },
737416a4 147
32978f6e 148# skipped because the synopsis covers it clearly
149 'DBIx::Class::InflateColumn::File' => { skip => 1 },
cd122820 150
151# internal subclass, nothing to POD
152 'DBIx::Class::ResultSet::Pager' => { skip => 1 },
7eb4ecc8 153};
154
32978f6e 155my $ex_lookup = {};
156for my $string (keys %$exceptions) {
157 my $ex = $exceptions->{$string};
158 $string =~ s/\*/'.*?'/ge;
159 my $re = qr/^$string$/;
160 $ex_lookup->{$re} = $ex;
161}
162
47589465 163my @modules = sort { $a cmp $b } Test::Pod::Coverage::all_modules('lib');
32978f6e 164
7eb4ecc8 165foreach my $module (@modules) {
32978f6e 166 SKIP: {
167
6298a324 168 my ($match) =
87b12551 169 grep { $module =~ $_ }
32978f6e 170 (sort { length $b <=> length $a || $b cmp $a } (keys %$ex_lookup) )
171 ;
172
173 my $ex = $ex_lookup->{$match} if $match;
174
175 skip ("$module exempt", 1) if ($ex->{skip});
176
554484cb 177 skip ("$module not loadable", 1) unless eval { require_module($module) };
178
32978f6e 179 # build parms up from ignore list
180 my $parms = {};
181 $parms->{trustme} =
182 [ map { qr/^$_$/ } @{ $ex->{ignore} } ]
183 if exists($ex->{ignore});
184
185 # run the test with the potentially modified parm set
a109c954 186 Test::Pod::Coverage::pod_coverage_ok($module, $parms, "$module POD coverage");
32978f6e 187 }
7eb4ecc8 188}
32978f6e 189
190done_testing;