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