This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
[perl #120657] Fix require PADTMP when @INC=(sub{},sub{})
[perl5.git] / t / op / filetest.t
CommitLineData
42e55ab1
JH
1#!./perl
2
3# There are few filetest operators that are portable enough to test.
4# See pod/perlport.pod for details.
5
6BEGIN {
7 chdir 't' if -d 't';
20822f61 8 @INC = '../lib';
fbb0b3b3 9 require './test.pl';
42e55ab1
JH
10}
11
5840701a 12plan(tests => 53 + 27*14);
42e55ab1 13
8c5e482d
JK
14# Tests presume we are in t/op directory and that file 'TEST' is found
15# therein.
16is(-d 'op', 1, "-d: directory correctly identified");
17is(-f 'TEST', 1, "-f: plain file correctly identified");
18isnt(-f 'op', 1, "-f: directory is not a plain file");
19isnt(-d 'TEST', 1, "-d: plain file is not a directory");
20is(-r 'TEST', 1, "-r: file readable by effective uid/gid not found");
42e55ab1 21
e687eccd
NC
22# Make a read only file. This happens to be empty, so we also use it later.
23my $ro_empty_file = tempfile();
d4188802
NC
24
25{
e687eccd 26 open my $fh, '>', $ro_empty_file or die "open $fh: $!";
d4188802
NC
27 close $fh or die "close $fh: $!";
28}
29
e687eccd 30chmod 0555, $ro_empty_file or die "chmod 0555, '$ro_empty_file' failed: $!";
846f25a3 31
fbb0b3b3 32SKIP: {
dcefe67b
NC
33 my $restore_root;
34 if ($> == 0) {
35 # root can read and write anything, so switch uid (may not be
36 # implemented)
37 eval '$> = 1';
38
39 skip("Can't drop root privs to test read-only files") if $> == 0;
40 note("Dropped root privs to test read-only files. \$> == $>");
41 ++$restore_root;
fbb0b3b3 42 }
42e55ab1 43
8c5e482d 44 isnt(-w $ro_empty_file, 1, "-w: file writable by effective uid/gid");
42e55ab1 45
dcefe67b
NC
46 if ($restore_root) {
47 # If the previous assignment to $> worked, so should this:
48 $> = 0;
49 note("Restored root privs after testing read-only files. \$> == $>");
50 }
51}
fd1e013e 52
64f0b68d 53# these would fail for the euid 1
fd1e013e 54# (unless we have unpacked the source code as uid 1...)
8c5e482d
JK
55is(-r 'op', 1, "-r: directory readable by effective uid/gid");
56is(-w 'op', 1, "-w: directory writable by effective uid/gid");
57is(-x 'op', 1, "-x: executable by effective uid/gid"); # Hohum. Are directories -x everywhere?
fbb0b3b3 58
8c5e482d
JK
59is( "@{[grep -r, qw(foo io noo op zoo)]}", "io op",
60 "-r: found directories readable by effective uid/gid" );
fbb0b3b3
RGS
61
62# Test stackability of filetest operators
42e55ab1 63
8c5e482d
JK
64is(defined( -f -d 'TEST' ), 1, "-f and -d stackable: plain file found");
65isnt(-f -d _, 1, "-f and -d stackable: no plain file found");
66isnt(defined( -e 'zoo' ), 1, "-e: file does not exist");
67isnt(defined( -e -d 'zoo' ), 1, "-e and -d: neither file nor directory exists");
68isnt(defined( -f -e 'zoo' ), 1, "-f and -e: not a plain file and does not exist");
69is(-f -e 'TEST', 1, "-f and -e: plain file and exists");
70is(-e -f 'TEST', 1, "-e and -f: exists and is plain file");
71is(defined(-d -e 'TEST'), 1, "-d and -e: file at least exists");
72is(defined(-e -d 'TEST'), 1, "-e and -d: file at least exists");
73isnt( -f -d 'op', 1, "-f and -d: directory found but is not a plain file");
74is(-x -d -x 'op', 1, "-x, -d and -x again: directory exists and is executable");
fea55e48
NC
75my ($size) = (stat 'TEST')[7];
76cmp_ok($size, '>', 1, 'TEST is longer than 1 byte');
77is( (-s -f 'TEST'), $size, "-s returns real size" );
8c5e482d 78is(-f -s 'TEST', 1, "-f and -s: plain file with non-zero size");
7294df96 79
e7d3eb55 80# now with an empty file
8c5e482d
JK
81is(-f $ro_empty_file, 1, "-f: plain file found");
82is(-s $ro_empty_file, 0, "-s: file has 0 bytes");
83is(-f -s $ro_empty_file, 0, "-f and -s: plain file with 0 bytes");
84is(-s -f $ro_empty_file, 0, "-s and -f: file with 0 bytes is plain file");
e7d3eb55 85
1f26655e
FC
86# stacked -l
87eval { -l -e "TEST" };
88like $@, qr/^The stat preceding -l _ wasn't an lstat at /,
89 'stacked -l non-lstat error with warnings off';
90{
91 local $^W = 1;
92 eval { -l -e "TEST" };
93 like $@, qr/^The stat preceding -l _ wasn't an lstat at /,
94 'stacked -l non-lstat error with warnings on';
95}
96# Make sure -l is using the previous stat buffer, and not using the previ-
97# ous op’s return value as a file name.
8f67f7cf 98# t/TEST can be a symlink under -Dmksymlinks, so use our temporary file.
1f26655e
FC
99SKIP: {
100 use Perl::OSType 'os_type';
cd22fad3 101 if (os_type ne 'Unix') { skip "Not Unix", 3 }
1f26655e 102 chomp(my $ln = `which ln`);
cd22fad3 103 if ( ! -e $ln ) { skip "No ln" , 3 }
8f67f7cf
NC
104 lstat $ro_empty_file;
105 `ln -s $ro_empty_file 1`;
bce3b594 106 isnt(-l -e _, 1, 'stacked -l uses previous stat, not previous retval');
1f26655e 107 unlink 1;
433644ee
FC
108
109 # Since we already have our skip block set up, we might as well put this
110 # test here, too:
111 # -l always treats a non-bareword argument as a file name
8f67f7cf 112 system 'ln', '-s', $ro_empty_file, \*foo;
433644ee 113 local $^W = 1;
cd22fad3
RS
114 my @warnings;
115 local $SIG{__WARN__} = sub { push @warnings, @_ };
bce3b594 116 is(-l \*foo, 1, '-l \*foo is a file name');
cd22fad3 117 ok($warnings[0] =~ /-l on filehandle foo/, 'warning for -l $handle');
433644ee 118 unlink \*foo;
1f26655e 119}
5840701a
FC
120# More -l $handle warning tests
121{
122 local $^W = 1;
123 my @warnings;
124 local $SIG{__WARN__} = sub { push @warnings, @_ };
125 () = -l \*{"\x{3c6}oo"};
126 like($warnings[0], qr/-l on filehandle \x{3c6}oo/,
127 '-l $handle warning is utf8-clean');
128 () = -l *foo;
129 like($warnings[1], qr/-l on filehandle foo/,
130 '-l $handle warning occurs for globs, not just globrefs');
131 tell foo; # vivify the IO slot
132 () = -l *foo{IO};
133 # (element [3] because tell also warns)
134 like($warnings[3], qr/-l on filehandle at/,
135 '-l $handle warning occurs for iorefs as well');
136}
1f26655e 137
7294df96
RGS
138# test that _ is a bareword after filetest operators
139
140-f 'TEST';
8c5e482d 141is(-f _, 1, "_ is bareword after filetest operator");
7294df96 142sub _ { "this is not a file name" }
8c5e482d 143is(-f _, 1, "_ is bareword after filetest operator");
d89f1457
BM
144
145my $over;
146{
147 package OverFtest;
148
4d57d24f 149 use overload
c1d4704a 150 fallback => 1,
4d57d24f 151 -X => sub {
c1d4704a 152 $over = [qq($_[0]), $_[1]];
4d57d24f
BM
153 "-$_[1]";
154 };
d89f1457 155}
f6aa8023
BM
156{
157 package OverString;
158
159 # No fallback. -X should fall back to string overload even without
160 # it.
161 use overload q/""/ => sub { $over = 1; "TEST" };
162}
163{
164 package OverBoth;
165
166 use overload
167 q/""/ => sub { "TEST" },
168 -X => sub { "-$_[1]" };
169}
170{
171 package OverNeither;
172
4d57d24f 173 # Need fallback. Previous versions of perl required 'fallback' to do
f6aa8023
BM
174 # -X operations on an object with no "" overload.
175 use overload
176 '+' => sub { 1 },
177 fallback => 1;
178}
179
180my $ft = bless [], "OverFtest";
c1d4704a 181my $ftstr = qq($ft);
f6aa8023
BM
182my $str = bless [], "OverString";
183my $both = bless [], "OverBoth";
184my $neither = bless [], "OverNeither";
c1d4704a 185my $nstr = qq($neither);
d89f1457 186
d0c91b6a
BM
187open my $gv, "<", "TEST";
188bless $gv, "OverString";
189open my $io, "<", "TEST";
190$io = *{$io}{IO};
191bless $io, "OverString";
192
822146ea
RGS
193my $fcntl_not_available;
194eval { require Fcntl } or $fcntl_not_available = 1;
fa7f7498 195
d89f1457 196for my $op (split //, "rwxoRWXOezsfdlpSbctugkTMBAC") {
d3ebc3eb 197 $over = [];
bce3b594
NC
198 my $rv = eval "-$op \$ft";
199 isnt( $rv, undef, "overloaded -$op succeeds" )
f6aa8023
BM
200 or diag( $@ );
201 is( $over->[0], $ftstr, "correct object for overloaded -$op" );
d89f1457
BM
202 is( $over->[1], $op, "correct op for overloaded -$op" );
203 is( $rv, "-$op", "correct return value for overloaded -$op");
f6aa8023 204
fa7f7498
BM
205 my ($exp, $is) = (1, "is");
206 if (
822146ea 207 !$fcntl_not_available and (
fa7f7498
BM
208 $op eq "u" and not eval { Fcntl::S_ISUID() } or
209 $op eq "g" and not eval { Fcntl::S_ISGID() } or
210 $op eq "k" and not eval { Fcntl::S_ISVTX() }
822146ea 211 )
fa7f7498
BM
212 ) {
213 ($exp, $is) = (0, "not");
214 }
215
f6aa8023
BM
216 $over = 0;
217 $rv = eval "-$op \$str";
bce3b594 218 is($@, "", "-$op succeeds with string overloading");
f6aa8023 219 is( $rv, eval "-$op 'TEST'", "correct -$op on string overload" );
fa7f7498 220 is( $over, $exp, "string overload $is called for -$op" );
f6aa8023 221
fa7f7498 222 ($exp, $is) = $op eq "l" ? (1, "is") : (0, "not");
d0c91b6a
BM
223
224 $over = 0;
225 eval "-$op \$gv";
226 is( $over, $exp, "string overload $is called for -$op on GLOB" );
227
52f7f5ab
BM
228 # IO refs always get string overload called. This might be a bug.
229 $op eq "t" || $op eq "T" || $op eq "B"
230 and ($exp, $is) = (1, "is");
231
d0c91b6a
BM
232 $over = 0;
233 eval "-$op \$io";
234 is( $over, $exp, "string overload $is called for -$op on IO");
235
f6aa8023
BM
236 $rv = eval "-$op \$both";
237 is( $rv, "-$op", "correct -$op on string/-X overload" );
238
239 $rv = eval "-$op \$neither";
bce3b594 240 is($@, "", "-$op succeeds with random overloading");
f6aa8023 241 is( $rv, eval "-$op \$nstr", "correct -$op with random overloading" );
f6aa8023 242
4d57d24f
BM
243 is( eval "-r -$op \$ft", "-r", "stacked overloaded -$op" );
244 is( eval "-$op -r \$ft", "-$op", "overloaded stacked -$op" );
245}
ca867162
FC
246
247# -l stack corruption: this bug occurred from 5.8 to 5.14
248{
249 push my @foo, "bar", -l baz;
250 is $foo[0], "bar", '-l bareword does not corrupt the stack';
251}
49498caf 252
31b139ba
FC
253# -l and fatal warnings
254stat "test.pl";
255eval { use warnings FATAL => io; -l cradd };
bce3b594
NC
256isnt(stat _, 1,
257 'fatal warnings do not prevent -l HANDLE from setting stat status');
31b139ba 258
49498caf
FC
259# File test ops should not call get-magic on the topmost SV on the stack if
260# it belongs to another op.
261{
262 my $w;
263 sub oon::TIESCALAR{bless[],'oon'}
264 sub oon::FETCH{$w++}
265 tie my $t, 'oon';
266 push my @a, $t, -t;
267 is $w, 1, 'file test does not call FETCH on stack item not its own';
268}
5731662b 269
97c226b8
FC
270# -T and -B
271
bd5f6c01
FC
272my $Perl = which_perl();
273
5731662b 274SKIP: {
2ad48547 275 skip "no -T on filehandles", 8 unless eval { -T STDERR; 1 };
97c226b8
FC
276
277 # Test that -T HANDLE sets the last stat type
5731662b
FC
278 -l "perl.c"; # last stat type is now lstat
279 -T STDERR; # should set it to stat, since -T does a stat
280 eval { -l _ }; # should die, because the last stat type is not lstat
281 like $@, qr/^The stat preceding -l _ wasn't an lstat at /,
282 '-T HANDLE sets the stat type';
97c226b8
FC
283
284 # statgv should be cleared when freed
285 fresh_perl_is
286 'open my $fh, "test.pl"; -r $fh; undef $fh; open my $fh2, '
bd5f6c01 287 . "q\0$Perl\0; print -B _",
97c226b8
FC
288 '',
289 { switches => ['-l'] },
290 'PL_statgv should not point to freed-and-reused SV';
291
292 # or coerced into a non-glob
293 fresh_perl_is
294 'open Fh, "test.pl"; -r($h{i} = *Fh); $h{i} = 3; undef %h;'
295 . 'open my $fh2, ' . "q\0" . which_perl() . "\0; print -B _",
296 '',
297 { switches => ['-l'] },
298 'PL_statgv should not point to coerced-freed-and-reused GV';
bd5f6c01
FC
299
300 # -T _ should work after stat $ioref
301 open my $fh, 'test.pl';
302 stat $Perl; # a binary file
303 stat *$fh{IO};
bce3b594 304 is(-T _, 1, '-T _ works after stat $ioref');
bd5f6c01
FC
305
306 # and after -r $ioref
307 -r *$fh{IO};
bce3b594 308 is(-T _, 1, '-T _ works after -r $ioref');
eb4c377a
FC
309
310 # -T _ on closed filehandle should still reset stat info
311 stat $fh;
312 close $fh;
313 -T _;
bce3b594 314 isnt(stat _, 1, '-T _ on closed filehandle resets stat info');
21a64c3e
FC
315
316 lstat "test.pl";
317 -T $fh; # closed
318 eval { lstat _ };
319 like $@, qr/^The stat preceding lstat\(\) wasn't an lstat at /,
320 '-T on closed handle resets last stat type';
2ad48547
FC
321
322 # Fatal warnings should not affect the setting of errno.
323 $! = 7;
324 -T cradd;
325 my $errno = $!;
326 $! = 7;
327 eval { use warnings FATAL => unopened; -T cradd };
328 my $errno2 = $!;
329 is $errno2, $errno,
330 'fatal warnings do not affect errno after -T BADHADNLE';
5731662b 331}
de61bf2a
FC
332
333is runperl(prog => '-T _', switches => ['-w'], stderr => 1), "",
334 'no uninit warnings from -T with no preceding stat';
7b7309af 335
ad2d99e3 336SKIP: {
bee528ec 337 my $rand_file_name = 'filetest-' . rand =~ y/.//dr;
ad2d99e3
FC
338 if (-e $rand_file_name) { skip "File $rand_file_name exists", 1 }
339 stat 'test.pl';
340 -T $rand_file_name;
bce3b594 341 isnt(stat _, 1, '-T "nonexistent" resets stat success status');
ad2d99e3
FC
342}
343
7b7309af
FC
344# Unsuccessful filetests on filehandles should leave stat buffers in the
345# same state whether fatal warnings are on or off.
346{
347 stat "test.pl";
348 # This GV has no IO
349 -r *phlon;
350 my $failed_stat1 = stat _;
351
352 stat "test.pl";
353 eval { use warnings FATAL => unopened; -r *phlon };
354 my $failed_stat2 = stat _;
355
356 is $failed_stat2, $failed_stat1,
357 'failed -r($gv_without_io) with and w/out fatal warnings';
358
359 stat "test.pl";
360 -r cength; # at compile time autovivifies IO, but with no fp
361 $failed_stat1 = stat _;
362
363 stat "test.pl";
364 eval { use warnings FATAL => unopened; -r cength };
365 $failed_stat2 = stat _;
366
367 is $failed_stat2, $failed_stat1,
368 'failed -r($gv_with_io_but_no_fp) with and w/out fatal warnings';
369}