io/fs.t fails test #18.
[p5sagit/p5-mst-13.2.git] / t / io / fs.t
1 #!./perl
2
3 # $RCSfile: fs.t,v $$Revision: 4.1 $$Date: 92/08/07 18:27:28 $
4
5 BEGIN {
6     chdir 't' if -d 't';
7     @INC = '../lib';
8 }
9
10 use Config;
11
12 $Is_Dosish = ($^O eq 'dos' or $^O eq 'os2' or $^O eq 'mint');
13
14 # avoid win32 (for now)
15 do { print "1..0\n"; exit(0); } if $^O eq 'MSWin32';
16
17 print "1..26\n";
18
19 $wd = (($^O eq 'MSWin32') ? `cd` : `pwd`);
20 chop($wd);
21
22 if ($^O eq 'MSWin32') { `del tmp`; `mkdir tmp`; }
23 else {  `rm -f tmp 2>/dev/null; mkdir tmp 2>/dev/null`; }
24 chdir './tmp';
25 `/bin/rm -rf a b c x` if -x '/bin/rm';
26
27 umask(022);
28
29 if ((umask(0)&0777) == 022) {print "ok 1\n";} else {print "not ok 1\n";}
30 open(fh,'>x') || die "Can't create x";
31 close(fh);
32 open(fh,'>a') || die "Can't create a";
33 close(fh);
34
35 if ($Is_Dosish) {print "ok 2 # skipped: no link\n";} 
36 elsif (eval {link('a','b')}) {print "ok 2\n";} 
37 else {print "not ok 2\n";}
38
39 if ($Is_Dosish) {print "ok 3 # skipped: no link\n";} 
40 elsif (eval {link('b','c')}) {print "ok 3\n";} 
41 else {print "not ok 3\n";}
42
43 ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
44     $blksize,$blocks) = stat('c');
45
46 if ($Config{dont_use_nlink} || $Is_Dosish)
47     {print "ok 4 # skipped: no link\n";} 
48 elsif ($nlink == 3)
49     {print "ok 4\n";} 
50 else {print "not ok 4\n";}
51
52 if ($^O eq 'amigaos' || $Is_Dosish)
53     {print "ok 5 # skipped: no link\n";} 
54 elsif (($mode & 0777) == 0666)
55     {print "ok 5\n";} 
56 else {print "not ok 5\n";}
57
58 if ((chmod 0777,'a') == 1) {print "ok 6\n";} else {print "not ok 6\n";}
59
60 ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
61     $blksize,$blocks) = stat('c');
62 if ($Is_Dosish) {print "ok 7 # skipped: no link\n";} 
63 elsif (($mode & 0777) == 0777) {print "ok 7\n";} 
64 else {print "not ok 7\n";}
65
66 if ($Is_Dosish) {print "ok 8 # skipped: no link\n";} 
67 elsif ((chmod 0700,'c','x') == 2) {print "ok 8\n";} 
68 else {print "not ok 8\n";}
69
70 ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
71     $blksize,$blocks) = stat('c');
72 if ($Is_Dosish) {print "ok 9 # skipped: no link\n";} 
73 elsif (($mode & 0777) == 0700) {print "ok 9\n";} 
74 else {print "not ok 9\n";}
75
76 ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
77     $blksize,$blocks) = stat('x');
78 if ($Is_Dosish) {print "ok 10 # skipped: no link\n";} 
79 elsif (($mode & 0777) == 0700) {print "ok 10\n";} 
80 else {print "not ok 10\n";}
81
82 if ($Is_Dosish) {print "ok 11 # skipped: no link\n"; unlink 'b','x'; } 
83 elsif ((unlink 'b','x') == 2) {print "ok 11\n";} 
84 else {print "not ok 11\n";}
85 ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
86     $blksize,$blocks) = stat('b');
87 if ($ino == 0) {print "ok 12\n";} else {print "not ok 12\n";}
88 ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
89     $blksize,$blocks) = stat('x');
90 if ($ino == 0) {print "ok 13\n";} else {print "not ok 13\n";}
91
92 if (rename('a','b')) {print "ok 14\n";} else {print "not ok 14\n";}
93 ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
94     $blksize,$blocks) = stat('a');
95 if ($ino == 0) {print "ok 15\n";} else {print "not ok 15\n";}
96 $delta = $Is_Dosish ? 2 : 1;    # Granularity of time on the filesystem
97 $foo = (utime 500000000,500000000 + $delta,'b');
98 if ($foo == 1) {print "ok 16\n";} else {print "not ok 16 $foo\n";}
99 ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
100     $blksize,$blocks) = stat('b');
101 if ($ino) {print "ok 17\n";} else {print "not ok 17\n";}
102 if ($wd =~ m#/afs/# || $^O eq 'amigaos' || $^O eq 'dos' || $^O eq 'MSWin32')
103     {print "ok 18 # skipped: granularity of the filetime\n";}
104 elsif ($atime == 500000000 && $mtime == 500000000 + $delta)
105     {print "ok 18\n";}
106 else
107     {print "not ok 18 $atime $mtime\n";}
108
109 if ((unlink 'b') == 1) {print "ok 19\n";} else {print "not ok 19\n";}
110 ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
111     $blksize,$blocks) = stat('b');
112 if ($ino == 0) {print "ok 20\n";} else {print "not ok 20\n";}
113 unlink 'c';
114
115 chdir $wd || die "Can't cd back to $wd";
116 rmdir 'tmp';
117
118 unlink 'c';
119 if ($^O ne 'MSWin32' and `ls -l perl 2>/dev/null` =~ /^l.*->/) {
120     # we have symbolic links
121     if (symlink("TEST","c")) {print "ok 21\n";} else {print "not ok 21\n";}
122     $foo = `grep perl c`;
123     if ($foo) {print "ok 22\n";} else {print "not ok 22\n";}
124     unlink 'c';
125 }
126 else {
127     print "ok 21\nok 22\n";
128 }
129
130 # truncate (may not be implemented everywhere)
131 unlink "Iofs.tmp";
132 `echo helloworld > Iofs.tmp`;
133 eval { truncate "Iofs.tmp", 5; };
134 if ($@ =~ /not implemented/) {
135   print "# truncate not implemented -- skipping tests 23 through 26\n";
136   for (23 .. 26) {
137     print "ok $_\n";
138   }
139 }
140 else {
141   if (-s "Iofs.tmp" == 5) {print "ok 23\n"} else {print "not ok 23\n"}
142   truncate "Iofs.tmp", 0;
143   if (-z "Iofs.tmp") {print "ok 24\n"} else {print "not ok 24\n"}
144   open(FH, ">Iofs.tmp") or die "Can't create Iofs.tmp";
145   { select FH; $| = 1; select STDOUT }
146   print FH "helloworld\n";
147   truncate FH, 5;
148   if ($^O eq 'dos') {
149       close (FH); open (FH, ">>Iofs.tmp") or die "Can't reopen Iofs.tmp";
150   }
151   if (-s "Iofs.tmp" == 5) {print "ok 25\n"} else {print "not ok 25\n"}
152   truncate FH, 0;
153   if ($^O eq 'dos') {
154       close (FH); open (FH, ">>Iofs.tmp") or die "Can't reopen Iofs.tmp";
155   }
156   if (-z "Iofs.tmp") {print "ok 26\n"} else {print "not ok 26\n"}
157   close FH;
158 }
159 unlink "Iofs.tmp";