applied suggested patch, modulo already applied parts
[p5sagit/p5-mst-13.2.git] / t / op / stat.t
CommitLineData
8d063cd8 1#!./perl
2
79072805 3# $RCSfile: stat.t,v $$Revision: 4.1 $$Date: 92/08/07 18:28:28 $
ea368a7c 4
5BEGIN {
6 chdir 't' if -d 't';
93430cb4 7 unshift @INC, '../lib';
ea368a7c 8}
9
10use Config;
11
108ed793 12print "1..58\n";
8d063cd8 13
68dc0745 14$Is_MSWin32 = $^O eq 'MSWin32';
39e571d4 15$Is_Dos = $^O eq 'dos';
a245ea2d 16$Is_Dosish = $Is_Dos || $^O eq 'os2' || $Is_MSWin32;
68dc0745 17chop($cwd = ($Is_MSWin32 ? `cd` : `pwd`));
6eb13c3b 18
a245ea2d 19$DEV = `ls -l /dev` unless $Is_Dosish;
d48672a2 20
a687059c 21unlink "Op.stat.tmp";
f0fcb552 22open(FOO, ">Op.stat.tmp");
8d063cd8 23
68dc0745 24# hack to make Apollo update link count:
39e571d4 25$junk = `ls Op.stat.tmp` unless ($Is_MSWin32 || $Is_Dos);
988174c1 26
8d063cd8 27($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
f0fcb552 28 $blksize,$blocks) = stat(FOO);
8d063cd8 29if ($nlink == 1) {print "ok 1\n";} else {print "not ok 1\n";}
5aabfad6 30if ($Is_MSWin32 || ($mtime && $mtime == $ctime)) {print "ok 2\n";}
31else {print "# |$mtime| vs |$ctime|\nnot ok 2\n";}
8d063cd8 32
f0fcb552 33print FOO "Now is the time for all good men to come to.\n";
34close(FOO);
8d063cd8 35
0d3e774c 36sleep 2;
8d063cd8 37
a245ea2d 38if ($Is_Dosish) { unlink "Op.stat.tmp2" }
3fe9a6f1 39else {
40 `rm -f Op.stat.tmp2;ln Op.stat.tmp Op.stat.tmp2; chmod 644 Op.stat.tmp`;
41}
8d063cd8 42
43($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
44 $blksize,$blocks) = stat('Op.stat.tmp');
45
a245ea2d 46if ($Is_Dosish || $Config{dont_use_nlink})
47 {print "ok 3 # skipped: no link count\n";}
48elsif ($nlink == 2)
49 {print "ok 3\n";}
50else {print "# \$nlink is |$nlink|\nnot ok 3\n";}
ea368a7c 51
a245ea2d 52if ( $Is_Dosish
10609e9a 53 || ($cwd =~ m#^/tmp# and $mtime && $mtime==$ctime) # Solaris tmpfs bug
9b599b2a 54 || $cwd =~ m#/afs/#
55 || $^O eq 'amigaos') {
a245ea2d 56 print "ok 4 # skipped: different semantic of mtime/ctime\n";
57}
58elsif ( ($mtime && $mtime != $ctime) ) {
6eb13c3b 59 print "ok 4\n";
60}
61else {
62 print "not ok 4\n";
5aabfad6 63 print "#4 If test op/stat.t fails test 4, check if you are on a tmpfs\n";
64 print "#4 of some sort. Building in /tmp sometimes has this problem.\n";
6eb13c3b 65}
9b599b2a 66print "#4 :$mtime: should != :$ctime:\n";
8d063cd8 67
3fe9a6f1 68unlink "Op.stat.tmp";
69if ($Is_MSWin32) { open F, '>Op.stat.tmp' and close F }
70else { `touch Op.stat.tmp` }
378cc40b 71
72if (-z 'Op.stat.tmp') {print "ok 5\n";} else {print "not ok 5\n";}
73if (! -s 'Op.stat.tmp') {print "ok 6\n";} else {print "not ok 6\n";}
74
3fe9a6f1 75$Is_MSWin32 ? `cmd /c echo hi > Op.stat.tmp` : `echo hi >Op.stat.tmp`;
378cc40b 76if (! -z 'Op.stat.tmp') {print "ok 7\n";} else {print "not ok 7\n";}
77if (-s 'Op.stat.tmp') {print "ok 8\n";} else {print "not ok 8\n";}
78
fe14fcc3 79unlink 'Op.stat.tmp';
378cc40b 80$olduid = $>; # can't test -r if uid == 0
3fe9a6f1 81$Is_MSWin32 ? `cmd /c echo hi > Op.stat.tmp` : `echo hi >Op.stat.tmp`;
fe14fcc3 82chmod 0,'Op.stat.tmp';
378cc40b 83eval '$> = 1;'; # so switch uid (may not be implemented)
39e571d4 84if (!$> || $Is_Dos || ! -r 'Op.stat.tmp') {print "ok 9\n";} else {print "not ok 9\n";}
378cc40b 85if (!$> || ! -w 'Op.stat.tmp') {print "ok 10\n";} else {print "not ok 10\n";}
86eval '$> = $olduid;'; # switch uid back (may not be implemented)
fe14fcc3 87print "# olduid=$olduid, newuid=$>\n" unless ($> == $olduid);
3e3baf6d 88
67fbe06e 89if (! -x 'Op.stat.tmp') {print "ok 11\n";}
90else {print "not ok 11\n";}
378cc40b 91
92foreach ((12,13,14,15,16,17)) {
93 print "ok $_\n"; #deleted tests
94}
95
96chmod 0700,'Op.stat.tmp';
97if (-r 'Op.stat.tmp') {print "ok 18\n";} else {print "not ok 18\n";}
98if (-w 'Op.stat.tmp') {print "ok 19\n";} else {print "not ok 19\n";}
a245ea2d 99if ($Is_Dosish) {print "ok 20 # skipped: -x by extension\n";}
100elsif (-x 'Op.stat.tmp') {print "ok 20\n";}
101else {print "not ok 20\n";}
378cc40b 102
103if (-f 'Op.stat.tmp') {print "ok 21\n";} else {print "not ok 21\n";}
104if (! -d 'Op.stat.tmp') {print "ok 22\n";} else {print "not ok 22\n";}
105
106if (-d '.') {print "ok 23\n";} else {print "not ok 23\n";}
107if (! -f '.') {print "ok 24\n";} else {print "not ok 24\n";}
108
a245ea2d 109if (!$Is_Dosish and `ls -l perl` =~ /^l.*->/) {
378cc40b 110 if (-l 'perl') {print "ok 25\n";} else {print "not ok 25\n";}
111}
112else {
113 print "ok 25\n";
114}
115
116if (-o 'Op.stat.tmp') {print "ok 26\n";} else {print "not ok 26\n";}
117
118if (-e 'Op.stat.tmp') {print "ok 27\n";} else {print "not ok 27\n";}
108ed793 119unlink 'Op.stat.tmp2';
120if (! -e 'Op.stat.tmp2') {print "ok 28\n";} else {print "not ok 28\n";}
378cc40b 121
39e571d4 122if ($Is_MSWin32 || $Is_Dos)
68dc0745 123 {print "ok 29\n";}
124elsif ($DEV !~ /\nc.* (\S+)\n/)
d48672a2 125 {print "ok 29\n";}
126elsif (-c "/dev/$1")
127 {print "ok 29\n";}
128else
129 {print "not ok 29\n";}
378cc40b 130if (! -c '.') {print "ok 30\n";} else {print "not ok 30\n";}
131
39e571d4 132if ($Is_MSWin32 || $Is_Dos)
68dc0745 133 {print "ok 31\n";}
134elsif ($DEV !~ /\ns.* (\S+)\n/)
d48672a2 135 {print "ok 31\n";}
136elsif (-S "/dev/$1")
378cc40b 137 {print "ok 31\n";}
138else
139 {print "not ok 31\n";}
140if (! -S '.') {print "ok 32\n";} else {print "not ok 32\n";}
141
39e571d4 142if ($Is_MSWin32 || $Is_Dos)
68dc0745 143 {print "ok 33\n";}
144elsif ($DEV !~ /\nb.* (\S+)\n/)
d48672a2 145 {print "ok 33\n";}
146elsif (-b "/dev/$1")
378cc40b 147 {print "ok 33\n";}
148else
149 {print "not ok 33\n";}
150if (! -b '.') {print "ok 34\n";} else {print "not ok 34\n";}
151
a245ea2d 152if ($^O eq 'amigaos' or $Is_Dosish) {
153 print "ok 35 # skipped: no -u\n"; goto tty_test;
154}
b971f6e4 155
378cc40b 156$cnt = $uid = 0;
157
fe14fcc3 158die "Can't run op/stat.t test 35 without pwd working" unless $cwd;
1bcfde30 159($bin) = grep {-d} ($^O eq 'machten' ? qw(/usr/bin /bin) : qw(/bin /usr/bin))
5f05dabc 160 or print ("not ok 35\n"), goto tty_test;
b971f6e4 161opendir BIN, $bin or die "Can't opendir $bin: $!";
162while (defined($_ = readdir BIN)) {
163 $_ = "$bin/$_";
378cc40b 164 $cnt++;
165 $uid++ if -u;
166 last if $uid && $uid < $cnt;
167}
b971f6e4 168closedir BIN;
378cc40b 169
170# I suppose this is going to fail somewhere...
79072805 171if ($uid > 0 && $uid < $cnt)
172 {print "ok 35\n";}
173else
b8440792 174 {print "not ok 35 \n# ($uid $cnt)\n";}
175
176tty_test:
378cc40b 177
3e3baf6d 178# To assist in automated testing when a controlling terminal (/dev/tty)
179# may not be available (at, cron rsh etc), the PERL_SKIP_TTY_TEST env var
180# can be set to skip the tests that need a tty.
181unless($ENV{PERL_SKIP_TTY_TEST}) {
182 if ($Is_MSWin32) {
183 print "ok 36\n";
184 print "ok 37\n";
185 }
186 else {
8f1f23e8 187 my $TTY = "/dev/tty";
188
189 $TTY = "/dev/ttyp0" if $^O eq 'rhapsody';
190
191 if (defined $TTY) {
192 unless (open(TTY, $TTY)) {
193 print STDERR "Can't open $TTY--run t/TEST outside of make.\n";
194 }
195 if (-t TTY) {print "ok 36\n";} else {print "not ok 36\n";}
196 if (-c TTY) {print "ok 37\n";} else {print "not ok 37\n";}
197 close(TTY);
658e8587 198 } else { # if some platform completely undefines $TTY
199 print "ok 36 # skipped\n";
200 print "ok 37 # skipped\n";
3e3baf6d 201 }
3e3baf6d 202 }
8f1f23e8 203 if (! -t TTY) {print "ok 38\n";} else {print "not ok 38\n";}
3e3baf6d 204 if (-t) {print "ok 39\n";} else {print "not ok 39\n";}
68dc0745 205}
206else {
3e3baf6d 207 print "ok 36\n";
208 print "ok 37\n";
209 print "ok 38\n";
210 print "ok 39\n";
378cc40b 211}
378cc40b 212open(null,"/dev/null");
1bcfde30 213if (! -t null || -e '/xenix' || $^O eq 'machten' || $Is_MSWin32)
3e3baf6d 214 {print "ok 40\n";} else {print "not ok 40\n";}
378cc40b 215close(null);
378cc40b 216
217# These aren't strictly "stat" calls, but so what?
218
fe14fcc3 219if (-T 'op/stat.t') {print "ok 41\n";} else {print "not ok 41\n";}
220if (! -B 'op/stat.t') {print "ok 42\n";} else {print "not ok 42\n";}
378cc40b 221
b8440792 222if (-B './perl' || -B './perl.exe') {print "ok 43\n";} else {print "not ok 43\n";}
223if (! -T './perl' && ! -T './perl.exe') {print "ok 44\n";} else {print "not ok 44\n";}
378cc40b 224
f0fcb552 225open(FOO,'op/stat.t');
226eval { -T FOO; };
227if ($@ =~ /not implemented/) {
228 print "# $@";
229 for (45 .. 54) {
230 print "ok $_\n";
231 }
232}
233else {
234 if (-T FOO) {print "ok 45\n";} else {print "not ok 45\n";}
235 if (! -B FOO) {print "ok 46\n";} else {print "not ok 46\n";}
236 $_ = <FOO>;
237 if (/perl/) {print "ok 47\n";} else {print "not ok 47\n";}
238 if (-T FOO) {print "ok 48\n";} else {print "not ok 48\n";}
239 if (! -B FOO) {print "ok 49\n";} else {print "not ok 49\n";}
240 close(FOO);
241
242 open(FOO,'op/stat.t');
243 $_ = <FOO>;
244 if (/perl/) {print "ok 50\n";} else {print "not ok 50\n";}
245 if (-T FOO) {print "ok 51\n";} else {print "not ok 51\n";}
246 if (! -B FOO) {print "ok 52\n";} else {print "not ok 52\n";}
247 seek(FOO,0,0);
248 if (-T FOO) {print "ok 53\n";} else {print "not ok 53\n";}
249 if (! -B FOO) {print "ok 54\n";} else {print "not ok 54\n";}
250}
251close(FOO);
378cc40b 252
253if (-T '/dev/null') {print "ok 55\n";} else {print "not ok 55\n";}
254if (-B '/dev/null') {print "ok 56\n";} else {print "not ok 56\n";}
108ed793 255
256# and now, a few parsing tests:
257$_ = 'Op.stat.tmp';
258if (-f) {print "ok 57\n";} else {print "not ok 57\n";}
259if (-f()) {print "ok 58\n";} else {print "not ok 58\n";}
260
261unlink 'Op.stat.tmp';