eb081570ad98cbd9ec7bbd01aa7d5d10f0c468b4
[dbsrgits/DBIx-Class.git] / t / 03podcoverage.t
1 use warnings;
2 use strict;
3
4 use Test::More;
5 use List::Util ();
6 use lib qw(t/lib);
7 use DBICTest;
8
9 # Don't run tests for installs
10 unless ( DBICTest::AuthorCheck->is_author || $ENV{AUTOMATED_TESTING} || $ENV{RELEASE_TESTING} ) {
11   plan( skip_all => "Author tests not required for installation" );
12 }
13
14 require DBIx::Class;
15 unless ( 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"
20 }
21
22 # Since this is about checking documentation, a little documentation
23 # of what this is doing might be in order.
24 # The exceptions structure below is a hash keyed by the module
25 # name. Any * in a name is treated like a wildcard and will behave
26 # as expected. Modules are matched by longest string first, so
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
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.
35 my $exceptions = {
36     'DBIx::Class' => {
37         ignore => [qw/
38             MODIFY_CODE_ATTRIBUTES
39             component_base_class
40             mk_classdata
41             mk_classaccessor
42         /]
43     },
44     'DBIx::Class::Row' => {
45         ignore => [qw/
46             MULTICREATE_DEBUG
47         /],
48     },
49     'DBIx::Class::FilterColumn' => {
50         ignore => [qw/
51             new
52             update
53             store_column
54             get_column
55             get_columns
56         /],
57     },
58     'DBIx::Class::ResultSource' => {
59         ignore => [qw/
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
71         /],
72     },
73     'DBIx::Class::Storage' => {
74         ignore => [qw/
75             schema
76             cursor
77         /]
78     },
79     'DBIx::Class::Schema' => {
80         ignore => [qw/
81             setup_connection_class
82         /]
83     },
84
85     'DBIx::Class::Schema::Versioned' => {
86         ignore => [ qw/
87             connection
88         /]
89     },
90
91     'DBIx::Class::Admin'        => {
92         ignore => [ qw/
93             BUILD
94         /]
95      },
96
97     'DBIx::Class::Storage::DBI::Replicated*'        => {
98         ignore => [ qw/
99             connect_call_do_sql
100             disconnect_call_do_sql
101         /]
102     },
103
104     'DBIx::Class::Admin::*'                         => { skip => 1 },
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 },
111     'DBIx::Class::Storage::DBI::Replicated::Types'  => { skip => 1 },
112
113 # test some specific components whose parents are exempt below
114     'DBIx::Class::Relationship::Base'               => {},
115
116 # internals
117     'DBIx::Class::SQLAHacks*'                       => { skip => 1 },
118     'DBIx::Class::Storage::DBI*'                    => { skip => 1 },
119     'SQL::Translator::*'                            => { skip => 1 },
120
121 # deprecated / backcompat stuff
122     'DBIx::Class::CDBICompat*'                      => { skip => 1 },
123     'DBIx::Class::ResultSetManager'                 => { skip => 1 },
124     'DBIx::Class::DB'                               => { skip => 1 },
125
126 # skipped because the synopsis covers it clearly
127     'DBIx::Class::InflateColumn::File'              => { skip => 1 },
128 };
129
130 my $ex_lookup = {};
131 for 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
138 my @modules = sort { $a cmp $b } (Test::Pod::Coverage::all_modules());
139
140 foreach my $module (@modules) {
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
159     Test::Pod::Coverage::pod_coverage_ok($module, $parms, "$module POD coverage");
160   }
161 }
162
163 done_testing;