workaround for rename('x','X') bug in Windows NT
[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     unshift @INC, '../lib';
8 }
9
10 use Config;
11
12 $Is_Dosish = ($^O eq 'MSWin32' or $^O eq 'dos' or
13               $^O eq 'os2' or $^O eq 'mint');
14
15 if (defined &Win32::IsWinNT && Win32::IsWinNT()) {
16     $Is_Dosish = '' if Win32::FsType() eq 'NTFS';
17 }
18
19 print "1..29\n";
20
21 $wd = (($^O eq 'MSWin32') ? `cd` : `pwd`);
22 chop($wd);
23
24 if ($^O eq 'MSWin32') { `del tmp 2>nul`; `mkdir tmp`; }
25 else {  `rm -f tmp 2>/dev/null; mkdir tmp 2>/dev/null`; }
26 chdir './tmp';
27 `/bin/rm -rf a b c x` if -x '/bin/rm';
28
29 umask(022);
30
31 if ($^O eq 'MSWin32') { print "ok 1 # skipped: bogus umask()\n"; }
32 elsif ((umask(0)&0777) == 022) {print "ok 1\n";} else {print "not ok 1\n";}
33 open(fh,'>x') || die "Can't create x";
34 close(fh);
35 open(fh,'>a') || die "Can't create a";
36 close(fh);
37
38 if ($Is_Dosish) {print "ok 2 # skipped: no link\n";} 
39 elsif (eval {link('a','b')}) {print "ok 2\n";} 
40 else {print "not ok 2\n";}
41
42 if ($Is_Dosish) {print "ok 3 # skipped: no link\n";} 
43 elsif (eval {link('b','c')}) {print "ok 3\n";} 
44 else {print "not ok 3\n";}
45
46 ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
47     $blksize,$blocks) = stat('c');
48
49 if ($Config{dont_use_nlink} || $Is_Dosish)
50     {print "ok 4 # skipped: no link\n";} 
51 elsif ($nlink == 3)
52     {print "ok 4\n";} 
53 else {print "not ok 4\n";}
54
55 if ($^O eq 'amigaos' || $Is_Dosish)
56     {print "ok 5 # skipped: no link\n";} 
57 elsif (($mode & 0777) == 0666)
58     {print "ok 5\n";} 
59 else {print "not ok 5\n";}
60
61 $newmode = $^O eq 'MSWin32' ? 0444 : 0777;
62 if ((chmod $newmode,'a') == 1) {print "ok 6\n";} else {print "not ok 6\n";}
63
64 ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
65     $blksize,$blocks) = stat('c');
66 if ($Is_Dosish) {print "ok 7 # skipped: no link\n";} 
67 elsif (($mode & 0777) == $newmode) {print "ok 7\n";} 
68 else {print "not ok 7\n";}
69
70 $newmode = 0700;
71 if ($^O eq 'MSWin32') {
72     chmod 0444, 'x';
73     $newmode = 0666;
74 }
75
76 if ($Is_Dosish) {print "ok 8 # skipped: no link\n";} 
77 elsif ((chmod $newmode,'c','x') == 2) {print "ok 8\n";} 
78 else {print "not ok 8\n";}
79
80 ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
81     $blksize,$blocks) = stat('c');
82 if ($Is_Dosish) {print "ok 9 # skipped: no link\n";} 
83 elsif (($mode & 0777) == $newmode) {print "ok 9\n";} 
84 else {print "not ok 9\n";}
85
86 ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
87     $blksize,$blocks) = stat('x');
88 if ($Is_Dosish) {print "ok 10 # skipped: no link\n";} 
89 elsif (($mode & 0777) == $newmode) {print "ok 10\n";} 
90 else {print "not ok 10\n";}
91
92 if ($Is_Dosish) {print "ok 11 # skipped: no link\n"; unlink 'b','x'; } 
93 elsif ((unlink 'b','x') == 2) {print "ok 11\n";} 
94 else {print "not ok 11\n";}
95 ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
96     $blksize,$blocks) = stat('b');
97 if ($ino == 0) {print "ok 12\n";} else {print "not ok 12\n";}
98 ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
99     $blksize,$blocks) = stat('x');
100 if ($ino == 0) {print "ok 13\n";} else {print "not ok 13\n";}
101
102 if (rename('a','b')) {print "ok 14\n";} else {print "not ok 14\n";}
103 ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
104     $blksize,$blocks) = stat('a');
105 if ($ino == 0) {print "ok 15\n";} else {print "not ok 15\n";}
106 $delta = $Is_Dosish ? 2 : 1;    # Granularity of time on the filesystem
107 $foo = (utime 500000000,500000000 + $delta,'b');
108 if ($foo == 1) {print "ok 16\n";} else {print "not ok 16 $foo\n";}
109 ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
110     $blksize,$blocks) = stat('b');
111 if ($^O eq 'MSWin32') { print "ok 17 # skipped: bogus (stat)[1]\n"; }
112 elsif ($ino) {print "ok 17\n";} else {print "not ok 17\n";}
113 if ($wd =~ m#/afs/# || $^O eq 'amigaos' || $^O eq 'dos' || $^O eq 'MSWin32')
114     {print "ok 18 # skipped: granularity of the filetime\n";}
115 elsif ($atime == 500000000 && $mtime == 500000000 + $delta)
116     {print "ok 18\n";}
117 else
118     {print "not ok 18 $atime $mtime\n";}
119
120 if ((unlink 'b') == 1) {print "ok 19\n";} else {print "not ok 19\n";}
121 ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
122     $blksize,$blocks) = stat('b');
123 if ($ino == 0) {print "ok 20\n";} else {print "not ok 20\n";}
124 unlink 'c';
125
126 chdir $wd || die "Can't cd back to $wd";
127
128 unlink 'c';
129 if ($^O ne 'MSWin32' and `ls -l perl 2>/dev/null` =~ /^l.*->/) {
130     # we have symbolic links
131     if (symlink("TEST","c")) {print "ok 21\n";} else {print "not ok 21\n";}
132     $foo = `grep perl c`;
133     if ($foo) {print "ok 22\n";} else {print "not ok 22\n";}
134     unlink 'c';
135 }
136 else {
137     print "ok 21\nok 22\n";
138 }
139
140 # truncate (may not be implemented everywhere)
141 unlink "Iofs.tmp";
142 `echo helloworld > Iofs.tmp`;
143 eval { truncate "Iofs.tmp", 5; };
144 if ($@ =~ /not implemented/) {
145   print "# truncate not implemented -- skipping tests 23 through 26\n";
146   for (23 .. 26) {
147     print "ok $_\n";
148   }
149 }
150 else {
151   if (-s "Iofs.tmp" == 5) {print "ok 23\n"} else {print "not ok 23\n"}
152   truncate "Iofs.tmp", 0;
153   if (-z "Iofs.tmp") {print "ok 24\n"} else {print "not ok 24\n"}
154   open(FH, ">Iofs.tmp") or die "Can't create Iofs.tmp";
155   binmode FH;
156   { select FH; $| = 1; select STDOUT }
157   {
158     use strict;
159     print FH "x\n" x 200;
160     truncate(FH, 200) or die "Can't truncate FH: $!";
161   }
162   if ($^O eq 'dos'
163         # Not needed on HPFS, but needed on HPFS386 ?!
164       or $^O eq 'os2')
165   {
166       close (FH); open (FH, ">>Iofs.tmp") or die "Can't reopen Iofs.tmp";
167   }
168   if (-s "Iofs.tmp" == 200) {print "ok 25\n"} else {print "not ok 25\n"}
169   truncate FH, 0;
170   if ($^O eq 'dos'
171         # Not needed on HPFS, but needed on HPFS386 ?!
172       or $^O eq 'os2')
173   {
174       close (FH); open (FH, ">>Iofs.tmp") or die "Can't reopen Iofs.tmp";
175   }
176   if (-z "Iofs.tmp") {print "ok 26\n"} else {print "not ok 26\n"}
177   close FH;
178 }
179
180 # check if rename() can be used to just change case of filename
181 chdir './tmp';
182 open(fh,'>x') || die "Can't create x";
183 close(fh);
184 rename('x', 'X');
185 print 'not ' unless -e 'X';
186 print "ok 27\n";
187 unlink 'X';
188 chdir $wd || die "Can't cd back to $wd";
189
190 # check if rename() works on directories
191 rename 'tmp', 'tmp1' or print "not ";
192 print "ok 28\n";
193 -d 'tmp1' or print "not ";
194 print "ok 29\n";
195
196 END { rmdir 'tmp1'; unlink "Iofs.tmp"; }