Linux/NFS hackery was not faking right number of passes.
[p5sagit/p5-mst-13.2.git] / t / io / fs.t
1 #!./perl
2
3 BEGIN {
4     chdir 't' if -d 't';
5     @INC = '../lib';
6     require "./test.pl";
7 }
8
9 use Config;
10
11 my $Is_VMSish = ($^O eq 'VMS');
12
13 if (($^O eq 'MSWin32') || ($^O eq 'NetWare')) {
14     $wd = `cd`;
15 } elsif ($^O eq 'VMS') {
16     $wd = `show default`;
17 } else {
18     $wd = `pwd`;
19 }
20 chomp($wd);
21
22 my $has_link            = $Config{d_link};
23 my $accurate_timestamps =
24     !($^O eq 'MSWin32' || $^O eq 'NetWare' ||
25       $^O eq 'dos'     || $^O eq 'os2'     ||
26       $^O eq 'mint'    || $^O eq 'cygwin'  ||
27       $^O eq 'amigaos' || $wd =~ m#$Config{afsroot}/#
28      );
29
30 if (defined &Win32::IsWinNT && Win32::IsWinNT()) {
31     if (Win32::FsType() eq 'NTFS') {
32         $has_link            = 1;
33         $accurate_timestamps = 1;
34     }
35 }
36
37 my $needs_fh_reopen =
38     $^O eq 'dos'
39     # Not needed on HPFS, but needed on HPFS386 ?!
40     || $^O eq 'os2';
41
42 plan tests => 32;
43
44
45 if (($^O eq 'MSWin32') || ($^O eq 'NetWare')) {
46     `rmdir /s /q tmp 2>nul`;
47     `mkdir tmp`;
48 } elsif ($^O eq 'VMS') {
49     `if f\$search("[.tmp]*.*") .nes. "" then delete/nolog/noconfirm [.tmp]*.*.*`;
50     `if f\$search("tmp.dir") .nes. "" then delete/nolog/noconfirm tmp.dir;`;
51     `create/directory [.tmp]`;
52 }
53 else {
54     `rm -f tmp 2>/dev/null; mkdir tmp 2>/dev/null`;
55 }
56
57 chdir './tmp';
58
59 `/bin/rm -rf a b c x` if -x '/bin/rm';
60
61 umask(022);
62
63 SKIP: {
64     skip "bogus umask", 1 if ($^O eq 'MSWin32') || ($^O eq 'NetWare');
65
66     is((umask(0)&0777), 022, 'umask'),
67 }
68
69 open(fh,'>x') || die "Can't create x";
70 close(fh);
71 open(fh,'>a') || die "Can't create a";
72 close(fh);
73
74 my ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
75     $blksize,$blocks);
76
77 SKIP: {
78     skip("no link", 4) unless $has_link;
79
80     ok(link('a','b'), "link a b");
81     ok(link('b','c'), "link b c");
82
83     ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
84      $blksize,$blocks) = stat('c');
85
86     SKIP: {
87         skip "no nlink", 1 if $Config{dont_use_nlink};
88
89         is($nlink, 3, "link count of triply-linked file");
90     }
91
92     SKIP: {
93         skip "hard links not that hard in $^O", 1 if $^O eq 'amigaos';
94
95         is($mode & 0777, 0666, "mode of triply-linked file");
96     }
97 }
98
99 $newmode = (($^O eq 'MSWin32') || ($^O eq 'NetWare')) ? 0444 : 0777;
100
101 is(chmod($newmode,'a'), 1, "chmod succeeding");
102
103 SKIP: {
104     skip("no link", 7) unless $has_link;
105
106     ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
107      $blksize,$blocks) = stat('c');
108
109     is($mode & 0777, $newmode, "chmod going through");
110
111     $newmode = 0700;
112     chmod 0444, 'x';
113     $newmode = 0666;
114
115     is(chmod($newmode,'c','x'), 2, "chmod two files");
116
117     ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
118      $blksize,$blocks) = stat('c');
119
120     is($mode & 0777, $newmode, "chmod going through to c");
121
122     ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
123      $blksize,$blocks) = stat('x');
124
125     is($mode & 0777, $newmode, "chmod going through to x");
126
127     is(unlink('b','x'), 2, "unlink two files");
128
129     ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
130      $blksize,$blocks) = stat('b');
131
132     is($ino, undef, "ino of removed file b should be undef");
133
134     ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
135      $blksize,$blocks) = stat('x');
136
137     is($ino, undef, "ino of removed file x should be undef");
138 }
139
140 is(rename('a','b'), 1, "rename a b");
141
142 ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
143  $blksize,$blocks) = stat('a');
144
145 is($ino, undef, "ino of renamed file a should be undef");
146
147 $delta = $accurate_timestamps ? 1 : 2;  # Granularity of time on the filesystem
148 chmod 0777, 'b';
149 $foo = (utime 500000000,500000000 + $delta,'b');
150
151 is($foo, 1, "utime");
152
153 ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
154     $blksize,$blocks) = stat('b');
155
156 SKIP: {
157     skip "bogus inode num", 1 if ($^O eq 'MSWin32') || ($^O eq 'NetWare');
158
159     ok($ino,    'non-zero inode num');
160 }
161
162 SKIP: {
163     skip "filesystem atime/mtime granularity too low", 2
164       unless $accurate_timestamps;
165
166     print "# atime - $atime  mtime - $mtime  delta - $delta\n";
167     if($atime == 500000000 && $mtime == 500000000 + $delta) {
168         pass('atime');
169         pass('mtime');
170     }
171     else {
172         if ($^O =~ /\blinux\b/i) {
173             print "# Maybe stat() cannot get the correct atime, ".
174                   "as happens via NFS on linux?\n";
175             $foo = (utime 400000000,500000000 + 2*$delta,'b');
176             my ($new_atime, $new_mtime) = (stat('b'))[8,9];
177             print "# newatime - $new_atime  nemtime - $new_mtime\n";
178             if ($new_atime == $atime && $new_mtime - $mtime == $delta) {
179                 pass("atime - accounted for possible NFS/glibc2.2 bug on linux");
180                 pass("mtime - accounted for possible NFS/glibc2.2 bug on linux");
181             }
182             else {
183                 fail("atime - $atime/$new_atime $mtime/$new_mtime");
184                 fail("mtime - $atime/$new_atime $mtime/$new_mtime");
185             }
186         }
187         elsif ($^O eq 'VMS') {
188             # why is this 1 second off?
189             is( $atime, 500000001,          'atime' );
190             is( $mtime, 500000000 + $delta, 'mtime' );
191         }
192         elsif ($^O eq 'beos') {
193             SKIP: { skip "atime not updated", 1; }
194             is($mtime, 500000001, 'mtime');
195         }
196         else {
197             fail("atime");
198             fail("mtime");
199         }
200     }
201 }
202
203 is(unlink('b'), 1, "unlink b");
204
205 ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
206     $blksize,$blocks) = stat('b');
207 is($ino, undef, "ino of unlinked file b should be undef");
208 unlink 'c';
209
210 chdir $wd || die "Can't cd back to $wd";
211
212 # Yet another way to look for links (perhaps those that cannot be
213 # created by perl?).  Hopefully there is an ls utility in your
214 # %PATH%. N.B. that $^O is 'cygwin' on Cygwin.
215
216 SKIP: {
217     skip "Win32/Netware specific test", 2
218       unless ($^O eq 'MSWin32') || ($^O eq 'NetWare');
219     skip "No symbolic links found to test with", 2
220       unless  `ls -l perl 2>nul` =~ /^l.*->/;
221
222     system("cp TEST TEST$$");
223     # we have to copy because e.g. GNU grep gets huffy if we have
224     # a symlink forest to another disk (it complains about too many
225     # levels of symbolic links, even if we have only two)
226     is(symlink("TEST$$","c"), 1, "symlink");
227     $foo = `grep perl c 2>&1`;
228     ok($foo, "found perl in c");
229     unlink 'c';
230     unlink("TEST$$");
231 }
232
233 unlink "Iofs.tmp";
234 open IOFSCOM, ">Iofs.tmp" or die "Could not write IOfs.tmp: $!";
235 print IOFSCOM 'helloworld';
236 close(IOFSCOM);
237
238 # TODO: pp_truncate needs to be taught about F_CHSIZE and F_FREESP,
239 # as per UNIX FAQ.
240
241 SKIP: {
242     eval { truncate "Iofs.tmp", 5; };
243
244     skip("no truncate - $@", 6) if $@;
245
246     is(-s "Iofs.tmp", 5, "truncation to five bytes");
247
248     truncate "Iofs.tmp", 0;
249
250     ok(-z "Iofs.tmp",    "truncation to zero bytes");
251
252     open(FH, ">Iofs.tmp") or die "Can't create Iofs.tmp";
253
254     binmode FH;
255     select FH;
256     $| = 1;
257     select STDOUT;
258
259     {
260         use strict;
261         print FH "x\n" x 200;
262         ok(truncate(FH, 200), "fh resize to 200");
263     }
264
265     if ($needs_fh_reopen) {
266         close (FH); open (FH, ">>Iofs.tmp") or die "Can't reopen Iofs.tmp";
267     }
268
269     is(-s "Iofs.tmp", 200, "fh resize to 200 working");
270
271     ok(truncate(FH, 0), "fh resize to zero");
272
273     if ($needs_fh_reopen) {
274         close (FH); open (FH, ">>Iofs.tmp") or die "Can't reopen Iofs.tmp";
275     }
276
277     ok(-z "Iofs.tmp", "fh resize to zero working");
278
279     close FH;
280 }
281
282 # check if rename() can be used to just change case of filename
283 SKIP: {
284     skip "Works in Cygwin only if check_case is set to relaxed", 1
285       if $^O eq 'cygwin';
286
287     chdir './tmp';
288     open(fh,'>x') || die "Can't create x";
289     close(fh);
290     rename('x', 'X');
291
292     # this works on win32 only, because fs isn't casesensitive
293     ok(-e 'X', "rename working");
294
295     1 while unlink 'X';
296     chdir $wd || die "Can't cd back to $wd";
297 }
298
299 # check if rename() works on directories
300 if ($^O eq 'VMS') {
301     # must have delete access to rename a directory
302     `set file tmp.dir/protection=o:d`;
303     ok(rename('tmp.dir', 'tmp1.dir'), "rename on directories") ||
304       print "# errno: $!\n";
305 } else {
306     ok(rename('tmp', 'tmp1'), "rename on directories");
307 }
308
309 ok(-d 'tmp1', "rename on directories working");
310
311 # need to remove 'tmp' if rename() in test 28 failed!
312 END { rmdir 'tmp1'; rmdir 'tmp'; unlink "Iofs.tmp"; }