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