Introduce DBIC-specific method attribute support
[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/
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/
517ba890 63 compare_relationship_keys
64 pk_depends_on
65 resolve_condition
66 resolve_join
67 resolve_prefetch
50261284 68 STORABLE_freeze
69 STORABLE_thaw
517ba890 70 /],
71 },
0b66414b 72 'DBIx::Class::ResultSet' => {
73 ignore => [qw/
74 STORABLE_freeze
75 STORABLE_thaw
76 /],
77 },
517ba890 78 'DBIx::Class::ResultSourceHandle' => {
79 ignore => [qw/
80 schema
81 source_moniker
bc984450 82 /],
83 },
b20edc27 84 'DBIx::Class::Storage' => {
517ba890 85 ignore => [qw/
86 schema
87 cursor
88 /]
7eb4ecc8 89 },
249963d4 90 'DBIx::Class::Schema' => {
517ba890 91 ignore => [qw/
92 setup_connection_class
93 /]
249963d4 94 },
32978f6e 95
96 'DBIx::Class::Schema::Versioned' => {
97 ignore => [ qw/
98 connection
517ba890 99 /]
00c937a2 100 },
737416a4 101
8c96bbc2 102 'DBIx::Class::Admin' => {
103 ignore => [ qw/
104 BUILD
105 /]
106 },
107
5f6a861d 108 'DBIx::Class::Storage::DBI::Replicated*' => {
109 ignore => [ qw/
110 connect_call_do_sql
111 disconnect_call_do_sql
112 /]
113 },
114
399b9455 115 'DBIx::Class::_TempExtlib*' => { skip => 1 },
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) =
87b12551 168 grep { $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
554484cb 176 skip ("$module not loadable", 1) unless eval { require_module($module) };
177
32978f6e 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
a109c954 185 Test::Pod::Coverage::pod_coverage_ok($module, $parms, "$module POD coverage");
32978f6e 186 }
7eb4ecc8 187}
32978f6e 188
189done_testing;