Move Parse::CPAN::Meta from ext/ to cpan/
[p5sagit/p5-mst-13.2.git] / ext / podlators / t / text.t
1 #!/usr/bin/perl -w
2 #
3 # text.t -- Additional specialized tests for Pod::Text.
4 #
5 # Copyright 2002, 2004, 2006, 2007, 2008, 2009 Russ Allbery <rra@stanford.edu>
6 #
7 # This program is free software; you may redistribute it and/or modify it
8 # under the same terms as Perl itself.
9
10 BEGIN {
11     chdir 't' if -d 't';
12     if ($ENV{PERL_CORE}) {
13         @INC = '../lib';
14     } else {
15         unshift (@INC, '../blib/lib');
16     }
17     unshift (@INC, '../blib/lib');
18     $| = 1;
19     print "1..6\n";
20 }
21
22 END {
23     print "not ok 1\n" unless $loaded;
24 }
25
26 use Pod::Text;
27 use Pod::Simple;
28
29 $loaded = 1;
30 print "ok 1\n";
31
32 my $parser = Pod::Text->new or die "Cannot create parser\n";
33 my $n = 2;
34 while (<DATA>) {
35     next until $_ eq "###\n";
36     open (TMP, '> tmp.pod') or die "Cannot create tmp.pod: $!\n";
37     while (<DATA>) {
38         last if $_ eq "###\n";
39         print TMP $_;
40     }
41     close TMP;
42     open (OUT, '> out.tmp') or die "Cannot create out.tmp: $!\n";
43     $parser->parse_from_file ('tmp.pod', \*OUT);
44     close OUT;
45     open (TMP, 'out.tmp') or die "Cannot open out.tmp: $!\n";
46     my $output;
47     {
48         local $/;
49         $output = <TMP>;
50     }
51     close TMP;
52     unlink ('tmp.pod', 'out.tmp');
53     my $expected = '';
54     while (<DATA>) {
55         last if $_ eq "###\n";
56         $expected .= $_;
57     }
58     if ($output eq $expected) {
59         print "ok $n\n";
60     } elsif ($n == 4 && $Pod::Simple::VERSION < 3.06) {
61         print "ok $n # skip Pod::Simple S<> parsing bug\n";
62     } else {
63         print "not ok $n\n";
64         print "Expected\n========\n$expected\nOutput\n======\n$output\n";
65     }
66     $n++;
67 }
68
69 # Below the marker are bits of POD and corresponding expected text output.
70 # This is used to test specific features or problems with Pod::Text.  The
71 # input and output are separated by lines containing only ###.
72
73 __DATA__
74
75 ###
76 =head1 PERIODS
77
78 This C<.> should be quoted.
79 ###
80 PERIODS
81     This "." should be quoted.
82
83 ###
84
85 ###
86 =head1 CE<lt>E<gt> WITH SPACES
87
88 What does C<<  this.  >> end up looking like?
89 ###
90 C<> WITH SPACES
91     What does "this." end up looking like?
92
93 ###
94
95 ###
96 =head1 Test of SE<lt>E<gt>
97
98 This is some S<  > whitespace.
99 ###
100 Test of S<>
101     This is some    whitespace.
102
103 ###
104
105 ###
106 =head1 Test of =for
107
108 =for comment
109 This won't be seen.
110
111 Yes.
112
113 =for text
114 This should be seen.
115
116 =for TEXT As should this.
117
118 =for man
119 But this shouldn't.
120
121 Some more text.
122 ###
123 Test of =for
124     Yes.
125
126 This should be seen.
127 As should this.
128     Some more text.
129
130 ###
131
132 ###
133 =pod
134
135 text
136
137   line1
138   
139   line3
140 ###
141     text
142
143       line1
144   
145       line3
146
147 ###