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