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