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