Re: Beta3: Fix bad warning on bitwise ops
[p5sagit/p5-mst-13.2.git] / t / op / stat.t
CommitLineData
8d063cd8 1#!./perl
2
79072805 3# $RCSfile: stat.t,v $$Revision: 4.1 $$Date: 92/08/07 18:28:28 $
8d063cd8 4
378cc40b 5print "1..56\n";
8d063cd8 6
6eb13c3b 7chop($cwd = `pwd`);
8
d48672a2 9$DEV = `ls -l /dev`;
10
a687059c 11unlink "Op.stat.tmp";
f0fcb552 12open(FOO, ">Op.stat.tmp");
8d063cd8 13
988174c1 14$junk = `ls Op.stat.tmp`; # hack to make Apollo update link count
15
8d063cd8 16($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
f0fcb552 17 $blksize,$blocks) = stat(FOO);
8d063cd8 18if ($nlink == 1) {print "ok 1\n";} else {print "not ok 1\n";}
19if ($mtime && $mtime == $ctime) {print "ok 2\n";} else {print "not ok 2\n";}
20
f0fcb552 21print FOO "Now is the time for all good men to come to.\n";
22close(FOO);
8d063cd8 23
0d3e774c 24sleep 2;
8d063cd8 25
26`rm -f Op.stat.tmp2; ln Op.stat.tmp Op.stat.tmp2; chmod 644 Op.stat.tmp`;
27
28($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
29 $blksize,$blocks) = stat('Op.stat.tmp');
30
31if ($nlink == 2) {print "ok 3\n";} else {print "not ok 3\n";}
6eb13c3b 32if (($mtime && $mtime != $ctime) || $cwd =~ m#/afs/#) {
33 print "ok 4\n";
34}
35else {
36 print "not ok 4\n";
4633a7c4 37 print '#4 If test op/stat.t fails test 4, check if you are on a tmpfs';
38 print '#4 of some sort. Building in /tmp sometimes has this problem.';
6eb13c3b 39}
8d063cd8 40print "#4 :$mtime: != :$ctime:\n";
41
988174c1 42`rm -f Op.stat.tmp`;
43`touch Op.stat.tmp`;
378cc40b 44
45if (-z 'Op.stat.tmp') {print "ok 5\n";} else {print "not ok 5\n";}
46if (! -s 'Op.stat.tmp') {print "ok 6\n";} else {print "not ok 6\n";}
47
48`echo hi >Op.stat.tmp`;
49if (! -z 'Op.stat.tmp') {print "ok 7\n";} else {print "not ok 7\n";}
50if (-s 'Op.stat.tmp') {print "ok 8\n";} else {print "not ok 8\n";}
51
fe14fcc3 52unlink 'Op.stat.tmp';
378cc40b 53$olduid = $>; # can't test -r if uid == 0
fe14fcc3 54`echo hi >Op.stat.tmp`;
55chmod 0,'Op.stat.tmp';
378cc40b 56eval '$> = 1;'; # so switch uid (may not be implemented)
57if (!$> || ! -r 'Op.stat.tmp') {print "ok 9\n";} else {print "not ok 9\n";}
58if (!$> || ! -w 'Op.stat.tmp') {print "ok 10\n";} else {print "not ok 10\n";}
59eval '$> = $olduid;'; # switch uid back (may not be implemented)
fe14fcc3 60print "# olduid=$olduid, newuid=$>\n" unless ($> == $olduid);
378cc40b 61if (! -x 'Op.stat.tmp') {print "ok 11\n";} else {print "not ok 11\n";}
62
63foreach ((12,13,14,15,16,17)) {
64 print "ok $_\n"; #deleted tests
65}
66
67chmod 0700,'Op.stat.tmp';
68if (-r 'Op.stat.tmp') {print "ok 18\n";} else {print "not ok 18\n";}
69if (-w 'Op.stat.tmp') {print "ok 19\n";} else {print "not ok 19\n";}
70if (-x 'Op.stat.tmp') {print "ok 20\n";} else {print "not ok 20\n";}
71
72if (-f 'Op.stat.tmp') {print "ok 21\n";} else {print "not ok 21\n";}
73if (! -d 'Op.stat.tmp') {print "ok 22\n";} else {print "not ok 22\n";}
74
75if (-d '.') {print "ok 23\n";} else {print "not ok 23\n";}
76if (! -f '.') {print "ok 24\n";} else {print "not ok 24\n";}
77
78if (`ls -l perl` =~ /^l.*->/) {
79 if (-l 'perl') {print "ok 25\n";} else {print "not ok 25\n";}
80}
81else {
82 print "ok 25\n";
83}
84
85if (-o 'Op.stat.tmp') {print "ok 26\n";} else {print "not ok 26\n";}
86
87if (-e 'Op.stat.tmp') {print "ok 27\n";} else {print "not ok 27\n";}
8d063cd8 88`rm -f Op.stat.tmp Op.stat.tmp2`;
378cc40b 89if (! -e 'Op.stat.tmp') {print "ok 28\n";} else {print "not ok 28\n";}
90
d48672a2 91if ($DEV !~ /\nc.* (\S+)\n/)
92 {print "ok 29\n";}
93elsif (-c "/dev/$1")
94 {print "ok 29\n";}
95else
96 {print "not ok 29\n";}
378cc40b 97if (! -c '.') {print "ok 30\n";} else {print "not ok 30\n";}
98
d48672a2 99if ($DEV !~ /\ns.* (\S+)\n/)
100 {print "ok 31\n";}
101elsif (-S "/dev/$1")
378cc40b 102 {print "ok 31\n";}
103else
104 {print "not ok 31\n";}
105if (! -S '.') {print "ok 32\n";} else {print "not ok 32\n";}
106
d48672a2 107if ($DEV !~ /\nb.* (\S+)\n/)
108 {print "ok 33\n";}
109elsif (-b "/dev/$1")
378cc40b 110 {print "ok 33\n";}
111else
112 {print "not ok 33\n";}
113if (! -b '.') {print "ok 34\n";} else {print "not ok 34\n";}
114
115$cnt = $uid = 0;
116
fe14fcc3 117die "Can't run op/stat.t test 35 without pwd working" unless $cwd;
ac58e20f 118chdir '/usr/bin' || die "Can't cd to /usr/bin";
d9d8d8de 119while (defined($_ = <*>)) {
378cc40b 120 $cnt++;
121 $uid++ if -u;
122 last if $uid && $uid < $cnt;
123}
ac58e20f 124chdir $cwd || die "Can't cd back to $cwd";
378cc40b 125
126# I suppose this is going to fail somewhere...
79072805 127if ($uid > 0 && $uid < $cnt)
128 {print "ok 35\n";}
129else
130 {print "not ok 35 ($uid $cnt)\n";}
378cc40b 131
132unless (open(tty,"/dev/tty")) {
a687059c 133 print STDERR "Can't open /dev/tty--run t/TEST outside of make.\n";
378cc40b 134}
135if (-t tty) {print "ok 36\n";} else {print "not ok 36\n";}
136if (-c tty) {print "ok 37\n";} else {print "not ok 37\n";}
137close(tty);
138if (! -t tty) {print "ok 38\n";} else {print "not ok 38\n";}
139open(null,"/dev/null");
a687059c 140if (! -t null || -e '/xenix') {print "ok 39\n";} else {print "not ok 39\n";}
378cc40b 141close(null);
142if (-t) {print "ok 40\n";} else {print "not ok 40\n";}
143
144# These aren't strictly "stat" calls, but so what?
145
fe14fcc3 146if (-T 'op/stat.t') {print "ok 41\n";} else {print "not ok 41\n";}
147if (! -B 'op/stat.t') {print "ok 42\n";} else {print "not ok 42\n";}
378cc40b 148
149if (-B './perl') {print "ok 43\n";} else {print "not ok 43\n";}
150if (! -T './perl') {print "ok 44\n";} else {print "not ok 44\n";}
151
f0fcb552 152open(FOO,'op/stat.t');
153eval { -T FOO; };
154if ($@ =~ /not implemented/) {
155 print "# $@";
156 for (45 .. 54) {
157 print "ok $_\n";
158 }
159}
160else {
161 if (-T FOO) {print "ok 45\n";} else {print "not ok 45\n";}
162 if (! -B FOO) {print "ok 46\n";} else {print "not ok 46\n";}
163 $_ = <FOO>;
164 if (/perl/) {print "ok 47\n";} else {print "not ok 47\n";}
165 if (-T FOO) {print "ok 48\n";} else {print "not ok 48\n";}
166 if (! -B FOO) {print "ok 49\n";} else {print "not ok 49\n";}
167 close(FOO);
168
169 open(FOO,'op/stat.t');
170 $_ = <FOO>;
171 if (/perl/) {print "ok 50\n";} else {print "not ok 50\n";}
172 if (-T FOO) {print "ok 51\n";} else {print "not ok 51\n";}
173 if (! -B FOO) {print "ok 52\n";} else {print "not ok 52\n";}
174 seek(FOO,0,0);
175 if (-T FOO) {print "ok 53\n";} else {print "not ok 53\n";}
176 if (! -B FOO) {print "ok 54\n";} else {print "not ok 54\n";}
177}
178close(FOO);
378cc40b 179
180if (-T '/dev/null') {print "ok 55\n";} else {print "not ok 55\n";}
181if (-B '/dev/null') {print "ok 56\n";} else {print "not ok 56\n";}