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