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