Upgrade to podlators-2.2.0
[p5sagit/p5-mst-13.2.git] / lib / Pod / t / text-encoding.t
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
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..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
31 END {
32     print "not ok 1\n" unless $loaded;
33 }
34
35 use Pod::Text;
36
37 $loaded = 1;
38 print "ok 1\n";
39
40 my $n = 2;
41 eval { binmode (\*DATA, ':raw') };
42 eval { binmode (\*STDOUT, ':raw') };
43 while (<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
90 This is S<some whitespace>.
91 ###
92 Test 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
106 Mi 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
118 See L<http://www.columbia.edu/kermit/utf8.html>
119 ###
120 I 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 ###
140 Beyoncé
141 ###