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