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