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