Test fixes
[dbsrgits/DBIx-Class.git] / t / 03podcoverage.t
CommitLineData
dc4600b2 1use warnings;
2use strict;
3
0fe5201a 4use Test::More;
32978f6e 5use List::Util ();
dc4600b2 6use lib qw(t/lib);
7use DBICTest;
0fe5201a 8
dc4600b2 9my @MODULES = (
10 'Test::Pod::Coverage 1.08',
11 'Pod::Coverage 0.20',
12);
f09cd1d4 13
dc4600b2 14# Don't run tests for installs
15unless ( DBICTest::AuthorCheck->is_author || $ENV{AUTOMATED_TESTING} || $ENV{RELEASE_TESTING} ) {
16 plan( skip_all => "Author tests not required for installation" );
17}
0fe5201a 18
dc4600b2 19# Load the testing modules
20foreach my $MODULE ( @MODULES ) {
21 eval "use $MODULE";
22 if ( $@ ) {
23 $ENV{RELEASE_TESTING}
24 ? die( "Failed to load required release-testing module $MODULE" )
25 : plan( skip_all => "$MODULE not available for testing" );
26 }
27}
7eb4ecc8 28
9b83fccd 29# Since this is about checking documentation, a little documentation
32978f6e 30# of what this is doing might be in order.
9b83fccd 31# The exceptions structure below is a hash keyed by the module
32978f6e 32# name. Any * in a name is treated like a wildcard and will behave
33# as expected. Modules are matched by longest string first, so
34# A::B::C will match even if there is A::B*
35
36# The value for each is a hash, which contains one or more
9b83fccd 37# (although currently more than one makes no sense) of the following
38# things:-
39# skip => a true value means this module is not checked
40# ignore => array ref containing list of methods which
41# do not need to be documented.
7eb4ecc8 42my $exceptions = {
43 'DBIx::Class' => {
517ba890 44 ignore => [qw/
45 MODIFY_CODE_ATTRIBUTES
46 component_base_class
47 mk_classdata
48 mk_classaccessor
49 /]
b20edc27 50 },
0c62fa59 51 'DBIx::Class::Row' => {
517ba890 52 ignore => [qw/
53 MULTICREATE_DEBUG
54 /],
0c62fa59 55 },
bc984450 56 'DBIx::Class::ResultSource' => {
57 ignore => [qw/
517ba890 58 compare_relationship_keys
59 pk_depends_on
60 resolve_condition
61 resolve_join
62 resolve_prefetch
63 /],
64 },
65 'DBIx::Class::ResultSourceHandle' => {
66 ignore => [qw/
67 schema
68 source_moniker
bc984450 69 /],
70 },
b20edc27 71 'DBIx::Class::Storage' => {
517ba890 72 ignore => [qw/
73 schema
74 cursor
75 /]
7eb4ecc8 76 },
249963d4 77 'DBIx::Class::Schema' => {
517ba890 78 ignore => [qw/
79 setup_connection_class
80 /]
249963d4 81 },
32978f6e 82
83 'DBIx::Class::Schema::Versioned' => {
84 ignore => [ qw/
85 connection
517ba890 86 /]
00c937a2 87 },
737416a4 88
5f6a861d 89 'DBIx::Class::Storage::DBI::Replicated*' => {
90 ignore => [ qw/
91 connect_call_do_sql
92 disconnect_call_do_sql
93 /]
94 },
95
f4d7449c 96 'DBIx::Class::Admin::Types' => { skip => 1 },
32978f6e 97 'DBIx::Class::ClassResolver::PassThrough' => { skip => 1 },
98 'DBIx::Class::Componentised' => { skip => 1 },
99 'DBIx::Class::Relationship::*' => { skip => 1 },
100 'DBIx::Class::ResultSetProxy' => { skip => 1 },
101 'DBIx::Class::ResultSourceProxy' => { skip => 1 },
102 'DBIx::Class::Storage::Statistics' => { skip => 1 },
eb7afcab 103 'DBIx::Class::Storage::DBI::Replicated::Types' => { skip => 1 },
737416a4 104
32978f6e 105# test some specific components whose parents are exempt below
32978f6e 106 'DBIx::Class::Relationship::Base' => {},
737416a4 107
32978f6e 108# internals
109 'DBIx::Class::SQLAHacks*' => { skip => 1 },
110 'DBIx::Class::Storage::DBI*' => { skip => 1 },
111 'SQL::Translator::*' => { skip => 1 },
737416a4 112
32978f6e 113# deprecated / backcompat stuff
114 'DBIx::Class::CDBICompat*' => { skip => 1 },
115 'DBIx::Class::ResultSetManager' => { skip => 1 },
116 'DBIx::Class::DB' => { skip => 1 },
737416a4 117
32978f6e 118# skipped because the synopsis covers it clearly
119 'DBIx::Class::InflateColumn::File' => { skip => 1 },
7eb4ecc8 120};
121
32978f6e 122my $ex_lookup = {};
123for my $string (keys %$exceptions) {
124 my $ex = $exceptions->{$string};
125 $string =~ s/\*/'.*?'/ge;
126 my $re = qr/^$string$/;
127 $ex_lookup->{$re} = $ex;
128}
129
130my @modules = sort { $a cmp $b } (Test::Pod::Coverage::all_modules());
131
7eb4ecc8 132foreach my $module (@modules) {
32978f6e 133 SKIP: {
134
135 my ($match) = List::Util::first
136 { $module =~ $_ }
137 (sort { length $b <=> length $a || $b cmp $a } (keys %$ex_lookup) )
138 ;
139
140 my $ex = $ex_lookup->{$match} if $match;
141
142 skip ("$module exempt", 1) if ($ex->{skip});
143
144 # build parms up from ignore list
145 my $parms = {};
146 $parms->{trustme} =
147 [ map { qr/^$_$/ } @{ $ex->{ignore} } ]
148 if exists($ex->{ignore});
149
150 # run the test with the potentially modified parm set
151 pod_coverage_ok($module, $parms, "$module POD coverage");
152 }
7eb4ecc8 153}
32978f6e 154
155done_testing;