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