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