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