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