1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
#!/usr/bin/perl -w
#
# Test Pod::Text with a PerlIO UTF-8 encoding layer.
#
# Copyright 2002, 2004, 2006-2010, 2012, 2014, 2018
# Russ Allbery <rra@cpan.org>
#
# This program is free software; you may redistribute it and/or modify it
# under the same terms as Perl itself.
#
# SPDX-License-Identifier: GPL-1.0-or-later OR Artistic-1.0-Perl
BEGIN {
chdir 't' if -d 't';
if ($ENV{PERL_CORE}) {
@INC = '../lib';
}
unshift (@INC, '../blib/lib');
$| = 1;
}
use strict;
use Test::More;
# UTF-8 support requires Perl 5.8 or later.
BEGIN {
if ($] < 5.008) {
plan skip_all => 'Perl 5.8 required for UTF-8 support';
} else {
plan tests => 4;
}
}
BEGIN { use_ok ('Pod::Text') }
# Force UTF-8 on all relevant file handles. Hide this in a string eval so
# that older versions of Perl don't croak and minimum-version tests still
# pass.
eval 'binmode (\*DATA, ":encoding(utf-8)")';
eval 'binmode (\*STDOUT, ":encoding(utf-8)")';
my $builder = Test::More->builder;
eval 'binmode ($builder->output, ":encoding(utf-8)")';
eval 'binmode ($builder->failure_output, ":encoding(utf-8)")';
my $parser = Pod::Text->new (utf8 => 1);
isa_ok ($parser, 'Pod::Text', 'Parser object');
my $n = 1;
while (<DATA>) {
next until $_ eq "###\n";
open (TMP, "> tmp$$.pod") or die "Cannot create tmp$$.pod: $!\n";
eval 'binmode (\*TMP, ":encoding(utf-8)")';
print TMP "=encoding UTF-8\n\n";
while (<DATA>) {
last if $_ eq "###\n";
print TMP $_;
}
close TMP;
open (OUT, "> out$$.tmp") or die "Cannot create out$$.tmp: $!\n";
eval 'binmode (\*OUT, ":encoding(utf-8)")';
$parser->parse_from_file ("tmp$$.pod", \*OUT);
close OUT;
open (TMP, "out$$.tmp") or die "Cannot open out$$.tmp: $!\n";
eval 'binmode (\*TMP, ":encoding(utf-8)")';
my $output;
{
local $/;
$output = <TMP>;
}
close TMP;
1 while unlink ("tmp$$.pod", "out$$.tmp");
my $expected = '';
while (<DATA>) {
last if $_ eq "###\n";
$expected .= $_;
}
is ($output, $expected, "Output correct for test $n");
$n++;
}
# Below the marker are bits of POD and corresponding expected text output.
# This is used to test specific features or problems with Pod::Text. The
# input and output are separated by lines containing only ###.
__DATA__
###
=head1 Test of SE<lt>E<gt>
This is S<some whitespace>.
###
Test of S<>
This is some whitespace.
###
###
=head1 I can eat glass
=over 4
=item Esperanto
Mi povas manĝi vitron, ĝi ne damaĝas min.
=item Braille
⠊⠀⠉⠁⠝⠀⠑⠁⠞⠀⠛⠇⠁⠎⠎⠀⠁⠝⠙⠀⠊⠞⠀⠙⠕⠑⠎⠝⠞⠀⠓⠥⠗⠞⠀⠍⠑
=item Hindi
मैं काँच खा सकता हूँ और मुझे उससे कोई चोट नहीं पहुंचती.
=back
See L<http://www.columbia.edu/kermit/utf8.html>
###
I can eat glass
Esperanto
Mi povas manĝi vitron, ĝi ne damaĝas min.
Braille
⠊⠀⠉⠁⠝⠀⠑⠁⠞⠀⠛⠇⠁⠎⠎⠀⠁⠝⠙⠀⠊⠞⠀⠙⠕⠑⠎⠝⠞⠀⠓⠥⠗⠞⠀⠍⠑
Hindi
मैं काँच खा सकता हूँ और मुझे उससे कोई चोट नहीं पहुंचती.
See <http://www.columbia.edu/kermit/utf8.html>
###
|