Puut... The TODO... Beck!
[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';
cc25fa79 6 require './test.pl';
ea368a7c 7}
8
9use Config;
de5a37b2 10use File::Spec;
ea368a7c 11
a7ec4029 12plan tests => 69;
8d063cd8 13
b5fe401b 14my $Perl = which_perl;
15
cc25fa79 16$Is_Amiga = $^O eq 'amigaos';
17$Is_Cygwin = $^O eq 'cygwin';
18$Is_Dos = $^O eq 'dos';
19$Is_MPE = $^O eq 'mpeix';
68dc0745 20$Is_MSWin32 = $^O eq 'MSWin32';
2986a63f 21$Is_NetWare = $^O eq 'NetWare';
cc25fa79 22$Is_OS2 = $^O eq 'os2';
23$Is_Solaris = $^O eq 'solaris';
de5a37b2 24$Is_VMS = $^O eq 'VMS';
cc25fa79 25
26$Is_Dosish = $Is_Dos || $Is_OS2 || $Is_MSWin32 || $Is_NetWare || $Is_Cygwin;
cc25fa79 27
28my($DEV, $INO, $MODE, $NLINK, $UID, $GID, $RDEV, $SIZE,
29 $ATIME, $MTIME, $CTIME, $BLKSIZE, $BLOCKS) = (0..12);
d48672a2 30
de5a37b2 31my $Curdir = File::Spec->curdir;
32
4435c477 33
de5a37b2 34my $tmpfile = 'Op_stat.tmp';
cc25fa79 35my $tmpfile_link = $tmpfile.'2';
4435c477 36
8d220878 37
cc25fa79 38unlink $tmpfile;
39open(FOO, ">$tmpfile") || BAILOUT("Can't open temp test file: $!");
de5a37b2 40close FOO;
8d220878 41
de5a37b2 42open(FOO, ">$tmpfile") || BAILOUT("Can't open temp test file: $!");
4435c477 43
cc25fa79 44my($nlink, $mtime, $ctime) = (stat(FOO))[$NLINK, $MTIME, $CTIME];
b5bfebd7 45SKIP: {
46 skip "No link count", 1 if $Is_VMS;
47
48 is($nlink, 1, 'nlink on regular file');
49}
8d220878 50
cc25fa79 51SKIP: {
52 skip "mtime and ctime not reliable", 2
53 if $Is_MSWin32 or $Is_NetWare or $Is_Cygwin or $Is_Dos;
54
55 ok( $mtime, 'mtime' );
56 is( $mtime, $ctime, 'mtime == ctime' );
4435c477 57}
8d063cd8 58
cc25fa79 59
60# Cygwin seems to have a 3 second granularity on its timestamps.
61my $funky_FAT_timestamps = $Is_Cygwin;
62sleep 3 if $funky_FAT_timestamps;
63
64print FOO "Now is the time for all good men to come to.\n";
65close(FOO);
66
67sleep 2 unless $funky_FAT_timestamps;
68
69
70SKIP: {
71 unlink $tmpfile_link;
de5a37b2 72 my $lnk_result = eval { link $tmpfile, $tmpfile_link };
73 skip "link() unimplemented", 6 if $@ =~ /unimplemented/;
cc25fa79 74
de5a37b2 75 is( $@, '', 'link() implemented' );
76 ok( $lnk_result, 'linked tmp testfile' );
cc25fa79 77 ok( chmod(0644, $tmpfile), 'chmoded tmp testfile' );
78
79 my($nlink, $mtime, $ctime) = (stat($tmpfile))[$NLINK, $MTIME, $CTIME];
80
81 SKIP: {
82 skip "No link count", 1 if $Config{dont_use_nlink};
83 is($nlink, 2, 'Link count on hard linked file' );
84 }
85
86 SKIP: {
de5a37b2 87 my $cwd = File::Spec->rel2abs($Curdir);
cc25fa79 88 skip "Solaris tmpfs has different mtime/ctime link semantics", 2
89 if $Is_Solaris and $cwd =~ m#^/tmp# and
90 $mtime && $mtime == $ctime;
91 skip "AFS has different mtime/ctime link semantics", 2
92 if $cwd =~ m#$Config{'afsroot'}/#;
93 skip "AmigaOS has different mtime/ctime link semantics", 2
94 if $Is_Amiga;
95
96 if( !ok($mtime, 'hard link mtime') ||
97 !isnt($mtime, $ctime, 'hard link ctime != mtime') ) {
98 print <<DIAG;
99# Check if you are on a tmpfs of some sort. Building in /tmp sometimes
100# has this problem. Also building on the ClearCase VOBS filesystem may
101# cause this failure.
102DIAG
103 }
104 }
105
3fe9a6f1 106}
8d063cd8 107
cc25fa79 108# truncate and touch $tmpfile.
109open(F, ">$tmpfile") || BAILOUT("Can't open temp test file: $!");
110close F;
111
112ok(-z $tmpfile, '-z on empty file');
113ok(! -s $tmpfile, ' and -s');
114
115open(F, ">$tmpfile") || BAILOUT("Can't open temp test file: $!");
116print F "hi\n";
117close F;
118
119ok(! -z $tmpfile, '-z on non-empty file');
120ok(-s $tmpfile, ' and -s');
121
122
123# Strip all access rights from the file.
124ok( chmod(0000, $tmpfile), 'chmod 0000' );
125
126SKIP: {
de5a37b2 127 skip "-r, -w and -x have different meanings on VMS", 3 if $Is_VMS;
cc25fa79 128
129 SKIP: {
de5a37b2 130 # Going to try to switch away from root. Might not work.
131 my $olduid = $>;
132 eval { $> = 1; };
133 skip "Can't test -r or -w meaningfully if you're superuser", 2
134 if $> == 0;
135
136 SKIP: {
137 skip "Can't test -r meaningfully?", 1 if $Is_Dos || $Is_Cygwin;
138 ok(!-r $tmpfile, " -r");
139 }
cc25fa79 140
de5a37b2 141 ok(!-w $tmpfile, " -w");
cc25fa79 142
de5a37b2 143 # switch uid back (may not be implemented)
144 eval { $> = $olduid; };
145 }
146
147 ok(! -x $tmpfile, ' -x');
a245ea2d 148}
cc25fa79 149
de5a37b2 150
cc25fa79 151
152
153# in ms windows, $tmpfile inherits owner uid from directory
154# not sure about os/2, but chown is harmless anyway
155eval { chown $>,$tmpfile; 1 } or print "# $@" ;
156
157ok(chmod(0700,$tmpfile), 'chmod 0700');
158ok(-r $tmpfile, ' -r');
159ok(-w $tmpfile, ' -w');
160
161SKIP: {
162 skip "-x simply determins if a file ends in an executable suffix", 1
163 if $Is_Dosish;
164
165 ok(-x $tmpfile, ' -x');
6eb13c3b 166}
cc25fa79 167
168ok( -f $tmpfile, ' -f');
169ok(! -d $tmpfile, ' !-d');
170
171# Is this portable?
de5a37b2 172ok( -d $Curdir, '-d cwd' );
173ok(! -f $Curdir, '!-f cwd' );
174
cc25fa79 175
176SKIP: {
de5a37b2 177 unlink($tmpfile_link);
178 my $symlink_rslt = eval { symlink $tmpfile, $tmpfile_link };
179 skip "symlink not implemented", 3 if $@ =~ /unimplemented/;
cc25fa79 180
de5a37b2 181 is( $@, '', 'symlink() implemented' );
182 ok( $symlink_rslt, 'symlink() ok' );
183 ok(-l $tmpfile_link, '-l');
6eb13c3b 184}
cc25fa79 185
186ok(-o $tmpfile, '-o');
187
188ok(-e $tmpfile, '-e');
de5a37b2 189
190unlink($tmpfile_link);
cc25fa79 191ok(! -e $tmpfile_link, ' -e on unlinked file');
192
193SKIP: {
a7ec4029 194 skip "No character, socket or block special files", 3
cc25fa79 195 if $Is_MSWin32 || $Is_NetWare || $Is_Dos;
3fcc9fea 196 skip "/dev isn't available to test against", 3
197 unless -d '/dev' && -r '/dev' && -x '/dev';
de5a37b2 198
a7ec4029 199 my $LS = $Config{d_readlink} ? "ls -lL" : "ls -l";
200 my $CMD = "$LS /dev";
201 my $DEV = qx($CMD);
202
203 skip "$CMD failed", 3 if $DEV eq '';
204
3fcc9fea 205 my @DEV = do { my $dev; opendir($dev, "/dev") ? readdir($dev) : () };
206
207 skip "opendir failed: $!", 3 if @DEV == 0;
208
9aa9a1a6 209 # /dev/stdout might be either character special or a named pipe,
210 # depending on which OS and how are you running the test, so let's
211 # censor that one away.
212 $DEV =~ s{^[cp].+?\bstdout$}{}m;
213 @DEV = grep { ! m{\bstdout$} } @DEV;
214
3fcc9fea 215 my $try = sub {
216 my @c1 = eval qq[\$DEV =~ /^$_[0]/mg];
217 my @c2 = eval qq[grep { $_[1] "/dev/\$_" } \@DEV];
218 my $c1 = scalar @c1;
219 my $c2 = scalar @c2;
9aa9a1a6 220 is($c1, $c2, "ls and $_[1] agreeing on /dev ($c1 $c2)");
3fcc9fea 221 };
222
223 $try->('b', '-b');
224 $try->('c', '-c');
225 $try->('s', '-S');
378cc40b 226}
227
3fcc9fea 228ok(! -b $Curdir, '!-b cwd');
de5a37b2 229ok(! -c $Curdir, '!-c cwd');
230ok(! -S $Curdir, '!-S cwd');
cc25fa79 231
232SKIP: {
de5a37b2 233 skip "No setuid", 3 if $Is_MPE or $Is_Amiga or $Is_Dosish or $Is_Cygwin;
b971f6e4 234
cc25fa79 235 my($cnt, $uid);
236 $cnt = $uid = 0;
237
238 # Find a set of directories that's very likely to have setuid files
239 # but not likely to be *all* setuid files.
240 my @bin = grep {-d && -r && -x} qw(/sbin /usr/sbin /bin /usr/bin);
de5a37b2 241 skip "Can't find a setuid file to test with", 3 unless @bin;
cc25fa79 242
243 for my $bin (@bin) {
244 opendir BIN, $bin or die "Can't opendir $bin: $!";
245 while (defined($_ = readdir BIN)) {
246 $_ = "$bin/$_";
247 $cnt++;
248 $uid++ if -u;
249 last if $uid && $uid < $cnt;
250 }
251 }
252 closedir BIN;
253
de5a37b2 254 if( !isnt($cnt, 0, 'found some programs') ||
255 !isnt($uid, 0, 'found some setuid programs') ||
cc25fa79 256 !ok($uid < $cnt, " they're not all setuid") )
257 {
258 print <<DIAG;
259# The above two tests assume that at least one of these directories
260# are readable, executable and contain at least one setuid file
261# (but aren't all setuid).
262# @bin
263DIAG
218d7377 264 }
378cc40b 265}
b8440792 266
378cc40b 267
3e3baf6d 268# To assist in automated testing when a controlling terminal (/dev/tty)
269# may not be available (at, cron rsh etc), the PERL_SKIP_TTY_TEST env var
270# can be set to skip the tests that need a tty.
cc25fa79 271SKIP: {
272 skip "These tests require a TTY", 4 if $ENV{PERL_SKIP_TTY_TEST};
273
274 my $TTY = $^O eq 'rhapsody' ? "/dev/ttyp0" : "/dev/tty";
275
276 SKIP: {
277 skip "Test uses unixisms", 2 if $Is_MSWin32 || $Is_NetWare;
278 skip "No TTY to test -t with", 2 unless -e $TTY;
279
280 open(TTY, $TTY) ||
281 warn "Can't open $TTY--run t/TEST outside of make.\n";
282 ok(-t TTY, '-t');
283 ok(-c TTY, 'tty is -c');
284 close(TTY);
3e3baf6d 285 }
cc25fa79 286 ok(! -t TTY, '!-t on closed TTY filehandle');
287 ok(-t, '-t on STDIN');
68dc0745 288}
cc25fa79 289
de5a37b2 290my $Null = File::Spec->devnull;
cc25fa79 291SKIP: {
de5a37b2 292 skip "No null device to test with", 1 unless -e $Null;
cc25fa79 293
de5a37b2 294 open(NULL, $Null) or BAIL_OUT("Can't open $Null: $!");
295 ok(! -t NULL, 'null device is not a TTY');
cc25fa79 296 close(NULL);
378cc40b 297}
cc25fa79 298
378cc40b 299
300# These aren't strictly "stat" calls, but so what?
301
cc25fa79 302ok(-T 'op/stat.t', '-T');
303ok(! -B 'op/stat.t', '!-B');
378cc40b 304
b5fe401b 305ok(-B $Perl, '-B');
306ok(! -T $Perl, '!-T');
378cc40b 307
f0fcb552 308open(FOO,'op/stat.t');
cc25fa79 309SKIP: {
310 eval { -T FOO; };
de5a37b2 311 skip "-T/B on filehandle not implemented", 15 if $@ =~ /not implemented/;
cc25fa79 312
313 is( $@, '', '-T on filehandle causes no errors' );
314
315 ok(-T FOO, ' -T');
316 ok(! -B FOO, ' !-B');
317
f0fcb552 318 $_ = <FOO>;
cc25fa79 319 ok(/perl/, 'after readline');
320 ok(-T FOO, ' still -T');
321 ok(! -B FOO, ' still -B');
f0fcb552 322 close(FOO);
323
324 open(FOO,'op/stat.t');
325 $_ = <FOO>;
cc25fa79 326 ok(/perl/, 'reopened and after readline');
327 ok(-T FOO, ' still -T');
328 ok(! -B FOO, ' still !-B');
329
330 ok(seek(FOO,0,0), 'after seek');
de5a37b2 331 ok(-T FOO, ' still -T');
332 ok(! -B FOO, ' still !-B');
333
334 # It's documented this way in perlfunc *shrug*
335 () = <FOO>;
336 ok(eof FOO, 'at EOF');
337 ok(-T FOO, ' still -T');
338 ok(-B FOO, ' now -B');
f0fcb552 339}
340close(FOO);
378cc40b 341
cc25fa79 342
de5a37b2 343SKIP: {
344 skip "No null device to test with", 2 unless -e $Null;
345
346 ok(-T $Null, 'null device is -T');
347 ok(-B $Null, ' and -B');
348}
cc25fa79 349
108ed793 350
351# and now, a few parsing tests:
cc25fa79 352$_ = $tmpfile;
353ok(-f, 'bare -f uses $_');
354ok(-f(), ' -f() "');
108ed793 355
cc25fa79 356unlink $tmpfile or print "# unlink failed: $!\n";
58d95175 357
358# bug id 20011101.069
359my @r = \stat(".");
cc25fa79 360is(scalar @r, 13, 'stat returns full 13 elements');
361