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