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