Upgrade to podlators-2.2.0
[p5sagit/p5-mst-13.2.git] / lib / Pod / t / text-encoding.t
CommitLineData
9f2f055a 1#!/usr/bin/perl -w
2#
3# text-encoding.t -- Test Pod::Text with various weird encoding combinations.
4#
5# Copyright 2002, 2004, 2006, 2007, 2008 by 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
10BEGIN {
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..4\n";
20
21 # PerlIO encoding support requires Perl 5.8 or later.
22 if ($] < 5.008) {
23 my $n;
24 for $n (1..4) {
25 print "ok $n # skip -- Perl 5.8 required for UTF-8 support\n";
26 }
27 exit;
28 }
29}
30
31END {
32 print "not ok 1\n" unless $loaded;
33}
34
35use Pod::Text;
36
37$loaded = 1;
38print "ok 1\n";
39
40my $n = 2;
41eval { binmode (\*DATA, ':raw') };
42eval { binmode (\*STDOUT, ':raw') };
43while (<DATA>) {
44 my %opts;
45 $opts{utf8} = 1 if $n == 4;
46 my $parser = Pod::Text->new (%opts) or die "Cannot create parser\n";
47 next until $_ eq "###\n";
48 open (TMP, '> tmp.pod') or die "Cannot create tmp.pod: $!\n";
49 eval { binmode (\*TMP, ':raw') };
50 while (<DATA>) {
51 last if $_ eq "###\n";
52 print TMP $_;
53 }
54 close TMP;
55 open (OUT, '> out.tmp') or die "Cannot create out.tmp: $!\n";
56 $parser->parse_from_file ('tmp.pod', \*OUT);
57 close OUT;
58 open (TMP, 'out.tmp') or die "Cannot open out.tmp: $!\n";
59 eval { binmode (\*TMP, ':raw') };
60 my $output;
61 {
62 local $/;
63 $output = <TMP>;
64 }
65 close TMP;
66 unlink ('tmp.pod', 'out.tmp');
67 my $expected = '';
68 while (<DATA>) {
69 last if $_ eq "###\n";
70 $expected .= $_;
71 }
72 if ($output eq $expected) {
73 print "ok $n\n";
74 } else {
75 print "not ok $n\n";
76 print "Expected\n========\n$expected\nOutput\n======\n$output\n";
77 }
78 $n++;
79}
80
81# Below the marker are bits of POD and corresponding expected text output.
82# This is used to test specific features or problems with Pod::Text. The
83# input and output are separated by lines containing only ###.
84
85__DATA__
86
87###
88=head1 Test of SE<lt>E<gt>
89
90This is S<some whitespace>.
91###
92Test of S<>
93 This is some whitespace.
94
95###
96
97###
98=encoding utf-8
99
100=head1 I can eat glass
101
102=over 4
103
104=item Esperanto
105
106Mi povas manÄ\9di vitron, Ä\9di ne damaÄ\9das min.
107
108=item Braille
109
110â \8aâ \80â \89â \81â \9dâ \80â \91â \81â \9eâ \80â \9bâ \87â \81â \8eâ \8eâ \80â \81â \9dâ \99â \80â \8aâ \9eâ \80â \99â \95â \91â \8eâ \9dâ \9eâ \80â \93â ¥â \97â \9eâ \80â \8dâ \91
111
112=item Hindi
113
114मà¥\88à¤\82 à¤\95ाà¤\81à¤\9a à¤\96ा सà¤\95ता हà¥\82à¤\81 à¤\94र मà¥\81à¤\9dà¥\87 à¤\89ससà¥\87 à¤\95à¥\8bà¤\88 à¤\9aà¥\8bà¤\9f नहà¥\80à¤\82 पहà¥\81à¤\82à¤\9aतà¥\80.
115
116=back
117
118See L<http://www.columbia.edu/kermit/utf8.html>
119###
120I can eat glass
121 Esperanto
122 Mi povas manÄ\9di vitron, Ä\9di ne damaÄ\9das min.
123
124 Braille
125 â \8aâ \80â \89â \81â \9dâ \80â \91â \81â \9eâ \80â \9bâ \87â \81â \8eâ \8eâ \80â \81â \9dâ \99â \80â \8aâ \9eâ
126 \80â \99â \95â \91â \8eâ \9dâ \9eâ \80â \93â ¥â \97â \9eâ \80â \8dâ \91
127
128 Hindi
129 मà¥\88à¤\82 à¤\95ाà¤\81à¤\9a à¤\96ा सà¤\95ता हà¥\82à¤\81 à¤\94र
130 मà¥\81à¤\9dà¥\87 à¤\89ससà¥\87 à¤\95à¥\8bà¤\88 à¤\9aà¥\8bà¤\9f नहà¥\80à¤\82
131 पहà¥\81à¤\82à¤\9aतà¥\80.
132
133 See <http://www.columbia.edu/kermit/utf8.html>
134
135###
136
137###
138=head1 Beyoncé
139###
140Beyoncé
141###