1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275
|
#!/usr/bin/perl
# This tests Pod::Checker::Hyperlink
use Test::More;
use Pod::Checker;
my @answers = (
{
'line' => 12,
'node' => 'section',
'page' => 'manpage',
'type' => 'pod'
},
{
'line' => 14,
'node' => 'section',
'page' => '"manpage"',
'type' => 'pod',
},
{
'line' => 16,
'node' => 'section',
'page' => 'manpage',
'type' => 'pod',
},
{
'line' => 20,
'node' => 'section',
'page' => 'manpage',
'type' => 'pod',
},
{
'line' => 22,
'node' => 'section',
'page' => 'manpage',
'type' => 'pod',
},
{
'line' => 24,
'node' => 'section',
'page' => 'manpage',
'type' => 'pod',
},
{
'line' => 26,
'node' => 'section',
'page' => 'manpage',
'type' => 'pod',
},
{
'line' => 28,
'node' => 'section',
'page' => 'manpage',
'type' => 'pod',
},
{
'line' => 30,
'node' => 'section',
'page' => 'manpage',
'type' => 'pod',
},
{
'line' => 36,
'node' => '',
'page' => 'foo',
'type' => 'pod',
},
{
'line' => 38,
'node' => '',
'page' => 'bar',
'type' => 'pod'
},
{
'line' => 40,
'node' => 'bar',
'page' => 'foo',
'type' => 'pod'
},
{
'line' => 42,
'node' => 'baz boo',
'page' => 'foo',
'type' => 'pod'
},
{
'line' => 50,
'node' => 'baz boo',
'page' => 'foo bar',
'type' => 'pod',
},
{
'line' => 59,
'node' => '',
'page' => 'foobar',
'type' => 'pod',
},
{
'line' => 61,
'node' => 'bar',
'page' => 'foo',
'type' => 'pod'
},
{
'line' => 63,
'node' => 'Italic text',
'page' => 'foo',
'type' => 'pod'
},
{
'line' => 65,
'node' => 'Section with other markup',
'page' => 'foo|bar',
'type' => 'pod',
},
{
'line' => 67,
'node' => '',
'page' => 'chmod',
'type' => 'pod',
},
{
'line' => 69,
'node' => '',
'page' => 'chmod(2)',
'type' => 'man',
},
{
'line' => 71,
'node' => '',
'page' => 'chmod(2)',
'type' => 'man',
},
{
'line' => 73,
'node' => '',
'page' => 'chmod()',
'type' => 'pod',
},
{
'line' => 75,
'node' => '',
'page' => 'mailto:foo@cpan.org',
'type' => 'url',
},
{
'line' => 77,
'node' => '',
'page' => 'mailto:foo@cpan.org',
'type' => 'url',
},
{
'line' => 79,
'node' => '',
'page' => 'http://www.perl.org',
'type' => 'url',
},
{
'line' => 81,
'node' => '',
'page' => 'http://www.perl.org',
'type' => 'url',
},
);
plan 'tests' => @answers * 4 + 2;
my $checker = Pod::Checker->new( '-quiet' => 1);
$checker->parse_from_file(\*DATA);
is($checker->num_warnings, 0, "There were no warnings found");
is($checker->num_errors, 0, "There were no errors found");
my @links = $checker->hyperlinks;
for my $i (0 .. @links - 1) {
is($links[$i]->line(), $answers[$i]->{'line'}, "line() returns '$answers[$i]->{'line'}' correctly");
is($links[$i]->node(), $answers[$i]->{'node'}, "node() returns '$answers[$i]->{'node'}' correctly");
is($links[$i]->page(), $answers[$i]->{'page'}, "page() returns '$answers[$i]->{'page'}' correctly");
is($links[$i]->type(), $answers[$i]->{'type'}, "type() returns '$answers[$i]->{'type'}' correctly");
}
__END__
=head1 NAME
basic.pod - Extracted and expanded from podlators; test various link types
=head1 LINKS
These are all taken from the Pod::Parser tests.
Try out I<LOTS> of different ways of specifying references:
Reference the L<manpage/section>
Reference the L<"manpage"/section>
Reference the L<manpage/"section">
Now try it using the new "|" stuff ...
Reference the L<thistext|manpage/section>|
Reference the L<thistext | manpage / section>|
Reference the L<thistext| manpage/ section>|
Reference the L<thistext |manpage /section>|
Reference the L<thistext|manpage/"section">|
Reference the L<thistext|
manpage/
section>|
And then throw in a few new ones of my own.
L<foo>
L<foo|bar>
L<foo/bar>
L<foo/"baz boo">
L</bar> won't show up because is a link to this page
L</"baz boo"> won't show up because is a link to this page
L</baz boo> won't show up because is a link to this page
L<foo bar/baz boo>
L<"boo var baz"> won't show up because the quotes make it a link to this page
L<bar baz> won't show up because of blanks (deprecated) make it a link to this
page
L</boo>, L</bar>, and L</baz> won't show up because are links to this page
L<fooZ<>bar>
L<Testing I<italics>|foo/bar>
L<foo/I<Italic> text>
L<fooE<verbar>barZ<>/Section C<with> I<B<other> markup>>
L<chmod>
L<chmod(2)>
L<man page with text|chmod(2)>
L<chmod()>
L<mailto:foo@cpan.org>
L<Don't email us|mailto:foo@cpan.org>
L<http://www.perl.org>
L<hyperlink|http://www.perl.org>
=head1 bar
=head2 baz boo
=head3 boo var baz
=head4 bar baz
=cut
|