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