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