Upgrade to podlators-2.0.2
[p5sagit/p5-mst-13.2.git] / lib / Pod / t / basic.t
1 #!/usr/bin/perl -w
2 # $Id: basic.t,v 1.9 2006-01-20 21:20:58 eagle Exp $
3 #
4 # basic.t -- Basic tests for podlators.
5 #
6 # Copyright 2001, 2002, 2004 by Russ Allbery <rra@stanford.edu>
7 #
8 # This program is free software; you may redistribute it and/or modify it
9 # under the same terms as Perl itself.
10
11 BEGIN {
12     chdir 't' if -d 't';
13     if ($ENV{PERL_CORE}) {
14         @INC = '../lib';
15     } else {
16         unshift (@INC, '../blib/lib');
17     }
18     unshift (@INC, '../blib/lib');
19     $| = 1;
20     print "1..11\n";
21 }
22
23 END {
24     print "not ok 1\n" unless $loaded;
25 }
26
27 use Pod::Man;
28 use Pod::Text;
29 use Pod::Text::Overstrike;
30 use Pod::Text::Termcap;
31
32 # Find the path to the test source files.  This requires some fiddling when
33 # these tests are run as part of Perl core.
34 sub source_path {
35     my $file = shift;
36     if ($ENV{PERL_CORE}) {
37         require File::Spec;
38         my $updir = File::Spec->updir;
39         my $dir = File::Spec->catdir ($updir, 'lib', 'Pod', 't');
40         return File::Spec->catfile ($dir, $file);
41     } else {
42         return $file;
43     }
44 }
45
46 $loaded = 1;
47 print "ok 1\n";
48
49 # Hard-code a few values to try to get reproducible results.
50 $ENV{COLUMNS} = 80;
51 $ENV{TERM} = 'xterm';
52 $ENV{TERMCAP} = 'xterm:co=80:do=^J:md=\E[1m:us=\E[4m:me=\E[m';
53
54 # Map of translators to file extensions to find the formatted output to
55 # compare against.
56 my %translators = ('Pod::Man'              => 'man',
57                    'Pod::Text'             => 'txt',
58                    'Pod::Text::Color'      => 'clr',
59                    'Pod::Text::Overstrike' => 'ovr',
60                    'Pod::Text::Termcap'    => 'cap');
61
62 # Set default options to match those of pod2man and pod2text.
63 %options = (sentence => 0);
64
65 my $n = 2;
66 for (sort keys %translators) {
67     if ($_ eq 'Pod::Text::Color') {
68         eval { require Term::ANSIColor };
69         if ($@) {
70             print "ok $n # skip\n";
71             $n++;
72             print "ok $n # skip\n";
73             $n++;
74             next;
75         }
76         require Pod::Text::Color;
77     }
78     my $parser = $_->new (%options);
79     print (($parser && ref ($parser) eq $_) ? "ok $n\n" : "not ok $n\n");
80     $n++;
81
82     # For Pod::Man, strip out the autogenerated header up to the .TH title
83     # line.  That means that we don't check those things; oh well.  The header
84     # changes with each version change or touch of the input file.
85     $parser->parse_from_file (source_path ('basic.pod'), 'out.tmp');
86     if ($_ eq 'Pod::Man') {
87         open (TMP, 'out.tmp') or die "Cannot open out.tmp: $!\n";
88         open (OUTPUT, "> out.$translators{$_}")
89             or die "Cannot create out.$translators{$_}: $!\n";
90         local $_;
91         while (<TMP>) { last if /^\.TH/ }
92         print OUTPUT while <TMP>;
93         close OUTPUT;
94         close TMP;
95         unlink 'out.tmp';
96     } else {
97         rename ('out.tmp', "out.$translators{$_}")
98             or die "Cannot rename out.tmp: $!\n";
99     }
100     {
101         local $/;
102         open (MASTER, source_path ("basic.$translators{$_}"))
103             or die "Cannot open basic.$translators{$_}: $!\n";
104         open (OUTPUT, "out.$translators{$_}")
105             or die "Cannot open out.$translators{$_}: $!\n";
106         my $master = <MASTER>;
107         my $output = <OUTPUT>;
108         close MASTER;
109         close OUTPUT;
110
111         # OS/390 is EBCDIC, which uses a different character for ESC
112         # apparently.  Try to convert so that the test still works.
113         if ($^O eq 'os390' && $_ eq 'Pod::Text::Termcap') {
114             $output =~ tr/\033/\047/;
115         }
116
117         if ($master eq $output) {
118             print "ok $n\n";
119             unlink "out.$translators{$_}";
120         } else {
121             print "not ok $n\n";
122             print "# Non-matching output left in out.$translators{$_}\n";
123         }
124     }
125     $n++;
126 }