win32_stat() fixes (2nd try)
[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 chop($cwd = ($Is_MSWin32 ? `cd` : `pwd`));
16
17 $DEV = `ls -l /dev` unless $Is_MSWin32;
18
19 unlink "Op.stat.tmp";
20 open(FOO, ">Op.stat.tmp");
21
22 # hack to make Apollo update link count:
23 $junk = `ls Op.stat.tmp` unless $Is_MSWin32;
24
25 ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
26     $blksize,$blocks) = stat(FOO);
27 if ($nlink == 1) {print "ok 1\n";} else {print "not ok 1\n";}
28 if ($Is_MSWin32 || ($mtime && $mtime == $ctime)) {print "ok 2\n";}
29 else {print "# |$mtime| vs |$ctime|\nnot ok 2\n";}
30
31 print FOO "Now is the time for all good men to come to.\n";
32 close(FOO);
33
34 sleep 2;
35
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 }
40
41 ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
42     $blksize,$blocks) = stat('Op.stat.tmp');
43
44 if ($Is_MSWin32 || $Config{dont_use_nlink} || $nlink == 2)
45     {print "ok 3\n";} else {print "# \$nlink is |$nlink|\nnot ok 3\n";}
46
47 if ($Is_MSWin32 || ($mtime && $mtime != $ctime) || $cwd =~ m#/afs/# || $^O eq 'amigaos') {
48     print "ok 4\n";
49 }
50 else {
51     print "not ok 4\n";
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";
54 }
55 print "#4       :$mtime: != :$ctime:\n";
56
57 unlink "Op.stat.tmp";
58 if ($Is_MSWin32) {  open F, '>Op.stat.tmp' and close F }
59 else             { `touch Op.stat.tmp` }
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
64 $Is_MSWin32 ? `cmd /c echo hi > Op.stat.tmp` : `echo hi >Op.stat.tmp`;
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
68 unlink 'Op.stat.tmp';
69 $olduid = $>;           # can't test -r if uid == 0
70 $Is_MSWin32 ? `cmd /c echo hi > Op.stat.tmp` : `echo hi >Op.stat.tmp`;
71 chmod 0,'Op.stat.tmp';
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)
76 print "# olduid=$olduid, newuid=$>\n" unless ($> == $olduid);
77
78 if (! -x 'Op.stat.tmp') {print "ok 11\n";}
79 else                    {print "not ok 11\n";}
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";}
88 if ($Is_MSWin32 or -x 'Op.stat.tmp') {print "ok 20\n";} else {print "not ok 20\n";}
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
96 if (!$Is_MSWin32 and `ls -l perl` =~ /^l.*->/) {
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";}
106 unlink 'Op.stat.tmp', 'Op.stat.tmp2';
107 if (! -e 'Op.stat.tmp') {print "ok 28\n";} else {print "not ok 28\n";}
108
109 if ($Is_MSWin32)
110     {print "ok 29\n";}
111 elsif ($DEV !~ /\nc.* (\S+)\n/)
112     {print "ok 29\n";}
113 elsif (-c "/dev/$1")
114     {print "ok 29\n";}
115 else
116     {print "not ok 29\n";}
117 if (! -c '.') {print "ok 30\n";} else {print "not ok 30\n";}
118
119 if ($Is_MSWin32)
120     {print "ok 31\n";}
121 elsif ($DEV !~ /\ns.* (\S+)\n/)
122     {print "ok 31\n";}
123 elsif (-S "/dev/$1")
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
129 if ($Is_MSWin32)
130     {print "ok 33\n";}
131 elsif ($DEV !~ /\nb.* (\S+)\n/)
132     {print "ok 33\n";}
133 elsif (-b "/dev/$1")
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
139 if ($^O eq 'amigaos' or $Is_MSWin32) {print "ok 35\n"; goto tty_test;}
140
141 $cnt = $uid = 0;
142
143 die "Can't run op/stat.t test 35 without pwd working" unless $cwd;
144 ($bin) = grep {-d} ($^O eq 'machten' ? qw(/usr/bin /bin) : qw(/bin /usr/bin))
145     or print ("not ok 35\n"), goto tty_test;
146 opendir BIN, $bin or die "Can't opendir $bin: $!";
147 while (defined($_ = readdir BIN)) {
148     $_ = "$bin/$_";
149     $cnt++;
150     $uid++ if -u;
151     last if $uid && $uid < $cnt;
152 }
153 closedir BIN;
154
155 # I suppose this is going to fail somewhere...
156 if ($uid > 0 && $uid < $cnt)
157     {print "ok 35\n";}
158 else
159     {print "not ok 35 \n# ($uid $cnt)\n";}
160
161 tty_test:
162
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";}
181 }
182 else {
183     print "ok 36\n";
184     print "ok 37\n";
185     print "ok 38\n";
186     print "ok 39\n";
187 }
188 open(null,"/dev/null");
189 if (! -t null || -e '/xenix' || $^O eq 'machten' || $Is_MSWin32)
190         {print "ok 40\n";} else {print "not ok 40\n";}
191 close(null);
192
193 # These aren't strictly "stat" calls, but so what?
194
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";}
197
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";}
200
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);
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";}