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
|
# Testing a corpus of Pod files
use strict;
use warnings;
BEGIN {
use Config;
if ($Config::Config{'extensions'} !~ /\bEncode\b/) {
print "1..0 # Skip: Encode was not built\n";
exit 0;
}
if (ord("A") != 65) {
print "1..0 # Skip: Encode not fully working on non-ASCII platforms at this time\n";
exit 0;
}
}
#use Pod::Simple::Debug (10);
use Test::More;
use File::Spec;
use Cwd ();
use File::Basename ();
my(@testfiles, %xmlfiles, %wouldxml);
#use Pod::Simple::Debug (10);
BEGIN {
my $corpusdir = File::Spec->catdir(File::Basename::dirname(Cwd::abs_path(__FILE__)), 'corpus');
print "#Corpusdir: $corpusdir\n";
opendir(INDIR, $corpusdir) or die "Can't opendir corpusdir : $!";
my @f = map File::Spec::->catfile($corpusdir, $_), readdir(INDIR);
closedir(INDIR);
my %f;
@f{@f} = ();
foreach my $maybetest (sort @f) {
my $xml = $maybetest;
$xml =~ s/\.(txt|pod)$/\.xml/is or next;
$wouldxml{$maybetest} = $xml;
push @testfiles, $maybetest;
foreach my $x ($xml, uc($xml), lc($xml)) {
next unless exists $f{$x};
$xmlfiles{$maybetest} = $x;
last;
}
}
die "Too few test files (".@testfiles.")" unless @ARGV or @testfiles > 20;
@testfiles = @ARGV if @ARGV and !grep !m/\.txt/, @ARGV;
plan tests => (2*@testfiles - 1);
}
my $HACK = 1;
#@testfiles = ('nonesuch.txt');
my $skippy = ($] < 5.008) ? "skip because perl ($]) pre-dates v5.8.0" : 0;
if($skippy) {
print "# This is just perl v$], so I'm skipping many many tests.\n";
}
{
my @x = @testfiles;
print "# Files to test:\n";
while(@x) { print "# ", join(' ', splice @x,0,3), "\n" }
}
require Pod::Simple::DumpAsXML;
foreach my $f (@testfiles) {
my $xml = $xmlfiles{$f};
if($xml) {
print "#\n#To test $f against $xml\n";
} else {
print "#\n# $f has no xml to test it against\n";
}
my $outstring;
eval {
my $p = Pod::Simple::DumpAsXML->new;
$p->output_string( \$outstring );
$p->parse_file( $f );
undef $p;
};
if($@) {
my $x = "#** Couldn't parse $f:\n $@";
$x =~ s/([\n\r]+)/\n#** /g;
print $x, "\n";
ok 0;
ok 0;
next;
} else {
print "# OK, parsing $f generated ", length($outstring), " bytes\n";
ok 1;
}
die "Null outstring?" unless $outstring;
next if $f =~ /nonesuch/;
my $outfilename = ($HACK > 1) ? $wouldxml{$f} : "$wouldxml{$f}\_out";
if($HACK) {
open OUT, ">$outfilename" or die "Can't write-open $outfilename: $!\n";
binmode(OUT);
print OUT $outstring;
close(OUT);
}
unless($xml) {
print "# (no comparison done)\n";
ok 1;
next;
}
open(IN, "<$xml") or die "Can't read-open $xml: $!";
#binmode(IN);
local $/;
my $xmlsource = <IN>;
close(IN);
print "# There's errata!\n" if $outstring =~ m/start_line="-321"/;
if(
$xmlsource eq $outstring
or do {
$xmlsource =~ s/[\n\r]+/\n/g;
$outstring =~ s/[\n\r]+/\n/g;
$xmlsource eq $outstring;
}
) {
print "# (Perfect match to $xml)\n";
unlink $outfilename unless $outfilename =~ m/\.xml$/is;
ok 1;
next;
}
if($skippy) {
skip $skippy, 0;
} else {
print STDERR "# $outfilename and $xml don't match!\n";
print STDERR `diff $xml $outfilename`;
ok 0;
}
}
|