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