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 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475
|
#!./perl
BEGIN {
chdir 't' if -d 't';
@INC = '../lib';
require './test.pl';
}
$| = 1;
use warnings;
use Config;
plan tests => 153;
my $Perl = which_perl();
my $afile = tempfile();
{
unlink($afile) if -f $afile;
$! = 0; # the -f above will set $! if $afile doesn't exist.
ok( open(my $f,"+>$afile"), 'open(my $f, "+>...")' );
binmode $f;
ok( -f $afile, ' its a file');
ok( (print $f "SomeData\n"), ' we can print to it');
is( tell($f), 9, ' tell()' );
ok( seek($f,0,0), ' seek set' );
$b = <$f>;
is( $b, "SomeData\n", ' readline' );
ok( -f $f, ' still a file' );
eval { die "Message" };
like( $@, qr/<\$f> line 1/, ' die message correct' );
ok( close($f), ' close()' );
ok( unlink($afile), ' unlink()' );
}
{
ok( open(my $f,'>', $afile), "open(my \$f, '>', $afile)" );
ok( (print $f "a row\n"), ' print');
ok( close($f), ' close' );
ok( -s $afile < 10, ' -s' );
}
{
ok( open(my $f,'>>', $afile), "open(my \$f, '>>', $afile)" );
ok( (print $f "a row\n"), ' print' );
ok( close($f), ' close' );
ok( -s $afile > 10, ' -s' );
}
{
ok( open(my $f, '<', $afile), "open(my \$f, '<', $afile)" );
my @rows = <$f>;
is( scalar @rows, 2, ' readline, list context' );
is( $rows[0], "a row\n", ' first line read' );
is( $rows[1], "a row\n", ' second line' );
ok( close($f), ' close' );
}
{
ok( -s $afile < 20, '-s' );
ok( open(my $f, '+<', $afile), 'open +<' );
my @rows = <$f>;
is( scalar @rows, 2, ' readline, list context' );
ok( seek($f, 0, 1), ' seek cur' );
ok( (print $f "yet another row\n"), ' print' );
ok( close($f), ' close' );
ok( -s $afile > 20, ' -s' );
unlink($afile);
}
{
ok( open(my $f, '-|', <<EOC), 'open -|' );
$Perl -e "print qq(a row\\n); print qq(another row\\n)"
EOC
my @rows = <$f>;
is( scalar @rows, 2, ' readline, list context' );
ok( close($f), ' close' );
}
{
ok( open(my $f, '|-', <<EOC), 'open |-' );
$Perl -pe "s/^not //"
EOC
my @rows = <$f>;
my $test = curr_test;
print $f "not ok $test - piped in\n";
next_test;
$test = curr_test;
print $f "not ok $test - piped in\n";
next_test;
ok( close($f), ' close' );
sleep 1;
pass('flushing');
}
ok( !eval { open my $f, '<&', $afile; 1; }, '<& on a non-filehandle' );
like( $@, qr/Bad filehandle:\s+$afile/, ' right error' );
ok( !eval { *some_glob = 1; open my $f, '<&', *some_glob; 1; }, '<& on a non-filehandle glob' );
like( $@, qr/Bad filehandle:\s+some_glob/, ' right error' );
{
use utf8;
use open qw( :utf8 :std );
ok( !eval { use utf8; *ǡfilḛ = 1; open my $f, '<&', *ǡfilḛ; 1; }, '<& on a non-filehandle glob' );
like( $@, qr/Bad filehandle:\s+ǡfilḛ/u, ' right error' );
}
# local $file tests
{
unlink($afile) if -f $afile;
ok( open(local $f,"+>$afile"), 'open local $f, "+>", ...' );
binmode $f;
ok( -f $afile, ' -f' );
ok( (print $f "SomeData\n"), ' print' );
is( tell($f), 9, ' tell' );
ok( seek($f,0,0), ' seek set' );
$b = <$f>;
is( $b, "SomeData\n", ' readline' );
ok( -f $f, ' still a file' );
eval { die "Message" };
like( $@, qr/<\$f> line 1/, ' proper die message' );
ok( close($f), ' close' );
unlink($afile);
}
{
ok( open(local $f,'>', $afile), 'open local $f, ">", ...' );
ok( (print $f "a row\n"), ' print');
ok( close($f), ' close');
ok( -s $afile < 10, ' -s' );
}
{
ok( open(local $f,'>>', $afile), 'open local $f, ">>", ...' );
ok( (print $f "a row\n"), ' print');
ok( close($f), ' close');
ok( -s $afile > 10, ' -s' );
}
{
ok( open(local $f, '<', $afile), 'open local $f, "<", ...' );
my @rows = <$f>;
is( scalar @rows, 2, ' readline list context' );
ok( close($f), ' close' );
}
ok( -s $afile < 20, ' -s' );
{
ok( open(local $f, '+<', $afile), 'open local $f, "+<", ...' );
my @rows = <$f>;
is( scalar @rows, 2, ' readline list context' );
ok( seek($f, 0, 1), ' seek cur' );
ok( (print $f "yet another row\n"), ' print' );
ok( close($f), ' close' );
ok( -s $afile > 20, ' -s' );
unlink($afile);
}
{
ok( open(local $f, '-|', <<EOC), 'open local $f, "-|", ...' );
$Perl -e "print qq(a row\\n); print qq(another row\\n)"
EOC
my @rows = <$f>;
is( scalar @rows, 2, ' readline list context' );
ok( close($f), ' close' );
}
{
ok( open(local $f, '|-', <<EOC), 'open local $f, "|-", ...' );
$Perl -pe "s/^not //"
EOC
my @rows = <$f>;
my $test = curr_test;
print $f "not ok $test - piping\n";
next_test;
$test = curr_test;
print $f "not ok $test - piping\n";
next_test;
ok( close($f), ' close' );
sleep 1;
pass("Flush");
}
ok( !eval { open local $f, '<&', $afile; 1 }, 'local <& on non-filehandle');
like( $@, qr/Bad filehandle:\s+$afile/, ' right error' );
{
local *F;
for (1..2) {
ok( open(F, qq{$Perl -le "print 'ok'"|}), 'open to pipe' );
is(scalar <F>, "ok\n", ' readline');
ok( close F, ' close' );
}
for (1..2) {
ok( open(F, "-|", qq{$Perl -le "print 'ok'"}), 'open -|');
is( scalar <F>, "ok\n", ' readline');
ok( close F, ' close' );
}
}
# other dupping techniques
{
ok( open(my $stdout, ">&", \*STDOUT), 'dup \*STDOUT into lexical fh');
ok( open(STDOUT, ">&", $stdout), 'restore dupped STDOUT from lexical fh');
{
use strict; # the below should not warn
ok( open(my $stdout, ">&", STDOUT), 'dup STDOUT into lexical fh');
}
# used to try to open a file [perl #17830]
ok( open(my $stdin, "<&", fileno STDIN), 'dup fileno(STDIN) into lexical fh') or _diag $!;
fileno(STDIN) =~ /(.)/;
ok open($stdin, "<&", $1), 'open ... "<&", $magical_fileno',
|| _diag $!;
}
SKIP: {
skip "This perl uses perlio", 1 if $Config{useperlio};
skip_if_miniperl("miniperl can't rely on loading %Errno", 1);
# Force the reference to %! to be run time by writing ! as {"!"}
skip "This system doesn't understand EINVAL", 1
unless exists ${"!"}{EINVAL};
no warnings 'io';
ok(!open(F,'>',\my $s) && ${"!"}{EINVAL}, 'open(reference) raises EINVAL');
}
{
ok( !eval { open F, "BAR", "QUUX" }, 'Unknown open() mode' );
like( $@, qr/\QUnknown open() mode 'BAR'/, ' right error' );
}
{
local $SIG{__WARN__} = sub { $@ = shift };
sub gimme {
my $tmphandle = shift;
my $line = scalar <$tmphandle>;
warn "gimme";
return $line;
}
open($fh0[0], "TEST");
gimme($fh0[0]);
like($@, qr/<\$fh0\[...\]> line 1\./, "autoviv fh package aelem");
open($fh1{k}, "TEST");
gimme($fh1{k});
like($@, qr/<\$fh1\{...}> line 1\./, "autoviv fh package helem");
my @fh2;
open($fh2[0], "TEST");
gimme($fh2[0]);
like($@, qr/<\$fh2\[...\]> line 1\./, "autoviv fh lexical aelem");
my %fh3;
open($fh3{k}, "TEST");
gimme($fh3{k});
like($@, qr/<\$fh3\{...}> line 1\./, "autoviv fh lexical helem");
local $/ = *F; # used to cause an assertion failure
gimme($fh3{k});
like($@, qr/<\$fh3\{...}> chunk 2\./,
'<...> line 1 when $/ is set to a glob');
}
SKIP: {
skip("These tests use perlio", 5) unless $Config{useperlio};
my $w;
use warnings 'layer';
local $SIG{__WARN__} = sub { $w = shift };
eval { open(F, ">>>", $afile) };
like($w, qr/Invalid separator character '>' in PerlIO layer spec/,
"bad open (>>>) warning");
like($@, qr/Unknown open\(\) mode '>>>'/,
"bad open (>>>) failure");
eval { open(F, ">:u", $afile ) };
like($w, qr/Unknown PerlIO layer "u"/,
'bad layer ">:u" warning');
eval { open(F, "<:u", $afile ) };
like($w, qr/Unknown PerlIO layer "u"/,
'bad layer "<:u" warning');
eval { open(F, ":c", $afile ) };
like($@, qr/Unknown open\(\) mode ':c'/,
'bad layer ":c" failure');
}
# [perl #28986] "open m" crashes Perl
fresh_perl_like('open m', qr/^Search pattern not terminated at/,
{ stderr => 1 }, 'open m test');
fresh_perl_is(
'sub f { open(my $fh, "xxx"); $fh = "f"; } f; f;print "ok"',
'ok', { stderr => 1 },
'#29102: Crash on assignment to lexical filehandle');
# [perl #31767] Using $1 as a filehandle via open $1, "file" doesn't raise
# an exception
eval { open $99, "foo" };
like($@, qr/Modification of a read-only value attempted/, "readonly fh");
# But we do not want that exception applying to close(), since it does not
# modify the fh.
eval {
no warnings "uninitialized";
# make sure $+ is undefined
"a" =~ /(b)?/;
close $+
};
is($@, '', 'no "Modification of a read-only value" when closing');
# [perl#73626] mg_get wasn't run on the pipe arg
{
package p73626;
sub TIESCALAR { bless {} }
sub FETCH { "$Perl -e 1"}
tie my $p, 'p73626';
package main;
ok( open(my $f, '-|', $p), 'open -| magic');
}
# [perl #77492] Crash when stringifying a glob, a reference to which has
# been opened and written to.
fresh_perl_is(
'
open my $fh, ">", \*STDOUT;
print $fh "hello";
"".*STDOUT;
print "ok";
close $fh;
unlink \*STDOUT;
',
'ok', { stderr => 1 },
'[perl #77492]: open $fh, ">", \*glob causes SEGV');
# [perl #77684] Opening a reference to a glob copy.
SKIP: {
skip_if_miniperl("no dynamic loading on miniperl, so can't load PerlIO::scalar", 1);
my $var = *STDOUT;
open my $fh, ">", \$var;
print $fh "hello";
is $var, "hello", '[perl #77684]: open $fh, ">", \$glob_copy'
# when this fails, it leaves an extra file:
or unlink \*STDOUT;
}
# check that we can call methods on filehandles auto-magically
# and have IO::File loaded for us
SKIP: {
skip_if_miniperl("no dynamic loading on miniperl, so can't load IO::File", 3);
is( $INC{'IO/File.pm'}, undef, "IO::File not loaded" );
my $var = "";
open my $fh, ">", \$var;
ok( eval { $fh->autoflush(1); 1 }, '$fh->autoflush(1) lives' );
ok( $INC{'IO/File.pm'}, "IO::File now loaded" );
}
sub _117941 { package _117941; open my $a, "TEST" }
delete $::{"_117941::"};
_117941();
pass("no crash when open autovivifies glob in freed package");
# [perl #117265] check for embedded nul in pathnames, allow ending \0 though
{
my $WARN;
local $SIG{__WARN__} = sub { $WARN = shift };
my $temp = tempfile();
my $temp_match = quotemeta $temp;
# create the file, so we can check nothing actually touched it
open my $temp_fh, ">", $temp;
close $temp_fh;
ok(utime(time()-10, time(), $temp), "set mtime to a known value");
ok(chmod(0666, $temp), "set mode to a known value");
my ($final_mode, $final_mtime) = (stat $temp)[2, 9];
my $fn = "$temp\0.invalid";
my $fno = bless \(my $fn2 = "$temp\0.overload"), "OverloadTest";
is(open(I, $fn), undef, "open with nul in pathnames since 5.18 [perl #117265]");
like($WARN, qr/^Invalid \\0 character in pathname for open: $temp_match\\0\.invalid/,
"warn on embedded nul"); $WARN = '';
is(open(I, $fno), undef, "open with nul in pathnames since 5.18 [perl #117265] (overload)");
like($WARN, qr/^Invalid \\0 character in pathname for open: $temp_match\\0\.overload/,
"warn on embedded nul"); $WARN = '';
is(chmod(0444, $fn), 0, "chmod fails with \\0 in name");
like($WARN, qr/^Invalid \\0 character in pathname for chmod: $temp_match\\0\.invalid/,
"also on chmod"); $WARN = '';
is(chmod(0444, $fno), 0, "chmod fails with \\0 in name (overload)");
like($WARN, qr/^Invalid \\0 character in pathname for chmod: $temp_match\\0\.overload/,
"also on chmod"); $WARN = '';
is (glob($fn), undef, "glob fails with \\0 in name");
like($WARN, qr/^Invalid \\0 character in pattern for glob: $temp_match\\0\.invalid/,
"also on glob"); $WARN = '';
is (glob($fno), undef, "glob fails with \\0 in name (overload)");
like($WARN, qr/^Invalid \\0 character in pattern for glob: $temp_match\\0\.overload/,
"also on glob"); $WARN = '';
{
no warnings 'syscalls';
$WARN = '';
is(open(I, $fn), undef, "open with nul with no warnings syscalls");
is($WARN, '', "ignore warning on embedded nul with no warnings syscalls");
}
use Errno 'ENOENT';
# check handling of multiple arguments, which the original patch
# mis-handled
$! = 0;
is (unlink($fn, $fn), 0, "check multiple arguments to unlink");
is($!+0, ENOENT, "check errno");
$! = 0;
is (chmod(0644, $fn, $fn), 0, "check multiple arguments to chmod");
is($!+0, ENOENT, "check errno");
$! = 0;
is (utime(time, time, $fn, $fn), 0, "check multiple arguments to utime");
is($!+0, ENOENT, "check errno");
SKIP: {
skip "no chown", 2 unless $Config{d_chown};
$! = 0;
is(chown(-1, -1, $fn, $fn), 0, "check multiple arguments to chown");
is($!+0, ENOENT, "check errno");
}
is (unlink($fn), 0, "unlink fails with \\0 in name");
like($WARN, qr/^Invalid \\0 character in pathname for unlink: $temp_match\\0\.invalid/,
"also on unlink"); $WARN = '';
is (unlink($fno), 0, "unlink fails with \\0 in name (overload)");
like($WARN, qr/^Invalid \\0 character in pathname for unlink: $temp_match\\0\.overload/,
"also on unlink"); $WARN = '';
ok(-f $temp, "nothing removed the temp file");
is((stat $temp)[2], $final_mode, "nothing changed its mode");
is((stat $temp)[9], $final_mtime, "nothing changes its mtime");
}
package OverloadTest;
use overload '""' => sub { ${$_[0]} };
|