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 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401
|
#!./perl
BEGIN {
chdir 't' if -d 't';
@INC = '../lib';
require './test.pl';
skip_all_without_perlio();
}
no utf8; # needed for use utf8 not griping about the raw octets
plan(tests => 63);
$| = 1;
my $a_file = tempfile();
open(F,"+>:utf8",$a_file);
print F chr(0x100).'';
cmp_ok( tell(F), '==', 4, tell(F) );
print F "\n";
cmp_ok( tell(F), '>=', 5, tell(F) );
seek(F,0,0);
is( getc(F), chr(0x100) );
is( getc(F), "" );
is( getc(F), "\n" );
seek(F,0,0);
binmode(F,":bytes");
my $chr = chr(0xc4);
if (ord($a_file) == 193) { $chr = chr(0x8c); } # EBCDIC
is( getc(F), $chr );
$chr = chr(0x80);
if (ord($a_file) == 193) { $chr = chr(0x41); } # EBCDIC
is( getc(F), $chr );
$chr = chr(0xc2);
if (ord($a_file) == 193) { $chr = chr(0x80); } # EBCDIC
is( getc(F), $chr );
$chr = chr(0xa3);
if (ord($a_file) == 193) { $chr = chr(0x44); } # EBCDIC
is( getc(F), $chr );
is( getc(F), "\n" );
seek(F,0,0);
binmode(F,":utf8");
is( scalar(<F>), "\x{100}\n" );
seek(F,0,0);
$buf = chr(0x200);
$count = read(F,$buf,2,1);
cmp_ok( $count, '==', 2 );
is( $buf, "\x{200}\x{100}" );
close(F);
{
$a = chr(300); # This *is* UTF-encoded
$b = chr(130); # This is not.
open F, ">:utf8", $a_file or die $!;
print F $a,"\n";
close F;
open F, "<:utf8", $a_file or die $!;
$x = <F>;
chomp($x);
is( $x, chr(300) );
open F, $a_file or die $!; # Not UTF
binmode(F, ":bytes");
$x = <F>;
chomp($x);
$chr = chr(196).chr(172);
if (ord($a_file) == 193) { $chr = chr(141).chr(83); } # EBCDIC
is( $x, $chr );
close F;
open F, ">:utf8", $a_file or die $!;
binmode(F); # we write a "\n" and then tell() - avoid CRLF issues.
binmode(F,":utf8"); # turn UTF-8-ness back on
print F $a;
my $y;
{ my $x = tell(F);
{ use bytes; $y = length($a);}
cmp_ok( $x, '==', $y );
}
{ # Check byte length of $b
use bytes; my $y = length($b);
cmp_ok( $y, '==', 1 );
}
print F $b,"\n"; # Don't upgrades $b
{ # Check byte length of $b
use bytes; my $y = length($b);
cmp_ok( $y, '==', 1 );
}
{
my $x = tell(F);
{ use bytes; if (ord('A')==193){$y += 2;}else{$y += 3;}} # EBCDIC ASCII
cmp_ok( $x, '==', $y );
}
close F;
open F, $a_file or die $!; # Not UTF
binmode(F, ":bytes");
$x = <F>;
chomp($x);
$chr = v196.172.194.130;
if (ord('A') == 193) { $chr = v141.83.130; } # EBCDIC
is( $x, $chr, sprintf('(%vd)', $x) );
open F, "<:utf8", $a_file or die $!;
$x = <F>;
chomp($x);
close F;
is( $x, chr(300).chr(130), sprintf('(%vd)', $x) );
open F, ">", $a_file or die $!;
binmode(F, ":bytes:");
# Now let's make it suffer.
my $w;
{
use warnings 'utf8';
local $SIG{__WARN__} = sub { $w = $_[0] };
print F $a;
ok( (!$@));
like($w, qr/Wide character in print/i );
}
}
# Hm. Time to get more evil.
open F, ">:utf8", $a_file or die $!;
print F $a;
binmode(F, ":bytes");
print F chr(130)."\n";
close F;
open F, "<", $a_file or die $!;
binmode(F, ":bytes");
$x = <F>; chomp $x;
$chr = v196.172.130;
if (ord('A') == 193) { $chr = v141.83.130; } # EBCDIC
is( $x, $chr );
# Right.
open F, ">:utf8", $a_file or die $!;
print F $a;
close F;
open F, ">>", $a_file or die $!;
binmode(F, ":bytes");
print F chr(130)."\n";
close F;
open F, "<", $a_file or die $!;
binmode(F, ":bytes");
$x = <F>; chomp $x;
SKIP: {
skip("Defaulting to UTF-8 output means that we can't generate a mangled file")
if $UTF8_OUTPUT;
is( $x, $chr );
}
# Now we have a deformed file.
SKIP: {
if (ord('A') == 193) {
skip("EBCDIC doesn't complain", 2);
} else {
my @warnings;
open F, "<:utf8", $a_file or die $!;
$x = <F>; chomp $x;
local $SIG{__WARN__} = sub { push @warnings, $_[0]; };
eval { sprintf "%vd\n", $x };
is (scalar @warnings, 1);
like ($warnings[0], qr/Malformed UTF-8 character \(unexpected continuation byte 0x82, with no preceding start byte/);
}
}
close F;
unlink($a_file);
open F, ">:utf8", $a_file;
@a = map { chr(1 << ($_ << 2)) } 0..5; # 0x1, 0x10, .., 0x100000
unshift @a, chr(0); # ... and a null byte in front just for fun
print F @a;
close F;
my $c;
# read() should work on characters, not bytes
open F, "<:utf8", $a_file;
$a = 0;
my $failed;
for (@a) {
unless (($c = read(F, $b, 1) == 1) &&
length($b) == 1 &&
ord($b) == ord($_) &&
tell(F) == ($a += bytes::length($b))) {
print '# ord($_) == ', ord($_), "\n";
print '# ord($b) == ', ord($b), "\n";
print '# length($b) == ', length($b), "\n";
print '# bytes::length($b) == ', bytes::length($b), "\n";
print '# tell(F) == ', tell(F), "\n";
print '# $a == ', $a, "\n";
print '# $c == ', $c, "\n";
$failed++;
last;
}
}
close F;
is($failed, undef);
{
# Check that warnings are on on I/O, and that they can be muffled.
local $SIG{__WARN__} = sub { $@ = shift };
undef $@;
open F, ">$a_file";
binmode(F, ":bytes");
print F chr(0x100);
close(F);
like( $@, 'Wide character in print' );
undef $@;
open F, ">:utf8", $a_file;
print F chr(0x100);
close(F);
isnt( defined $@, !0 );
undef $@;
open F, ">$a_file";
binmode(F, ":utf8");
print F chr(0x100);
close(F);
isnt( defined $@, !0 );
no warnings 'utf8';
undef $@;
open F, ">$a_file";
print F chr(0x100);
close(F);
isnt( defined $@, !0 );
use warnings 'utf8';
undef $@;
open F, ">$a_file";
binmode(F, ":bytes");
print F chr(0x100);
close(F);
like( $@, 'Wide character in print' );
}
{
open F, ">:bytes",$a_file; print F "\xde"; close F;
open F, "<:bytes", $a_file;
my $b = chr 0x100;
$b .= <F>;
is( $b, chr(0x100).chr(0xde), "21395 '.= <>' utf8 vs. bytes" );
close F;
}
{
open F, ">:utf8",$a_file; print F chr 0x100; close F;
open F, "<:utf8", $a_file;
my $b = "\xde";
$b .= <F>;
is( $b, chr(0xde).chr(0x100), "21395 '.= <>' bytes vs. utf8" );
close F;
}
{
my @a = ( [ 0x007F, "bytes" ],
[ 0x0080, "bytes" ],
[ 0x0080, "utf8" ],
[ 0x0100, "utf8" ] );
my $t = 34;
for my $u (@a) {
for my $v (@a) {
# print "# @$u - @$v\n";
open F, ">$a_file";
binmode(F, ":" . $u->[1]);
print F chr($u->[0]);
close F;
open F, "<$a_file";
binmode(F, ":" . $u->[1]);
my $s = chr($v->[0]);
utf8::upgrade($s) if $v->[1] eq "utf8";
$s .= <F>;
is( $s, chr($v->[0]) . chr($u->[0]), 'rcatline utf8' );
close F;
$t++;
}
}
# last test here 49
}
{
# [perl #23428] Somethings rotten in unicode semantics
open F, ">$a_file";
binmode F, ":utf8";
syswrite(F, $a = chr(0x100));
close F;
is( ord($a), 0x100, '23428 syswrite should not downgrade scalar' );
like( $a, qr/^\w+/, '23428 syswrite should not downgrade scalar' );
}
# sysread() and syswrite() tested in lib/open.t since Fcntl is used
{
# <FH> on a :utf8 stream should complain immediately with -w
# if it finds bad UTF-8 (:encoding(utf8) works this way)
use warnings 'utf8';
undef $@;
local $SIG{__WARN__} = sub { $@ = shift };
open F, ">$a_file";
binmode F;
my ($chrE4, $chrF6) = (chr(0xE4), chr(0xF6));
if (ord('A') == 193) # EBCDIC
{ ($chrE4, $chrF6) = (chr(0x43), chr(0xEC)); }
print F "foo", $chrE4, "\n";
print F "foo", $chrF6, "\n";
close F;
open F, "<:utf8", $a_file;
undef $@;
my $line = <F>;
my ($chrE4, $chrF6) = ("E4", "F6");
if (ord('A') == 193) { ($chrE4, $chrF6) = ("43", "EC"); } # EBCDIC
like( $@, qr/utf8 "\\x$chrE4" does not map to Unicode .+ <F> line 1/,
"<:utf8 readline must warn about bad utf8");
undef $@;
$line .= <F>;
like( $@, qr/utf8 "\\x$chrF6" does not map to Unicode .+ <F> line 2/,
"<:utf8 rcatline must warn about bad utf8");
close F;
}
{
# fixed record reads
open F, ">:utf8", $a_file;
print F "foo\xE4";
print F "bar\xFE";
print F "\xC0\xC8\xCC\xD2";
print F "a\xE4ab";
print F "a\xE4a";
close F;
open F, "<:utf8", $a_file;
local $/ = \4;
my $line = <F>;
is($line, "foo\xE4", "readline with \$/ = \\4");
$line .= <F>;
is($line, "foo\xE4bar\xFE", "rcatline with \$/ = \\4");
$line = <F>;
is($line, "\xC0\xC8\xCC\xD2", "readline with several encoded characters");
$line = <F>;
is($line, "a\xE4ab", "readline with another boundary condition");
$line = <F>;
is($line, "a\xE4a", "readline with boundary condition");
close F;
# badly encoded at EOF
open F, ">:raw", $a_file;
print F "foo\xEF\xAC"; # truncated \x{FB04} small ligature ffl
close F;
use warnings 'utf8';
open F, "<:utf8", $a_file;
undef $@;
local $SIG{__WARN__} = sub { $@ = shift };
$line = <F>;
like( $@, qr/utf8 "\\xEF" does not map to Unicode .+ <F> chunk 1/,
"<:utf8 readline (fixed) must warn about bad utf8");
close F;
}
# getc should reset the utf8 flag and not be affected by previous
# return values
SKIP: {
skip "no PerlIO::scalar on miniperl", 2, if is_miniperl();
open my $fh, "<:raw", \($buf = chr 255);
open my $uh, "<:utf8", \($uuf = "\xc4\x80");
for([$uh,chr 256], [$fh,chr 255]) {
is getc $$_[0], $$_[1],
'getc returning non-utf8 after utf8';
}
}
|