Commit | Line | Data |
dc4600b2 |
1 | use warnings; |
2 | use strict; |
3 | |
0fe5201a |
4 | use Test::More; |
6298a324 |
5 | use List::Util 'first'; |
dc4600b2 |
6 | use lib qw(t/lib); |
7 | use DBICTest; |
6298a324 |
8 | use namespace::clean; |
0fe5201a |
9 | |
dc4600b2 |
10 | # Don't run tests for installs |
39c9c72d |
11 | if ( DBICTest::RunMode->is_plain ) { |
dc4600b2 |
12 | plan( skip_all => "Author tests not required for installation" ); |
13 | } |
0fe5201a |
14 | |
a109c954 |
15 | require DBIx::Class; |
16 | unless ( DBIx::Class::Optional::Dependencies->req_ok_for ('test_podcoverage') ) { |
17 | my $missing = DBIx::Class::Optional::Dependencies->req_missing_for ('test_podcoverage'); |
18 | $ENV{RELEASE_TESTING} || DBICTest::AuthorCheck->is_author |
19 | ? die ("Failed to load release-testing module requirements: $missing") |
20 | : plan skip_all => "Test needs: $missing" |
dc4600b2 |
21 | } |
7eb4ecc8 |
22 | |
9b83fccd |
23 | # Since this is about checking documentation, a little documentation |
32978f6e |
24 | # of what this is doing might be in order. |
9b83fccd |
25 | # The exceptions structure below is a hash keyed by the module |
32978f6e |
26 | # name. Any * in a name is treated like a wildcard and will behave |
8c96bbc2 |
27 | # as expected. Modules are matched by longest string first, so |
32978f6e |
28 | # A::B::C will match even if there is A::B* |
29 | |
30 | # The value for each is a hash, which contains one or more |
9b83fccd |
31 | # (although currently more than one makes no sense) of the following |
32 | # things:- |
33 | # skip => a true value means this module is not checked |
34 | # ignore => array ref containing list of methods which |
35 | # do not need to be documented. |
7eb4ecc8 |
36 | my $exceptions = { |
37 | 'DBIx::Class' => { |
517ba890 |
38 | ignore => [qw/ |
39 | MODIFY_CODE_ATTRIBUTES |
40 | component_base_class |
41 | mk_classdata |
42 | mk_classaccessor |
43 | /] |
b20edc27 |
44 | }, |
0c62fa59 |
45 | 'DBIx::Class::Row' => { |
517ba890 |
46 | ignore => [qw/ |
47 | MULTICREATE_DEBUG |
48 | /], |
0c62fa59 |
49 | }, |
1f870d5a |
50 | 'DBIx::Class::Storage::TxnScopeGuard' => { |
51 | ignore => [qw/ |
52 | IS_BROKEN_PERL |
53 | /], |
54 | }, |
cde96798 |
55 | 'DBIx::Class::FilterColumn' => { |
56 | ignore => [qw/ |
57 | new |
58 | update |
491c8ff9 |
59 | store_column |
60 | get_column |
61 | get_columns |
cde96798 |
62 | /], |
63 | }, |
bc984450 |
64 | 'DBIx::Class::ResultSource' => { |
65 | ignore => [qw/ |
517ba890 |
66 | compare_relationship_keys |
67 | pk_depends_on |
68 | resolve_condition |
69 | resolve_join |
70 | resolve_prefetch |
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 | |
5f6a861d |
109 | 'DBIx::Class::Storage::DBI::Replicated*' => { |
110 | ignore => [ qw/ |
111 | connect_call_do_sql |
112 | disconnect_call_do_sql |
113 | /] |
114 | }, |
115 | |
97f9f16e |
116 | 'DBIx::Class::Admin::*' => { skip => 1 }, |
32978f6e |
117 | 'DBIx::Class::ClassResolver::PassThrough' => { skip => 1 }, |
118 | 'DBIx::Class::Componentised' => { skip => 1 }, |
119 | 'DBIx::Class::Relationship::*' => { skip => 1 }, |
120 | 'DBIx::Class::ResultSetProxy' => { skip => 1 }, |
121 | 'DBIx::Class::ResultSourceProxy' => { skip => 1 }, |
122 | 'DBIx::Class::Storage::Statistics' => { skip => 1 }, |
eb7afcab |
123 | 'DBIx::Class::Storage::DBI::Replicated::Types' => { skip => 1 }, |
737416a4 |
124 | |
32978f6e |
125 | # test some specific components whose parents are exempt below |
32978f6e |
126 | 'DBIx::Class::Relationship::Base' => {}, |
d5dedbd6 |
127 | 'DBIx::Class::SQLMaker::LimitDialects' => {}, |
737416a4 |
128 | |
32978f6e |
129 | # internals |
d5dedbd6 |
130 | 'DBIx::Class::SQLMaker*' => { skip => 1 }, |
9fc20b28 |
131 | 'DBIx::Class::SQLAHacks*' => { skip => 1 }, |
32978f6e |
132 | 'DBIx::Class::Storage::DBI*' => { skip => 1 }, |
133 | 'SQL::Translator::*' => { skip => 1 }, |
737416a4 |
134 | |
32978f6e |
135 | # deprecated / backcompat stuff |
136 | 'DBIx::Class::CDBICompat*' => { skip => 1 }, |
137 | 'DBIx::Class::ResultSetManager' => { skip => 1 }, |
138 | 'DBIx::Class::DB' => { skip => 1 }, |
737416a4 |
139 | |
32978f6e |
140 | # skipped because the synopsis covers it clearly |
141 | 'DBIx::Class::InflateColumn::File' => { skip => 1 }, |
7eb4ecc8 |
142 | }; |
143 | |
32978f6e |
144 | my $ex_lookup = {}; |
145 | for my $string (keys %$exceptions) { |
146 | my $ex = $exceptions->{$string}; |
147 | $string =~ s/\*/'.*?'/ge; |
148 | my $re = qr/^$string$/; |
149 | $ex_lookup->{$re} = $ex; |
150 | } |
151 | |
152 | my @modules = sort { $a cmp $b } (Test::Pod::Coverage::all_modules()); |
153 | |
7eb4ecc8 |
154 | foreach my $module (@modules) { |
32978f6e |
155 | SKIP: { |
156 | |
6298a324 |
157 | my ($match) = |
158 | first { $module =~ $_ } |
32978f6e |
159 | (sort { length $b <=> length $a || $b cmp $a } (keys %$ex_lookup) ) |
160 | ; |
161 | |
162 | my $ex = $ex_lookup->{$match} if $match; |
163 | |
164 | skip ("$module exempt", 1) if ($ex->{skip}); |
165 | |
166 | # build parms up from ignore list |
167 | my $parms = {}; |
168 | $parms->{trustme} = |
169 | [ map { qr/^$_$/ } @{ $ex->{ignore} } ] |
170 | if exists($ex->{ignore}); |
171 | |
172 | # run the test with the potentially modified parm set |
a109c954 |
173 | Test::Pod::Coverage::pod_coverage_ok($module, $parms, "$module POD coverage"); |
32978f6e |
174 | } |
7eb4ecc8 |
175 | } |
32978f6e |
176 | |
177 | done_testing; |