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
|
#!./perl
BEGIN {
chdir 't' if -d 't';
@INC = '../lib';
require './test.pl';
unless (find PerlIO::Layer 'perlio') {
print "1..0 # Skip: not perlio\n";
exit 0;
}
}
plan tests => 43;
use Config;
SKIP: {
skip("This perl does not have Encode", 43)
unless " $Config{extensions} " =~ / Encode /;
sub check {
my ($result, $expected, $id) = @_;
my $n = scalar @$expected;
is($n, scalar @$expected, "$id layers = $n");
for (my $i = 0; $i < $n; $i++) {
my $j = $expected->[$i];
if (ref $j eq 'CODE') {
ok($j->($result->[$i]), "$id $i is ok");
} else {
is($result->[$i], $j,
sprintf("$id $i is %s", defined $j ? $j : "undef"));
}
}
}
check([ PerlIO::get_layers(STDIN) ],
[ "stdio" ],
"STDIN");
open(F, ">:crlf", "afile");
check([ PerlIO::get_layers(F) ],
[ qw(stdio crlf) ],
"open :crlf");
binmode(F, ":encoding(sjis)"); # "sjis" will be canonized to "shiftjis"
check([ PerlIO::get_layers(F) ],
[ qw[stdio crlf encoding(shiftjis) utf8] ],
":encoding(sjis)");
binmode(F, ":pop");
check([ PerlIO::get_layers(F) ],
[ qw(stdio crlf) ],
":pop");
binmode(F, ":raw");
check([ PerlIO::get_layers(F) ],
[ "stdio" ],
":raw");
binmode(F, ":utf8");
check([ PerlIO::get_layers(F) ],
[ qw(stdio utf8) ],
":utf8");
binmode(F, ":bytes");
check([ PerlIO::get_layers(F) ],
[ "stdio" ],
":bytes");
binmode(F, ":encoding(utf8)");
check([ PerlIO::get_layers(F) ],
[ qw[stdio encoding(utf8) utf8] ],
":encoding(utf8)");
binmode(F, ":raw :crlf");
check([ PerlIO::get_layers(F) ],
[ qw(stdio crlf) ],
":raw:crlf");
binmode(F, ":raw :encoding(latin1)"); # "latin1" will be canonized
check([ PerlIO::get_layers(F, details => 1) ],
[ "stdio", undef, sub { $_[0] > 0 },
"encoding", "iso-8859-1", sub { $_[0] & PerlIO::F_UTF8() } ],
":raw:encoding(latin1)");
binmode(F);
check([ PerlIO::get_layers(F) ],
[ "stdio" ],
"binmode");
close F;
{
use open(IN => ":crlf", OUT => ":encoding(cp1252)");
open F, "<afile";
open G, ">afile";
check([ PerlIO::get_layers(F, input => 1) ],
[ qw(stdio crlf) ],
"use open IN");
check([ PerlIO::get_layers(G, output => 1) ],
[ qw[stdio encoding(cp1252) utf8] ],
"use open OUT");
close F;
close G;
}
1 while unlink "afile";
}
|