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