Upgrade to podlators-2.0.2
[p5sagit/p5-mst-13.2.git] / lib / Pod / t / termcap.t
1 #!/usr/bin/perl -w
2 # $Id: termcap.t,v 1.3 2006-01-20 21:20:58 eagle Exp $
3 #
4 # termcap.t -- Additional specialized tests for Pod::Text::Termcap.
5 #
6 # Copyright 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..2\n";
21 }
22
23 END {
24     print "not ok 1\n" unless $loaded;
25 }
26
27 # Hard-code a few values to try to get reproducible results.
28 $ENV{COLUMNS} = 80;
29 $ENV{TERM} = 'xterm';
30 $ENV{TERMCAP} = 'xterm:co=80:do=^J:md=\E[1m:us=\E[4m:me=\E[m';
31
32 use Pod::Text::Termcap;
33
34 $loaded = 1;
35 print "ok 1\n";
36
37 my $parser = Pod::Text::Termcap->new or die "Cannot create parser\n";
38 my $n = 2;
39 while (<DATA>) {
40     next until $_ eq "###\n";
41     open (TMP, '> tmp.pod') or die "Cannot create tmp.pod: $!\n";
42     while (<DATA>) {
43         last if $_ eq "###\n";
44         print TMP $_;
45     }
46     close TMP;
47     $parser->parse_from_file ('tmp.pod', 'out.tmp');
48     open (TMP, 'out.tmp') or die "Cannot open out.tmp: $!\n";
49     my $output;
50     {
51         local $/;
52         $output = <TMP>;
53     }
54     close TMP;
55     unlink ('tmp.pod', 'out.tmp');
56     my $expected = '';
57     while (<DATA>) {
58         last if $_ eq "###\n";
59         $expected .= $_;
60     }
61     if ($output eq $expected) {
62         print "ok $n\n";
63     } else {
64         print "not ok $n\n";
65         print "Expected\n========\n$expected\nOutput\n======\n$output\n";
66     }
67     $n++;
68 }
69
70 # Below the marker are bits of POD and corresponding expected output.  This is
71 # used to test specific features or problems with Pod::Text::Termcap.  The
72 # input and output are separated by lines containing only ###.
73
74 __DATA__
75
76 ###
77 =head1 WRAPPING
78
79 B<I<Do>> I<B<not>> B<I<include>> B<I<formatting codes when>> B<I<wrapping>>.
80 ###
81 \e[1mWRAPPING\e[m
82     \e[1m\e[4mDo\e[m\e[m \e[4m\e[1mnot\e[m\e[m \e[1m\e[4minclude\e[m\e[m \e[1m\e[4mformatting codes when\e[m\e[m \e[1m\e[4mwrapping\e[m\e[m.
83
84 ###