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