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