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