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