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