This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Have newCONSTSUB pass the length to newXS
[perl5.git] / t / op / stat.t
... / ...
CommitLineData
1#!./perl
2
3BEGIN {
4 chdir 't' if -d 't';
5 @INC = '../lib';
6 require './test.pl'; # for which_perl() etc
7}
8
9use Config;
10
11my ($Null, $Curdir);
12if(eval {require File::Spec; 1}) {
13 $Null = File::Spec->devnull;
14 $Curdir = File::Spec->curdir;
15} else {
16 die $@ unless is_miniperl();
17 $Curdir = '.';
18 diag("miniperl failed to load File::Spec, error is:\n$@");
19 diag("\ncontinuing, assuming '.' for current directory. Some tests will be skipped.");
20}
21
22
23plan tests => 109;
24
25my $Perl = which_perl();
26
27$Is_Amiga = $^O eq 'amigaos';
28$Is_Cygwin = $^O eq 'cygwin';
29$Is_Darwin = $^O eq 'darwin';
30$Is_Dos = $^O eq 'dos';
31$Is_MPE = $^O eq 'mpeix';
32$Is_MSWin32 = $^O eq 'MSWin32';
33$Is_NetWare = $^O eq 'NetWare';
34$Is_OS2 = $^O eq 'os2';
35$Is_Solaris = $^O eq 'solaris';
36$Is_VMS = $^O eq 'VMS';
37$Is_DGUX = $^O eq 'dgux';
38$Is_MPRAS = $^O =~ /svr4/ && -f '/etc/.relid';
39$Is_Rhapsody= $^O eq 'rhapsody';
40
41$Is_Dosish = $Is_Dos || $Is_OS2 || $Is_MSWin32 || $Is_NetWare;
42
43$Is_UFS = $Is_Darwin && (() = `df -t ufs . 2>/dev/null`) == 2;
44
45if ($Is_Cygwin) {
46 require Win32;
47 Win32->import;
48}
49
50my($DEV, $INO, $MODE, $NLINK, $UID, $GID, $RDEV, $SIZE,
51 $ATIME, $MTIME, $CTIME, $BLKSIZE, $BLOCKS) = (0..12);
52
53my $tmpfile = tempfile();
54my $tmpfile_link = tempfile();
55
56chmod 0666, $tmpfile;
57unlink_all $tmpfile;
58open(FOO, ">$tmpfile") || DIE("Can't open temp test file: $!");
59close FOO;
60
61open(FOO, ">$tmpfile") || DIE("Can't open temp test file: $!");
62
63my($nlink, $mtime, $ctime) = (stat(FOO))[$NLINK, $MTIME, $CTIME];
64
65# The clock on a network filesystem might be different from the
66# system clock.
67my $Filesystem_Time_Offset = abs($mtime - time);
68
69#nlink should if link support configured in Perl.
70SKIP: {
71 skip "No link count - Hard link support not built in.", 1
72 unless $Config{d_link};
73
74 is($nlink, 1, 'nlink on regular file');
75}
76
77SKIP: {
78 skip "mtime and ctime not reliable", 2
79 if $Is_MSWin32 or $Is_NetWare or $Is_Cygwin or $Is_Dos or $Is_Darwin;
80
81 ok( $mtime, 'mtime' );
82 is( $mtime, $ctime, 'mtime == ctime' );
83}
84
85
86# Cygwin seems to have a 3 second granularity on its timestamps.
87my $funky_FAT_timestamps = $Is_Cygwin;
88sleep 3 if $funky_FAT_timestamps;
89
90print FOO "Now is the time for all good men to come to.\n";
91close(FOO);
92
93sleep 2;
94
95
96SKIP: {
97 unlink $tmpfile_link;
98 my $lnk_result = eval { link $tmpfile, $tmpfile_link };
99 skip "link() unimplemented", 6 if $@ =~ /unimplemented/;
100
101 is( $@, '', 'link() implemented' );
102 ok( $lnk_result, 'linked tmp testfile' );
103 ok( chmod(0644, $tmpfile), 'chmoded tmp testfile' );
104
105 my($nlink, $mtime, $ctime) = (stat($tmpfile))[$NLINK, $MTIME, $CTIME];
106
107 SKIP: {
108 skip "No link count", 1 if $Config{dont_use_nlink};
109 skip "Cygwin9X fakes hard links by copying", 1
110 if $Config{myuname} =~ /^cygwin_(?:9\d|me)\b/i;
111
112 is($nlink, 2, 'Link count on hard linked file' );
113 }
114
115 SKIP: {
116 skip_if_miniperl("File::Spec not built for minitest", 2);
117 my $cwd = File::Spec->rel2abs($Curdir);
118 skip "Solaris tmpfs has different mtime/ctime link semantics", 2
119 if $Is_Solaris and $cwd =~ m#^/tmp# and
120 $mtime && $mtime == $ctime;
121 skip "AFS has different mtime/ctime link semantics", 2
122 if $cwd =~ m#$Config{'afsroot'}/#;
123 skip "AmigaOS has different mtime/ctime link semantics", 2
124 if $Is_Amiga;
125 # Win32 could pass $mtime test but as FAT and NTFS have
126 # no ctime concept $ctime is ALWAYS == $mtime
127 # expect netware to be the same ...
128 skip "No ctime concept on this OS", 2
129 if $Is_MSWin32 ||
130 ($Is_Darwin && $Is_UFS);
131
132 if( !ok($mtime, 'hard link mtime') ||
133 !isnt($mtime, $ctime, 'hard link ctime != mtime') ) {
134 print STDERR <<DIAG;
135# Check if you are on a tmpfs of some sort. Building in /tmp sometimes
136# has this problem. Building on the ClearCase VOBS filesystem may also
137# cause this failure.
138#
139# Darwin's UFS doesn't have a ctime concept, and thus is expected to fail
140# this test.
141DIAG
142 }
143 }
144
145}
146
147# truncate and touch $tmpfile.
148open(F, ">$tmpfile") || DIE("Can't open temp test file: $!");
149ok(-z \*F, '-z on empty filehandle');
150ok(! -s \*F, ' and -s');
151close F;
152
153ok(-z $tmpfile, '-z on empty file');
154ok(! -s $tmpfile, ' and -s');
155
156open(F, ">$tmpfile") || DIE("Can't open temp test file: $!");
157print F "hi\n";
158close F;
159
160open(F, "<$tmpfile") || DIE("Can't open temp test file: $!");
161ok(!-z *F, '-z on empty filehandle');
162ok( -s *F, ' and -s');
163close F;
164
165ok(! -z $tmpfile, '-z on non-empty file');
166ok(-s $tmpfile, ' and -s');
167
168
169# Strip all access rights from the file.
170ok( chmod(0000, $tmpfile), 'chmod 0000' );
171
172SKIP: {
173 skip "-r, -w and -x have different meanings on VMS", 3 if $Is_VMS;
174
175 SKIP: {
176 # Going to try to switch away from root. Might not work.
177 my $olduid = $>;
178 eval { $> = 1; };
179 skip "Can't test -r or -w meaningfully if you're superuser", 2
180 if ($Is_Cygwin ? Win32::IsAdminUser : $> == 0);
181
182 SKIP: {
183 skip "Can't test -r meaningfully?", 1 if $Is_Dos;
184 ok(!-r $tmpfile, " -r");
185 }
186
187 ok(!-w $tmpfile, " -w");
188
189 # switch uid back (may not be implemented)
190 eval { $> = $olduid; };
191 }
192
193 ok(! -x $tmpfile, ' -x');
194}
195
196
197
198ok(chmod(0700,$tmpfile), 'chmod 0700');
199ok(-r $tmpfile, ' -r');
200ok(-w $tmpfile, ' -w');
201
202SKIP: {
203 skip "-x simply determines if a file ends in an executable suffix", 1
204 if $Is_Dosish;
205
206 ok(-x $tmpfile, ' -x');
207}
208
209ok( -f $tmpfile, ' -f');
210ok(! -d $tmpfile, ' !-d');
211
212# Is this portable?
213ok( -d '.', '-d cwd' );
214ok(! -f '.', '!-f cwd' );
215
216
217SKIP: {
218 unlink($tmpfile_link);
219 my $symlink_rslt = eval { symlink $tmpfile, $tmpfile_link };
220 skip "symlink not implemented", 3 if $@ =~ /unimplemented/;
221
222 is( $@, '', 'symlink() implemented' );
223 ok( $symlink_rslt, 'symlink() ok' );
224 ok(-l $tmpfile_link, '-l');
225}
226
227ok(-o $tmpfile, '-o');
228
229ok(-e $tmpfile, '-e');
230
231unlink($tmpfile_link);
232ok(! -e $tmpfile_link, ' -e on unlinked file');
233
234SKIP: {
235 skip "No character, socket or block special files", 6
236 if $Is_MSWin32 || $Is_NetWare || $Is_Dos;
237 skip "/dev isn't available to test against", 6
238 unless -d '/dev' && -r '/dev' && -x '/dev';
239 skip "Skipping: unexpected ls output in MP-RAS", 6
240 if $Is_MPRAS;
241
242 # VMS problem: If GNV or other UNIX like tool is installed, then
243 # sometimes Perl will find /bin/ls, and will try to run it.
244 # But since Perl on VMS does not know to run it under Bash, it will
245 # try to run the DCL verb LS. And if the VMS product Language
246 # Sensitive Editor is installed, or some other LS verb, that will
247 # be run instead. So do not do this until we can teach Perl
248 # when to use BASH on VMS.
249 skip "ls command not available to Perl in OpenVMS right now.", 6
250 if $Is_VMS;
251
252 my $LS = $Config{d_readlink} ? "ls -lL" : "ls -l";
253 my $CMD = "$LS /dev 2>/dev/null";
254 my $DEV = qx($CMD);
255
256 skip "$CMD failed", 6 if $DEV eq '';
257
258 my @DEV = do { my $dev; opendir($dev, "/dev") ? readdir($dev) : () };
259
260 skip "opendir failed: $!", 6 if @DEV == 0;
261
262 # /dev/stdout might be either character special or a named pipe,
263 # or a symlink, or a socket, depending on which OS and how are
264 # you running the test, so let's censor that one away.
265 # Similar remarks hold for stderr.
266 $DEV =~ s{^[cpls].+?\sstdout$}{}m;
267 @DEV = grep { $_ ne 'stdout' } @DEV;
268 $DEV =~ s{^[cpls].+?\sstderr$}{}m;
269 @DEV = grep { $_ ne 'stderr' } @DEV;
270
271 # /dev/printer is also naughty: in IRIX it shows up as
272 # Srwx-----, not srwx------.
273 $DEV =~ s{^.+?\sprinter$}{}m;
274 @DEV = grep { $_ ne 'printer' } @DEV;
275
276 # If running as root, we will see .files in the ls result,
277 # and readdir() will see them always. Potential for conflict,
278 # so let's weed them out.
279 $DEV =~ s{^.+?\s\..+?$}{}m;
280 @DEV = grep { ! m{^\..+$} } @DEV;
281
282 # Irix ls -l marks sockets with 'S' while 's' is a 'XENIX semaphore'.
283 if ($^O eq 'irix') {
284 $DEV =~ s{^S(.+?)}{s$1}mg;
285 }
286
287 my $try = sub {
288 my @c1 = eval qq[\$DEV =~ /^$_[0].*/mg];
289 my @c2 = eval qq[grep { $_[1] "/dev/\$_" } \@DEV];
290 my $c1 = scalar @c1;
291 my $c2 = scalar @c2;
292 is($c1, $c2, "ls and $_[1] agreeing on /dev ($c1 $c2)");
293 };
294
295SKIP: {
296 skip("DG/UX ls -L broken", 3) if $Is_DGUX;
297
298 $try->('b', '-b');
299 $try->('c', '-c');
300 $try->('s', '-S');
301
302}
303
304ok(! -b $Curdir, '!-b cwd');
305ok(! -c $Curdir, '!-c cwd');
306ok(! -S $Curdir, '!-S cwd');
307
308}
309
310SKIP: {
311 my($cnt, $uid);
312 $cnt = $uid = 0;
313
314 # Find a set of directories that's very likely to have setuid files
315 # but not likely to be *all* setuid files.
316 my @bin = grep {-d && -r && -x} qw(/sbin /usr/sbin /bin /usr/bin);
317 skip "Can't find a setuid file to test with", 3 unless @bin;
318
319 for my $bin (@bin) {
320 opendir BIN, $bin or die "Can't opendir $bin: $!";
321 while (defined($_ = readdir BIN)) {
322 $_ = "$bin/$_";
323 $cnt++;
324 $uid++ if -u;
325 last if $uid && $uid < $cnt;
326 }
327 }
328 closedir BIN;
329
330 skip "No setuid programs", 3 if $uid == 0;
331
332 isnt($cnt, 0, 'found some programs');
333 isnt($uid, 0, ' found some setuid programs');
334 ok($uid < $cnt, " they're not all setuid");
335}
336
337
338# To assist in automated testing when a controlling terminal (/dev/tty)
339# may not be available (at, cron rsh etc), the PERL_SKIP_TTY_TEST env var
340# can be set to skip the tests that need a tty.
341SKIP: {
342 skip "These tests require a TTY", 4 if $ENV{PERL_SKIP_TTY_TEST};
343
344 my $TTY = $Is_Rhapsody ? "/dev/ttyp0" : "/dev/tty";
345
346 SKIP: {
347 skip "Test uses unixisms", 2 if $Is_MSWin32 || $Is_NetWare;
348 skip "No TTY to test -t with", 2 unless -e $TTY;
349
350 open(TTY, $TTY) ||
351 warn "Can't open $TTY--run t/TEST outside of make.\n";
352 ok(-t TTY, '-t');
353 ok(-c TTY, 'tty is -c');
354 close(TTY);
355 }
356 ok(! -t TTY, '!-t on closed TTY filehandle');
357
358 {
359 local $TODO = 'STDIN not a tty when output is to pipe' if $Is_VMS;
360 ok(-t, '-t on STDIN');
361 }
362}
363
364SKIP: {
365 skip "No null device to test with", 1 unless -e $Null;
366 skip "We know Win32 thinks '$Null' is a TTY", 1 if $Is_MSWin32;
367
368 open(NULL, $Null) or DIE("Can't open $Null: $!");
369 ok(! -t NULL, 'null device is not a TTY');
370 close(NULL);
371}
372
373
374# These aren't strictly "stat" calls, but so what?
375my $statfile = './op/stat.t';
376ok( -T $statfile, '-T');
377ok(! -B $statfile, '!-B');
378
379SKIP: {
380 skip("DG/UX", 1) if $Is_DGUX;
381ok(-B $Perl, '-B');
382}
383
384ok(! -T $Perl, '!-T');
385
386open(FOO,$statfile);
387SKIP: {
388 eval { -T FOO; };
389 skip "-T/B on filehandle not implemented", 15 if $@ =~ /not implemented/;
390
391 is( $@, '', '-T on filehandle causes no errors' );
392
393 ok(-T FOO, ' -T');
394 ok(! -B FOO, ' !-B');
395
396 $_ = <FOO>;
397 like($_, qr/perl/, 'after readline');
398 ok(-T FOO, ' still -T');
399 ok(! -B FOO, ' still -B');
400 close(FOO);
401
402 open(FOO,$statfile);
403 $_ = <FOO>;
404 like($_, qr/perl/, 'reopened and after readline');
405 ok(-T FOO, ' still -T');
406 ok(! -B FOO, ' still !-B');
407
408 ok(seek(FOO,0,0), 'after seek');
409 ok(-T FOO, ' still -T');
410 ok(! -B FOO, ' still !-B');
411
412 # It's documented this way in perlfunc *shrug*
413 () = <FOO>;
414 ok(eof FOO, 'at EOF');
415 ok(-T FOO, ' still -T');
416 ok(-B FOO, ' now -B');
417}
418close(FOO);
419
420
421SKIP: {
422 skip "No null device to test with", 2 unless -e $Null;
423
424 ok(-T $Null, 'null device is -T');
425 ok(-B $Null, ' and -B');
426}
427
428
429# and now, a few parsing tests:
430$_ = $tmpfile;
431ok(-f, 'bare -f uses $_');
432ok(-f(), ' -f() "');
433
434unlink $tmpfile or print "# unlink failed: $!\n";
435
436# bug id 20011101.069
437my @r = \stat($Curdir);
438is(scalar @r, 13, 'stat returns full 13 elements');
439
440stat $0;
441eval { lstat _ };
442like( $@, qr/^The stat preceding lstat\(\) wasn't an lstat/,
443 'lstat _ croaks after stat' );
444eval { lstat *_ };
445like( $@, qr/^The stat preceding lstat\(\) wasn't an lstat/,
446 'lstat *_ croaks after stat' );
447eval { lstat \*_ };
448like( $@, qr/^The stat preceding lstat\(\) wasn't an lstat/,
449 'lstat \*_ croaks after stat' );
450eval { -l _ };
451like( $@, qr/^The stat preceding -l _ wasn't an lstat/,
452 '-l _ croaks after stat' );
453
454lstat $0;
455eval { lstat _ };
456is( "$@", "", "lstat _ ok after lstat" );
457eval { -l _ };
458is( "$@", "", "-l _ ok after lstat" );
459
460SKIP: {
461 skip "No lstat", 2 unless $Config{d_lstat};
462
463 # bug id 20020124.004
464 # If we have d_lstat, we should have symlink()
465 my $linkname = 'dolzero';
466 symlink $0, $linkname or die "# Can't symlink $0: $!";
467 lstat $linkname;
468 -T _;
469 eval { lstat _ };
470 like( $@, qr/^The stat preceding lstat\(\) wasn't an lstat/,
471 'lstat croaks after -T _' );
472 eval { -l _ };
473 like( $@, qr/^The stat preceding -l _ wasn't an lstat/,
474 '-l _ croaks after -T _' );
475 unlink $linkname or print "# unlink $linkname failed: $!\n";
476}
477
478SKIP: {
479 skip "Too much clock skew between system and filesystem", 5
480 if ($Filesystem_Time_Offset > 5);
481 print "# Zzz...\n";
482 sleep($Filesystem_Time_Offset+1);
483 my $f = 'tstamp.tmp';
484 unlink $f;
485 ok (open(S, "> $f"), 'can create tmp file');
486 close S or die;
487 my @a = stat $f;
488 print "# time=$^T, stat=(@a)\n";
489 my @b = (-M _, -A _, -C _);
490 print "# -MAC=(@b)\n";
491 ok( (-M _) < 0, 'negative -M works');
492 ok( (-A _) < 0, 'negative -A works');
493 ok( (-C _) < 0, 'negative -C works');
494 ok(unlink($f), 'unlink tmp file');
495}
496
497{
498 ok(open(F, ">", $tmpfile), 'can create temp file');
499 close F;
500 chmod 0077, $tmpfile;
501 my @a = stat($tmpfile);
502 my $s1 = -s _;
503 -T _;
504 my $s2 = -s _;
505 is($s1, $s2, q(-T _ doesn't break the statbuffer));
506 unlink $tmpfile;
507}
508
509SKIP: {
510 skip "No dirfd()", 9 unless $Config{d_dirfd} || $Config{d_dir_dd_fd};
511 ok(opendir(DIR, "."), 'Can open "." dir') || diag "Can't open '.': $!";
512 ok(stat(DIR), "stat() on dirhandle works");
513 ok(-d -r _ , "chained -x's on dirhandle");
514 ok(-d DIR, "-d on a dirhandle works");
515
516 # And now for the ambiguous bareword case
517 {
518 no warnings 'deprecated';
519 ok(open(DIR, "TEST"), 'Can open "TEST" dir')
520 || diag "Can't open 'TEST': $!";
521 }
522 my $size = (stat(DIR))[7];
523 ok(defined $size, "stat() on bareword works");
524 is($size, -s "TEST", "size returned by stat of bareword is for the file");
525 ok(-f _, "ambiguous bareword uses file handle, not dir handle");
526 ok(-f DIR);
527 closedir DIR or die $!;
528 close DIR or die $!;
529}
530
531{
532 # RT #8244: *FILE{IO} does not behave like *FILE for stat() and -X() operators
533 ok(open(F, ">", $tmpfile), 'can create temp file');
534 my @thwap = stat *F{IO};
535 ok(@thwap, "stat(*F{IO}) works");
536 ok( -f *F{IO} , "single file tests work with *F{IO}");
537 close F;
538 unlink $tmpfile;
539
540 #PVIO's hold dirhandle information, so let's test them too.
541
542 SKIP: {
543 skip "No dirfd()", 9 unless $Config{d_dirfd} || $Config{d_dir_dd_fd};
544 ok(opendir(DIR, "."), 'Can open "." dir') || diag "Can't open '.': $!";
545 ok(stat(*DIR{IO}), "stat() on *DIR{IO} works");
546 ok(-d _ , "The special file handle _ is set correctly");
547 ok(-d -r *DIR{IO} , "chained -x's on *DIR{IO}");
548
549 # And now for the ambiguous bareword case
550 {
551 no warnings 'deprecated';
552 ok(open(DIR, "TEST"), 'Can open "TEST" dir')
553 || diag "Can't open 'TEST': $!";
554 }
555 my $size = (stat(*DIR{IO}))[7];
556 ok(defined $size, "stat() on *THINGY{IO} works");
557 is($size, -s "TEST",
558 "size returned by stat of *THINGY{IO} is for the file");
559 ok(-f _, "ambiguous *THINGY{IO} uses file handle, not dir handle");
560 ok(-f *DIR{IO});
561 closedir DIR or die $!;
562 close DIR or die $!;
563 }
564}
565
566END {
567 chmod 0666, $tmpfile;
568 unlink_all $tmpfile;
569}