Fix multiple problems with lexical @_.
[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 if (! -x 'Op.stat.tmp') {print "ok 11\n";} else {print "not ok 11\n";}
78
79 foreach ((12,13,14,15,16,17)) {
80     print "ok $_\n";            #deleted tests
81 }
82
83 chmod 0700,'Op.stat.tmp';
84 if (-r 'Op.stat.tmp') {print "ok 18\n";} else {print "not ok 18\n";}
85 if (-w 'Op.stat.tmp') {print "ok 19\n";} else {print "not ok 19\n";}
86 if ($Is_MSWin32 or -x 'Op.stat.tmp') {print "ok 20\n";} else {print "not ok 20\n";}
87
88 if (-f 'Op.stat.tmp') {print "ok 21\n";} else {print "not ok 21\n";}
89 if (! -d 'Op.stat.tmp') {print "ok 22\n";} else {print "not ok 22\n";}
90
91 if (-d '.') {print "ok 23\n";} else {print "not ok 23\n";}
92 if (! -f '.') {print "ok 24\n";} else {print "not ok 24\n";}
93
94 if (!$Is_MSWin32 and `ls -l perl` =~ /^l.*->/) {
95     if (-l 'perl') {print "ok 25\n";} else {print "not ok 25\n";}
96 }
97 else {
98     print "ok 25\n";
99 }
100
101 if (-o 'Op.stat.tmp') {print "ok 26\n";} else {print "not ok 26\n";}
102
103 if (-e 'Op.stat.tmp') {print "ok 27\n";} else {print "not ok 27\n";}
104 unlink 'Op.stat.tmp', 'Op.stat.tmp2';
105 if (! -e 'Op.stat.tmp') {print "ok 28\n";} else {print "not ok 28\n";}
106
107 if ($Is_MSWin32)
108     {print "ok 29\n";}
109 elsif ($DEV !~ /\nc.* (\S+)\n/)
110     {print "ok 29\n";}
111 elsif (-c "/dev/$1")
112     {print "ok 29\n";}
113 else
114     {print "not ok 29\n";}
115 if (! -c '.') {print "ok 30\n";} else {print "not ok 30\n";}
116
117 if ($Is_MSWin32)
118     {print "ok 31\n";}
119 elsif ($DEV !~ /\ns.* (\S+)\n/)
120     {print "ok 31\n";}
121 elsif (-S "/dev/$1")
122     {print "ok 31\n";}
123 else
124     {print "not ok 31\n";}
125 if (! -S '.') {print "ok 32\n";} else {print "not ok 32\n";}
126
127 if ($Is_MSWin32)
128     {print "ok 33\n";}
129 elsif ($DEV !~ /\nb.* (\S+)\n/)
130     {print "ok 33\n";}
131 elsif (-b "/dev/$1")
132     {print "ok 33\n";}
133 else
134     {print "not ok 33\n";}
135 if (! -b '.') {print "ok 34\n";} else {print "not ok 34\n";}
136
137 if ($^O eq 'amigaos' or $Is_MSWin32) {print "ok 35\n"; goto tty_test;}
138
139 $cnt = $uid = 0;
140
141 die "Can't run op/stat.t test 35 without pwd working" unless $cwd;
142 ($bin) = grep {-d} ($^O eq 'machten' ? qw(/usr/bin /bin) : qw(/bin /usr/bin))
143     or print ("not ok 35\n"), goto tty_test;
144 opendir BIN, $bin or die "Can't opendir $bin: $!";
145 while (defined($_ = readdir BIN)) {
146     $_ = "$bin/$_";
147     $cnt++;
148     $uid++ if -u;
149     last if $uid && $uid < $cnt;
150 }
151 closedir BIN;
152
153 # I suppose this is going to fail somewhere...
154 if ($uid > 0 && $uid < $cnt)
155     {print "ok 35\n";}
156 else
157     {print "not ok 35 \n# ($uid $cnt)\n";}
158
159 tty_test:
160
161 if ($Is_MSWin32) {
162     print "ok 36\n";
163     print "ok 37\n";
164 }
165 else {
166     unless (open(tty,"/dev/tty")) {
167         print STDERR "Can't open /dev/tty--run t/TEST outside of make.\n";
168     }
169     if (-t tty) {print "ok 36\n";} else {print "not ok 36\n";}
170     if (-c tty) {print "ok 37\n";} else {print "not ok 37\n";}
171     close(tty);
172 }
173 if (! -t tty) {print "ok 38\n";} else {print "not ok 38\n";}
174 open(null,"/dev/null");
175 if (! -t null || -e '/xenix' || $^O eq 'machten' || $Is_MSWin32)
176         {print "ok 39\n";} else {print "not ok 39\n";}
177 close(null);
178 if (-t) {print "ok 40\n";} else {print "not ok 40\n";}
179
180 # These aren't strictly "stat" calls, but so what?
181
182 if (-T 'op/stat.t') {print "ok 41\n";} else {print "not ok 41\n";}
183 if (! -B 'op/stat.t') {print "ok 42\n";} else {print "not ok 42\n";}
184
185 if (-B './perl' || -B './perl.exe') {print "ok 43\n";} else {print "not ok 43\n";}
186 if (! -T './perl' && ! -T './perl.exe') {print "ok 44\n";} else {print "not ok 44\n";}
187
188 open(FOO,'op/stat.t');
189 eval { -T FOO; };
190 if ($@ =~ /not implemented/) {
191     print "# $@";
192     for (45 .. 54) {
193         print "ok $_\n";
194     }
195 }
196 else {
197     if (-T FOO) {print "ok 45\n";} else {print "not ok 45\n";}
198     if (! -B FOO) {print "ok 46\n";} else {print "not ok 46\n";}
199     $_ = <FOO>;
200     if (/perl/) {print "ok 47\n";} else {print "not ok 47\n";}
201     if (-T FOO) {print "ok 48\n";} else {print "not ok 48\n";}
202     if (! -B FOO) {print "ok 49\n";} else {print "not ok 49\n";}
203     close(FOO);
204
205     open(FOO,'op/stat.t');
206     $_ = <FOO>;
207     if (/perl/) {print "ok 50\n";} else {print "not ok 50\n";}
208     if (-T FOO) {print "ok 51\n";} else {print "not ok 51\n";}
209     if (! -B FOO) {print "ok 52\n";} else {print "not ok 52\n";}
210     seek(FOO,0,0);
211     if (-T FOO) {print "ok 53\n";} else {print "not ok 53\n";}
212     if (! -B FOO) {print "ok 54\n";} else {print "not ok 54\n";}
213 }
214 close(FOO);
215
216 if (-T '/dev/null') {print "ok 55\n";} else {print "not ok 55\n";}
217 if (-B '/dev/null') {print "ok 56\n";} else {print "not ok 56\n";}