Commit | Line | Data |
dc4600b2 |
1 | use warnings; |
2 | use strict; |
3 | |
0fe5201a |
4 | use Test::More; |
32978f6e |
5 | use List::Util (); |
dc4600b2 |
6 | use lib qw(t/lib); |
7 | use DBICTest; |
0fe5201a |
8 | |
dc4600b2 |
9 | my @MODULES = ( |
10 | 'Test::Pod::Coverage 1.08', |
11 | 'Pod::Coverage 0.20', |
12 | ); |
f09cd1d4 |
13 | |
dc4600b2 |
14 | # Don't run tests for installs |
15 | unless ( 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 |
20 | foreach 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 |
42 | my $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 | |
32978f6e |
89 | 'DBIx::Class::ClassResolver::PassThrough' => { skip => 1 }, |
90 | 'DBIx::Class::Componentised' => { skip => 1 }, |
91 | 'DBIx::Class::Relationship::*' => { skip => 1 }, |
92 | 'DBIx::Class::ResultSetProxy' => { skip => 1 }, |
93 | 'DBIx::Class::ResultSourceProxy' => { skip => 1 }, |
94 | 'DBIx::Class::Storage::Statistics' => { skip => 1 }, |
eb7afcab |
95 | 'DBIx::Class::Storage::DBI::Replicated::Types' => { skip => 1 }, |
737416a4 |
96 | |
32978f6e |
97 | # test some specific components whose parents are exempt below |
98 | 'DBIx::Class::Storage::DBI::Replicated*' => {}, |
99 | 'DBIx::Class::Relationship::Base' => {}, |
737416a4 |
100 | |
32978f6e |
101 | # internals |
102 | 'DBIx::Class::SQLAHacks*' => { skip => 1 }, |
103 | 'DBIx::Class::Storage::DBI*' => { skip => 1 }, |
104 | 'SQL::Translator::*' => { skip => 1 }, |
737416a4 |
105 | |
32978f6e |
106 | # deprecated / backcompat stuff |
107 | 'DBIx::Class::CDBICompat*' => { skip => 1 }, |
108 | 'DBIx::Class::ResultSetManager' => { skip => 1 }, |
109 | 'DBIx::Class::DB' => { skip => 1 }, |
737416a4 |
110 | |
32978f6e |
111 | # skipped because the synopsis covers it clearly |
112 | 'DBIx::Class::InflateColumn::File' => { skip => 1 }, |
7eb4ecc8 |
113 | }; |
114 | |
32978f6e |
115 | my $ex_lookup = {}; |
116 | for my $string (keys %$exceptions) { |
117 | my $ex = $exceptions->{$string}; |
118 | $string =~ s/\*/'.*?'/ge; |
119 | my $re = qr/^$string$/; |
120 | $ex_lookup->{$re} = $ex; |
121 | } |
122 | |
123 | my @modules = sort { $a cmp $b } (Test::Pod::Coverage::all_modules()); |
124 | |
7eb4ecc8 |
125 | foreach my $module (@modules) { |
32978f6e |
126 | SKIP: { |
127 | |
128 | my ($match) = List::Util::first |
129 | { $module =~ $_ } |
130 | (sort { length $b <=> length $a || $b cmp $a } (keys %$ex_lookup) ) |
131 | ; |
132 | |
133 | my $ex = $ex_lookup->{$match} if $match; |
134 | |
135 | skip ("$module exempt", 1) if ($ex->{skip}); |
136 | |
137 | # build parms up from ignore list |
138 | my $parms = {}; |
139 | $parms->{trustme} = |
140 | [ map { qr/^$_$/ } @{ $ex->{ignore} } ] |
141 | if exists($ex->{ignore}); |
142 | |
143 | # run the test with the potentially modified parm set |
144 | pod_coverage_ok($module, $parms, "$module POD coverage"); |
145 | } |
7eb4ecc8 |
146 | } |
32978f6e |
147 | |
148 | done_testing; |