[inseparable changes from match from perl-5.003_93 to perl-5.003_94]
[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 $
ae060272 4# 950521 DFD This version hacked to make test 39 succeed on MachTen
5# though the O.S. wrongly thinks /dev/null is a terminal
ea368a7c 6
7BEGIN {
8 chdir 't' if -d 't';
9 @INC = '../lib';
10}
11
12use Config;
13
378cc40b 14print "1..56\n";
8d063cd8 15
68dc0745 16$Is_MSWin32 = $^O eq 'MSWin32';
17chop($cwd = ($Is_MSWin32 ? `cd` : `pwd`));
6eb13c3b 18
68dc0745 19$DEV = `ls -l /dev` unless $Is_MSWin32;
d48672a2 20
a687059c 21unlink "Op.stat.tmp";
f0fcb552 22open(FOO, ">Op.stat.tmp");
8d063cd8 23
68dc0745 24# hack to make Apollo update link count:
25$junk = `ls Op.stat.tmp` unless $Is_MSWin32;
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";}
30if ($mtime && $mtime == $ctime) {print "ok 2\n";} else {print "not ok 2\n";}
31
f0fcb552 32print FOO "Now is the time for all good men to come to.\n";
33close(FOO);
8d063cd8 34
0d3e774c 35sleep 2;
8d063cd8 36
37`rm -f Op.stat.tmp2; ln Op.stat.tmp Op.stat.tmp2; chmod 644 Op.stat.tmp`;
38
39($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
40 $blksize,$blocks) = stat('Op.stat.tmp');
41
ea368a7c 42if ($Config{dont_use_nlink} || $nlink == 2)
43 {print "ok 3\n";} else {print "not ok 3\n";}
44
b971f6e4 45if (($mtime && $mtime != $ctime) || $cwd =~ m#/afs/# || $^O eq 'amigaos') {
6eb13c3b 46 print "ok 4\n";
47}
48else {
49 print "not ok 4\n";
4633a7c4 50 print '#4 If test op/stat.t fails test 4, check if you are on a tmpfs';
51 print '#4 of some sort. Building in /tmp sometimes has this problem.';
6eb13c3b 52}
8d063cd8 53print "#4 :$mtime: != :$ctime:\n";
54
988174c1 55`rm -f Op.stat.tmp`;
56`touch Op.stat.tmp`;
378cc40b 57
58if (-z 'Op.stat.tmp') {print "ok 5\n";} else {print "not ok 5\n";}
59if (! -s 'Op.stat.tmp') {print "ok 6\n";} else {print "not ok 6\n";}
60
61`echo hi >Op.stat.tmp`;
62if (! -z 'Op.stat.tmp') {print "ok 7\n";} else {print "not ok 7\n";}
63if (-s 'Op.stat.tmp') {print "ok 8\n";} else {print "not ok 8\n";}
64
fe14fcc3 65unlink 'Op.stat.tmp';
378cc40b 66$olduid = $>; # can't test -r if uid == 0
fe14fcc3 67`echo hi >Op.stat.tmp`;
68chmod 0,'Op.stat.tmp';
378cc40b 69eval '$> = 1;'; # so switch uid (may not be implemented)
70if (!$> || ! -r 'Op.stat.tmp') {print "ok 9\n";} else {print "not ok 9\n";}
71if (!$> || ! -w 'Op.stat.tmp') {print "ok 10\n";} else {print "not ok 10\n";}
72eval '$> = $olduid;'; # switch uid back (may not be implemented)
fe14fcc3 73print "# olduid=$olduid, newuid=$>\n" unless ($> == $olduid);
378cc40b 74if (! -x 'Op.stat.tmp') {print "ok 11\n";} else {print "not ok 11\n";}
75
76foreach ((12,13,14,15,16,17)) {
77 print "ok $_\n"; #deleted tests
78}
79
80chmod 0700,'Op.stat.tmp';
81if (-r 'Op.stat.tmp') {print "ok 18\n";} else {print "not ok 18\n";}
82if (-w 'Op.stat.tmp') {print "ok 19\n";} else {print "not ok 19\n";}
83if (-x 'Op.stat.tmp') {print "ok 20\n";} else {print "not ok 20\n";}
84
85if (-f 'Op.stat.tmp') {print "ok 21\n";} else {print "not ok 21\n";}
86if (! -d 'Op.stat.tmp') {print "ok 22\n";} else {print "not ok 22\n";}
87
88if (-d '.') {print "ok 23\n";} else {print "not ok 23\n";}
89if (! -f '.') {print "ok 24\n";} else {print "not ok 24\n";}
90
68dc0745 91if (!$Is_MSWin32 and `ls -l perl` =~ /^l.*->/) {
378cc40b 92 if (-l 'perl') {print "ok 25\n";} else {print "not ok 25\n";}
93}
94else {
95 print "ok 25\n";
96}
97
98if (-o 'Op.stat.tmp') {print "ok 26\n";} else {print "not ok 26\n";}
99
100if (-e 'Op.stat.tmp') {print "ok 27\n";} else {print "not ok 27\n";}
8d063cd8 101`rm -f Op.stat.tmp Op.stat.tmp2`;
378cc40b 102if (! -e 'Op.stat.tmp') {print "ok 28\n";} else {print "not ok 28\n";}
103
68dc0745 104if ($Is_MSWin32)
105 {print "ok 29\n";}
106elsif ($DEV !~ /\nc.* (\S+)\n/)
d48672a2 107 {print "ok 29\n";}
108elsif (-c "/dev/$1")
109 {print "ok 29\n";}
110else
111 {print "not ok 29\n";}
378cc40b 112if (! -c '.') {print "ok 30\n";} else {print "not ok 30\n";}
113
68dc0745 114if ($Is_MSWin32)
115 {print "ok 31\n";}
116elsif ($DEV !~ /\ns.* (\S+)\n/)
d48672a2 117 {print "ok 31\n";}
118elsif (-S "/dev/$1")
378cc40b 119 {print "ok 31\n";}
120else
121 {print "not ok 31\n";}
122if (! -S '.') {print "ok 32\n";} else {print "not ok 32\n";}
123
68dc0745 124if ($Is_MSWin32)
125 {print "ok 33\n";}
126elsif ($DEV !~ /\nb.* (\S+)\n/)
d48672a2 127 {print "ok 33\n";}
128elsif (-b "/dev/$1")
378cc40b 129 {print "ok 33\n";}
130else
131 {print "not ok 33\n";}
132if (! -b '.') {print "ok 34\n";} else {print "not ok 34\n";}
133
68dc0745 134if ($^O eq 'amigaos' or $Is_MSWin32) {print "ok 35\n"; goto tty_test;}
b971f6e4 135
378cc40b 136$cnt = $uid = 0;
137
fe14fcc3 138die "Can't run op/stat.t test 35 without pwd working" unless $cwd;
5f05dabc 139($bin) = grep {-d} qw(/bin /usr/bin)
140 or print ("not ok 35\n"), goto tty_test;
b971f6e4 141opendir BIN, $bin or die "Can't opendir $bin: $!";
142while (defined($_ = readdir BIN)) {
143 $_ = "$bin/$_";
378cc40b 144 $cnt++;
145 $uid++ if -u;
146 last if $uid && $uid < $cnt;
147}
b971f6e4 148closedir BIN;
378cc40b 149
150# I suppose this is going to fail somewhere...
79072805 151if ($uid > 0 && $uid < $cnt)
152 {print "ok 35\n";}
153else
b8440792 154 {print "not ok 35 \n# ($uid $cnt)\n";}
155
156tty_test:
378cc40b 157
68dc0745 158if ($Is_MSWin32) {
159 print "ok 36\n";
160 print "ok 37\n";
161}
162else {
163 unless (open(tty,"/dev/tty")) {
164 print STDERR "Can't open /dev/tty--run t/TEST outside of make.\n";
165 }
166 if (-t tty) {print "ok 36\n";} else {print "not ok 36\n";}
167 if (-c tty) {print "ok 37\n";} else {print "not ok 37\n";}
168 close(tty);
378cc40b 169}
378cc40b 170if (! -t tty) {print "ok 38\n";} else {print "not ok 38\n";}
171open(null,"/dev/null");
ae060272 172if (! -t null || -e '/xenix' || -e '/MachTen')
173 {print "ok 39\n";} else {print "not ok 39\n";}
378cc40b 174close(null);
175if (-t) {print "ok 40\n";} else {print "not ok 40\n";}
176
177# These aren't strictly "stat" calls, but so what?
178
fe14fcc3 179if (-T 'op/stat.t') {print "ok 41\n";} else {print "not ok 41\n";}
180if (! -B 'op/stat.t') {print "ok 42\n";} else {print "not ok 42\n";}
378cc40b 181
b8440792 182if (-B './perl' || -B './perl.exe') {print "ok 43\n";} else {print "not ok 43\n";}
183if (! -T './perl' && ! -T './perl.exe') {print "ok 44\n";} else {print "not ok 44\n";}
378cc40b 184
f0fcb552 185open(FOO,'op/stat.t');
186eval { -T FOO; };
187if ($@ =~ /not implemented/) {
188 print "# $@";
189 for (45 .. 54) {
190 print "ok $_\n";
191 }
192}
193else {
194 if (-T FOO) {print "ok 45\n";} else {print "not ok 45\n";}
195 if (! -B FOO) {print "ok 46\n";} else {print "not ok 46\n";}
196 $_ = <FOO>;
197 if (/perl/) {print "ok 47\n";} else {print "not ok 47\n";}
198 if (-T FOO) {print "ok 48\n";} else {print "not ok 48\n";}
199 if (! -B FOO) {print "ok 49\n";} else {print "not ok 49\n";}
200 close(FOO);
201
202 open(FOO,'op/stat.t');
203 $_ = <FOO>;
204 if (/perl/) {print "ok 50\n";} else {print "not ok 50\n";}
205 if (-T FOO) {print "ok 51\n";} else {print "not ok 51\n";}
206 if (! -B FOO) {print "ok 52\n";} else {print "not ok 52\n";}
207 seek(FOO,0,0);
208 if (-T FOO) {print "ok 53\n";} else {print "not ok 53\n";}
209 if (! -B FOO) {print "ok 54\n";} else {print "not ok 54\n";}
210}
211close(FOO);
378cc40b 212
213if (-T '/dev/null') {print "ok 55\n";} else {print "not ok 55\n";}
214if (-B '/dev/null') {print "ok 56\n";} else {print "not ok 56\n";}