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