One quick fix to the test for differences in error output.
[p5sagit/p5-mst-13.2.git] / lib / Pod / t / termcap.t
1 #!/usr/bin/perl -w
2 # $Id: termcap.t,v 1.2 2005/11/28 23:38:02 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 $n = 2;
38 while (<DATA>) {
39     next until $_ eq "###\n";
40     open (TMP, '> tmp.pod') or die "Cannot create tmp.pod: $!\n";
41     while (<DATA>) {
42         last if $_ eq "###\n";
43         print TMP $_;
44     }
45     close TMP;
46     my $parser = Pod::Text::Termcap->new or die "Cannot create parser\n";
47     $parser->parse_from_file ('tmp.pod', 'out.tmp');
48     undef $parser;
49     open (TMP, 'out.tmp') or die "Cannot open out.tmp: $!\n";
50     my $output;
51     {
52         local $/;
53         $output = <TMP>;
54     }
55     close TMP;
56     unlink ('tmp.pod', 'out.tmp');
57     my $expected = '';
58     while (<DATA>) {
59         last if $_ eq "###\n";
60         $expected .= $_;
61     }
62     if ($output eq $expected) {
63         print "ok $n\n";
64     } else {
65         print "not ok $n\n";
66         print "Expected\n========\n$expected\nOutput\n======\n$output\n";
67     }
68     $n++;
69 }
70
71 # Below the marker are bits of POD and corresponding expected output.  This is
72 # used to test specific features or problems with Pod::Text::Termcap.  The
73 # input and output are separated by lines containing only ###.
74
75 __DATA__
76
77 ###
78 =head1 WRAPPING
79
80 B<I<Do>> I<B<not>> B<I<include>> B<I<formatting codes when>> B<I<wrapping>>.
81 ###
82 \e[1mWRAPPING\e[m
83     \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.
84
85 ###