This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Refactor podcheck.t to slurp files into scalars, instead of an array of lines.
[perl5.git] / t / io / open.t
CommitLineData
3eb568f1
NIS
1#!./perl
2
9f1b1f2d
GS
3BEGIN {
4 chdir 't' if -d 't';
20822f61 5 @INC = '../lib';
ad20d923 6 require './test.pl';
e620cd72 7}
9f1b1f2d 8
853846ea 9$| = 1;
9f1b1f2d 10use warnings;
35066d42 11use Config;
3eb568f1 12
15e6cdd9 13plan tests => 114;
2c8ac474 14
b5fe401b
MS
15my $Perl = which_perl();
16
62a28c97 17my $afile = tempfile();
6170680b 18{
62a28c97 19 unlink($afile) if -f $afile;
ad20d923 20
62a28c97
NC
21 $! = 0; # the -f above will set $! if $afile doesn't exist.
22 ok( open(my $f,"+>$afile"), 'open(my $f, "+>...")' );
ad20d923 23
2c8ac474 24 binmode $f;
62a28c97 25 ok( -f $afile, ' its a file');
ad20d923
MS
26 ok( (print $f "SomeData\n"), ' we can print to it');
27 is( tell($f), 9, ' tell()' );
28 ok( seek($f,0,0), ' seek set' );
29
2c8ac474 30 $b = <$f>;
ad20d923
MS
31 is( $b, "SomeData\n", ' readline' );
32 ok( -f $f, ' still a file' );
33
e620cd72 34 eval { die "Message" };
ad20d923
MS
35 like( $@, qr/<\$f> line 1/, ' die message correct' );
36
37 ok( close($f), ' close()' );
62a28c97 38 ok( unlink($afile), ' unlink()' );
6170680b 39}
2c8ac474 40
6170680b 41{
62a28c97 42 ok( open(my $f,'>', $afile), "open(my \$f, '>', $afile)" );
ad20d923
MS
43 ok( (print $f "a row\n"), ' print');
44 ok( close($f), ' close' );
62a28c97 45 ok( -s $afile < 10, ' -s' );
6170680b 46}
2c8ac474 47
6170680b 48{
62a28c97 49 ok( open(my $f,'>>', $afile), "open(my \$f, '>>', $afile)" );
ad20d923
MS
50 ok( (print $f "a row\n"), ' print' );
51 ok( close($f), ' close' );
62a28c97 52 ok( -s $afile > 10, ' -s' );
6170680b 53}
2c8ac474 54
6170680b 55{
62a28c97 56 ok( open(my $f, '<', $afile), "open(my \$f, '<', $afile)" );
ad20d923
MS
57 my @rows = <$f>;
58 is( scalar @rows, 2, ' readline, list context' );
59 is( $rows[0], "a row\n", ' first line read' );
60 is( $rows[1], "a row\n", ' second line' );
61 ok( close($f), ' close' );
6170680b 62}
2c8ac474 63
6170680b 64{
62a28c97 65 ok( -s $afile < 20, '-s' );
ad20d923 66
62a28c97 67 ok( open(my $f, '+<', $afile), 'open +<' );
ad20d923
MS
68 my @rows = <$f>;
69 is( scalar @rows, 2, ' readline, list context' );
70 ok( seek($f, 0, 1), ' seek cur' );
71 ok( (print $f "yet another row\n"), ' print' );
72 ok( close($f), ' close' );
62a28c97 73 ok( -s $afile > 20, ' -s' );
2c8ac474 74
62a28c97 75 unlink($afile);
2c8ac474 76}
c0ed5c75 77{
ad20d923 78 ok( open(my $f, '-|', <<EOC), 'open -|' );
dc459aad 79 $Perl -e "print qq(a row\\n); print qq(another row\\n)"
6170680b 80EOC
2c8ac474 81
ad20d923
MS
82 my @rows = <$f>;
83 is( scalar @rows, 2, ' readline, list context' );
84 ok( close($f), ' close' );
2c8ac474 85}
7b903762 86{
ad20d923 87 ok( open(my $f, '|-', <<EOC), 'open |-' );
b5fe401b 88 $Perl -pe "s/^not //"
6170680b 89EOC
ad20d923
MS
90
91 my @rows = <$f>;
92 my $test = curr_test;
93 print $f "not ok $test - piped in\n";
94 next_test;
95
96 $test = curr_test;
97 print $f "not ok $test - piped in\n";
98 next_test;
99 ok( close($f), ' close' );
2c8ac474 100 sleep 1;
ad20d923 101 pass('flushing');
6170680b 102}
3eb568f1 103
2c8ac474 104
62a28c97
NC
105ok( !eval { open my $f, '<&', $afile; 1; }, '<& on a non-filehandle' );
106like( $@, qr/Bad filehandle:\s+$afile/, ' right error' );
2c8ac474 107
ad20d923
MS
108
109# local $file tests
2c8ac474 110{
62a28c97 111 unlink($afile) if -f $afile;
ad20d923 112
62a28c97 113 ok( open(local $f,"+>$afile"), 'open local $f, "+>", ...' );
2c8ac474 114 binmode $f;
ad20d923 115
62a28c97 116 ok( -f $afile, ' -f' );
ad20d923
MS
117 ok( (print $f "SomeData\n"), ' print' );
118 is( tell($f), 9, ' tell' );
119 ok( seek($f,0,0), ' seek set' );
120
2c8ac474 121 $b = <$f>;
ad20d923
MS
122 is( $b, "SomeData\n", ' readline' );
123 ok( -f $f, ' still a file' );
124
e620cd72 125 eval { die "Message" };
ad20d923
MS
126 like( $@, qr/<\$f> line 1/, ' proper die message' );
127 ok( close($f), ' close' );
128
62a28c97 129 unlink($afile);
2c8ac474
GS
130}
131
2c8ac474 132{
62a28c97 133 ok( open(local $f,'>', $afile), 'open local $f, ">", ...' );
ad20d923
MS
134 ok( (print $f "a row\n"), ' print');
135 ok( close($f), ' close');
62a28c97 136 ok( -s $afile < 10, ' -s' );
2c8ac474
GS
137}
138
2c8ac474 139{
62a28c97 140 ok( open(local $f,'>>', $afile), 'open local $f, ">>", ...' );
ad20d923
MS
141 ok( (print $f "a row\n"), ' print');
142 ok( close($f), ' close');
62a28c97 143 ok( -s $afile > 10, ' -s' );
2c8ac474
GS
144}
145
2c8ac474 146{
62a28c97 147 ok( open(local $f, '<', $afile), 'open local $f, "<", ...' );
ad20d923
MS
148 my @rows = <$f>;
149 is( scalar @rows, 2, ' readline list context' );
150 ok( close($f), ' close' );
2c8ac474
GS
151}
152
62a28c97 153ok( -s $afile < 20, ' -s' );
ad20d923 154
2c8ac474 155{
62a28c97 156 ok( open(local $f, '+<', $afile), 'open local $f, "+<", ...' );
ad20d923
MS
157 my @rows = <$f>;
158 is( scalar @rows, 2, ' readline list context' );
159 ok( seek($f, 0, 1), ' seek cur' );
160 ok( (print $f "yet another row\n"), ' print' );
161 ok( close($f), ' close' );
62a28c97 162 ok( -s $afile > 20, ' -s' );
2c8ac474 163
62a28c97 164 unlink($afile);
2c8ac474
GS
165}
166
c0ed5c75 167{
ad20d923 168 ok( open(local $f, '-|', <<EOC), 'open local $f, "-|", ...' );
dc459aad 169 $Perl -e "print qq(a row\\n); print qq(another row\\n)"
2c8ac474 170EOC
ad20d923 171 my @rows = <$f>;
2c8ac474 172
ad20d923
MS
173 is( scalar @rows, 2, ' readline list context' );
174 ok( close($f), ' close' );
2c8ac474 175}
ad20d923 176
7b903762 177{
ad20d923 178 ok( open(local $f, '|-', <<EOC), 'open local $f, "|-", ...' );
b5fe401b 179 $Perl -pe "s/^not //"
2c8ac474 180EOC
ad20d923
MS
181
182 my @rows = <$f>;
183 my $test = curr_test;
184 print $f "not ok $test - piping\n";
185 next_test;
186
187 $test = curr_test;
188 print $f "not ok $test - piping\n";
189 next_test;
190 ok( close($f), ' close' );
2c8ac474 191 sleep 1;
ad20d923 192 pass("Flush");
2c8ac474
GS
193}
194
faecd977 195
62a28c97
NC
196ok( !eval { open local $f, '<&', $afile; 1 }, 'local <& on non-filehandle');
197like( $@, qr/Bad filehandle:\s+$afile/, ' right error' );
ad20d923 198
faecd977
GS
199{
200 local *F;
ed2efe3e 201 for (1..2) {
24a7a40d 202 ok( open(F, qq{$Perl -le "print 'ok'"|}), 'open to pipe' );
ad20d923 203 is(scalar <F>, "ok\n", ' readline');
24a7a40d 204 ok( close F, ' close' );
ed2efe3e 205 }
ad20d923 206
ed2efe3e 207 for (1..2) {
24a7a40d
SG
208 ok( open(F, "-|", qq{$Perl -le "print 'ok'"}), 'open -|');
209 is( scalar <F>, "ok\n", ' readline');
ad20d923 210 ok( close F, ' close' );
ed2efe3e 211 }
faecd977 212}
f6c77cf1 213
04dd828a
JH
214
215# other dupping techniques
216{
24a7a40d
SG
217 ok( open(my $stdout, ">&", \*STDOUT), 'dup \*STDOUT into lexical fh');
218 ok( open(STDOUT, ">&", $stdout), 'restore dupped STDOUT from lexical fh');
219
3b82e551
JH
220 {
221 use strict; # the below should not warn
222 ok( open(my $stdout, ">&", STDOUT), 'dup STDOUT into lexical fh');
223 }
224
24a7a40d 225 # used to try to open a file [perl #17830]
0685228b 226 ok( open(my $stdin, "<&", fileno STDIN), 'dup fileno(STDIN) into lexical fh') or _diag $!;
04dd828a
JH
227}
228
35066d42
RGS
229SKIP: {
230 skip "This perl uses perlio", 1 if $Config{useperlio};
d3d1232e 231 skip_if_miniperl("miniperl can't rely on loading %Errno", 1);
43651d81
NC
232 # Force the reference to %! to be run time by writing ! as {"!"}
233 skip "This system doesn't understand EINVAL", 1
234 unless exists ${"!"}{EINVAL};
35066d42 235
aaac28e4 236 no warnings 'io';
43651d81 237 ok(!open(F,'>',\my $s) && ${"!"}{EINVAL}, 'open(reference) raises EINVAL');
35066d42
RGS
238}
239
240{
241 ok( !eval { open F, "BAR", "QUUX" }, 'Unknown open() mode' );
242 like( $@, qr/\QUnknown open() mode 'BAR'/, ' right error' );
243}
0c4b0a3f
JH
244
245{
246 local $SIG{__WARN__} = sub { $@ = shift };
247
248 sub gimme {
249 my $tmphandle = shift;
250 my $line = scalar <$tmphandle>;
251 warn "gimme";
252 return $line;
253 }
254
255 open($fh0[0], "TEST");
256 gimme($fh0[0]);
257 like($@, qr/<\$fh0\[...\]> line 1\./, "autoviv fh package aelem");
258
259 open($fh1{k}, "TEST");
260 gimme($fh1{k});
261 like($@, qr/<\$fh1{...}> line 1\./, "autoviv fh package helem");
262
263 my @fh2;
264 open($fh2[0], "TEST");
265 gimme($fh2[0]);
266 like($@, qr/<\$fh2\[...\]> line 1\./, "autoviv fh lexical aelem");
267
268 my %fh3;
269 open($fh3{k}, "TEST");
270 gimme($fh3{k});
271 like($@, qr/<\$fh3{...}> line 1\./, "autoviv fh lexical helem");
0c4b0a3f
JH
272}
273
7e72d509 274SKIP: {
a9f76400 275 skip("These tests use perlio", 5) unless $Config{useperlio};
7e72d509
JH
276 my $w;
277 use warnings 'layer';
278 local $SIG{__WARN__} = sub { $w = shift };
279
62a28c97 280 eval { open(F, ">>>", $afile) };
b4581f09 281 like($w, qr/Invalid separator character '>' in PerlIO layer spec/,
a9f76400 282 "bad open (>>>) warning");
7e72d509 283 like($@, qr/Unknown open\(\) mode '>>>'/,
a9f76400
JH
284 "bad open (>>>) failure");
285
62a28c97 286 eval { open(F, ">:u", $afile ) };
b4581f09 287 like($w, qr/Unknown PerlIO layer "u"/,
a9f76400 288 'bad layer ">:u" warning');
62a28c97 289 eval { open(F, "<:u", $afile ) };
b4581f09 290 like($w, qr/Unknown PerlIO layer "u"/,
a9f76400 291 'bad layer "<:u" warning');
62a28c97 292 eval { open(F, ":c", $afile ) };
b4581f09
JH
293 like($@, qr/Unknown open\(\) mode ':c'/,
294 'bad layer ":c" failure');
7e72d509
JH
295}
296
15332aa2
DM
297# [perl #28986] "open m" crashes Perl
298
299fresh_perl_like('open m', qr/^Search pattern not terminated at/,
300 { stderr => 1 }, 'open m test');
301
ba2ce822
DM
302fresh_perl_is(
303 'sub f { open(my $fh, "xxx"); $fh = "f"; } f; f;print "ok"',
304 'ok', { stderr => 1 },
305 '#29102: Crash on assignment to lexical filehandle');
ac53db4c
DM
306
307# [perl #31767] Using $1 as a filehandle via open $1, "file" doesn't raise
308# an exception
309
310eval { open $99, "foo" };
311like($@, qr/Modification of a read-only value attempted/, "readonly fh");
d71e3dc3
DM
312
313# [perl#73626] mg_get wasn't run on the pipe arg
314
315{
316 package p73626;
317 sub TIESCALAR { bless {} }
318 sub FETCH { "$Perl -e 1"}
319
320 tie my $p, 'p73626';
321
322 package main;
323
324 ok( open(my $f, '-|', $p), 'open -| magic');
325}
10cea945
FC
326
327# [perl #77492] Crash when stringifying a glob, a reference to which has
328# been opened and written to.
329fresh_perl_is(
330 '
331 open my $fh, ">", \*STDOUT;
332 print $fh "hello";
333 "".*STDOUT;
334 print "ok";
3208277d 335 close $fh;
10cea945
FC
336 unlink \*STDOUT;
337 ',
338 'ok', { stderr => 1 },
339 '[perl #77492]: open $fh, ">", \*glob causes SEGV');
526fd1b4
FC
340
341# [perl #77684] Opening a reference to a glob copy.
eed19f4a
NC
342SKIP: {
343 skip_if_miniperl("no dynamic loading on miniperl, so can't load PerlIO::scalar", 1);
526fd1b4
FC
344 my $var = *STDOUT;
345 open my $fh, ">", \$var;
346 print $fh "hello";
347 is $var, "hello", '[perl #77684]: open $fh, ">", \$glob_copy'
348 # when this fails, it leaves an extra file:
349 or unlink \*STDOUT;
350}
15e6cdd9
DG
351
352# check that we can call methods on filehandles auto-magically
353# and have IO::File loaded for us
19d240ff
NC
354SKIP: {
355 skip_if_miniperl("no dynamic loading on miniperl, so can't load IO::File", 3);
15e6cdd9
DG
356 is( $INC{'IO/File.pm'}, undef, "IO::File not loaded" );
357 my $var = "";
358 open my $fh, ">", \$var;
359 ok( eval { $fh->autoflush(1); 1 }, '$fh->autoflush(1) lives' );
360 ok( $INC{'IO/File.pm'}, "IO::File now loaded" );
361}