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