This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Net::Ping 500_ping_icmp.t: remove sudo code
[perl5.git] / t / io / fs.t
1 #!./perl
2
3 BEGIN {
4     chdir 't' if -d 't';
5     require "./test.pl";
6     set_up_inc('../lib');
7 }
8
9 use Config;
10
11 my $Is_VMSish = ($^O eq 'VMS');
12
13 if ($^O eq 'MSWin32') {
14     # under minitest, buildcustomize sets this to 1, which means
15     # nlinks isn't populated properly, allow our tests to pass
16     ${^WIN32_SLOPPY_STAT} = 0;
17 }
18
19 if (($^O eq 'MSWin32') || ($^O eq 'NetWare')) {
20     $wd = `cd`;
21 }
22 elsif ($^O eq 'VMS') {
23     $wd = `show default`;
24 }
25 elsif ( $^O =~ /android/ || $^O eq 'nto' ) {
26     # On Android and Blackberry 10, pwd is a shell builtin, so plain `pwd`
27     # won't cut it
28     $wd = `sh -c pwd`;
29 }
30 else {
31     $wd = `pwd`;
32 }
33 chomp($wd);
34
35 die "Can't get current working directory" if(!$wd);
36
37 my $has_link            = $Config{d_link};
38 my $accurate_timestamps =
39     !($^O eq 'MSWin32' || $^O eq 'NetWare' ||
40       $^O eq 'dos'     || $^O eq 'os2'     ||
41       $^O eq 'cygwin'  || $^O eq 'amigaos' ||
42           $wd =~ m#$Config{afsroot}/#
43      );
44
45 if (defined &Win32::IsWinNT && Win32::IsWinNT()) {
46     if (Win32::FsType() eq 'NTFS') {
47         $has_link            = 1;
48         $accurate_timestamps = 1;
49     }
50     else {
51         $has_link            = 0;
52     }
53 }
54
55 my $needs_fh_reopen =
56     $^O eq 'dos'
57     # Not needed on HPFS, but needed on HPFS386 ?!
58     || $^O eq 'os2';
59
60 $needs_fh_reopen = 1 if (defined &Win32::IsWin95 && Win32::IsWin95());
61
62 my $skip_mode_checks =
63     $^O eq 'cygwin' && $ENV{CYGWIN} !~ /ntsec/;
64
65 plan tests => 61;
66
67 my $tmpdir = tempfile();
68 my $tmpdir1 = tempfile();
69
70 if (($^O eq 'MSWin32') || ($^O eq 'NetWare')) {
71     `rmdir /s /q $tmpdir 2>nul`;
72     `mkdir $tmpdir`;
73 }
74 elsif ($^O eq 'VMS') {
75     `if f\$search("[.$tmpdir]*.*") .nes. "" then delete/nolog/noconfirm [.$tmpdir]*.*.*`;
76     `if f\$search("$tmpdir.dir") .nes. "" then set file/prot=o:rwed $tmpdir.dir;`;
77     `if f\$search("$tmpdir.dir") .nes. "" then delete/nolog/noconfirm $tmpdir.dir;`;
78     `create/directory [.$tmpdir]`;
79 }
80 else {
81     `rm -f $tmpdir 2>/dev/null; mkdir $tmpdir 2>/dev/null`;
82 }
83
84 chdir $tmpdir;
85
86 `/bin/rm -rf a b c x` if -x '/bin/rm';
87
88 umask(022);
89
90 SKIP: {
91     skip "bogus umask", 1 if ($^O eq 'MSWin32') || ($^O eq 'NetWare');
92
93     is((umask(0)&0777), 022, 'umask'),
94 }
95
96 open(FH,'>x') || die "Can't create x";
97 close(FH);
98 open(FH,'>a') || die "Can't create a";
99 close(FH);
100
101 my ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
102     $blksize,$blocks,$a_mode);
103
104 SKIP: {
105     skip("no link", 4) unless $has_link;
106
107     ok(link('a','b'), "link a b");
108     ok(link('b','c'), "link b c");
109
110     $a_mode = (stat('a'))[2];
111
112     ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
113      $blksize,$blocks) = stat('c');
114
115     SKIP: {
116         skip "no nlink", 1 if $Config{dont_use_nlink};
117
118         is($nlink, 3, "link count of triply-linked file");
119     }
120
121     SKIP: {
122         skip "hard links not that hard in $^O", 1 if $^O eq 'amigaos';
123         skip "no mode checks", 1 if $skip_mode_checks;
124
125 #      if ($^O eq 'cygwin') { # new files on cygwin get rwx instead of rw-
126 #          is($mode & 0777, 0777, "mode of triply-linked file");
127 #      } else {
128             is(sprintf("0%o", $mode & 0777), 
129                sprintf("0%o", $a_mode & 0777), 
130                "mode of triply-linked file");
131 #      }
132     }
133 }
134
135 $newmode = (($^O eq 'MSWin32') || ($^O eq 'NetWare')) ? 0444 : 0777;
136
137 is(chmod($newmode,'a'), 1, "chmod succeeding");
138
139 SKIP: {
140     skip("no link", 7) unless $has_link;
141
142     ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
143      $blksize,$blocks) = stat('c');
144
145     SKIP: {
146         skip "no mode checks", 1 if $skip_mode_checks;
147
148         is($mode & 0777, $newmode, "chmod going through");
149     }
150
151     $newmode = 0700;
152     chmod 0444, 'x';
153     $newmode = 0666;
154
155     is(chmod($newmode,'c','x'), 2, "chmod two files");
156
157     ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
158      $blksize,$blocks) = stat('c');
159
160     SKIP: {
161         skip "no mode checks", 1 if $skip_mode_checks;
162
163         is($mode & 0777, $newmode, "chmod going through to c");
164     }
165
166     ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
167      $blksize,$blocks) = stat('x');
168
169     SKIP: {
170         skip "no mode checks", 1 if $skip_mode_checks;
171
172         is($mode & 0777, $newmode, "chmod going through to x");
173     }
174
175     is(unlink('b','x'), 2, "unlink two files");
176
177     ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
178      $blksize,$blocks) = stat('b');
179
180     is($ino, undef, "ino of removed file b should be undef");
181
182     ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
183      $blksize,$blocks) = stat('x');
184
185     is($ino, undef, "ino of removed file x should be undef");
186 }
187
188 SKIP: {
189     skip "no fchmod", 7 unless ($Config{d_fchmod} || "") eq "define";
190     ok(open(my $fh, "<", "a"), "open a");
191     is(chmod(0, $fh), 1, "fchmod");
192     $mode = (stat "a")[2];
193     SKIP: {
194         skip "no mode checks", 1 if $skip_mode_checks;
195         is($mode & 0777, 0, "perm reset");
196     }
197     is(chmod($newmode, "a"), 1, "fchmod");
198     $mode = (stat $fh)[2];
199     SKIP: { 
200         skip "no mode checks", 1 if $skip_mode_checks;
201         is($mode & 0777, $newmode, "perm restored");
202     }
203
204     # [perl #122703]
205     close $fh;
206     $! = 0;
207     ok(!chmod(0666, $fh), "chmod through closed handle fails");
208     isnt($!+0, 0, "and errno was set");
209 }
210
211 SKIP: {
212     skip "no fchown", 3 unless ($Config{d_fchown} || "") eq "define";
213     open(my $fh, "<", "a");
214     is(chown($<, $(, $fh), 1, "fchown");
215
216     # [perl #122703]
217     # chown() behaved correctly, but there was no test for the chown()
218     # on closed handle case
219     close $fh;
220     $! = 0;
221     ok(!chown($<, $(, $fh), "chown on closed handle fails");
222     isnt($!+0, 0, "and errno was set");
223 }
224
225 SKIP: {
226     skip "has fchmod", 1 if ($Config{d_fchmod} || "") eq "define";
227     open(my $fh, "<", "a");
228     eval { chmod(0777, $fh); };
229     like($@, qr/^The fchmod function is unimplemented at/, "fchmod is unimplemented");
230 }
231
232 SKIP: {
233     skip "has fchown", 1 if ($Config{d_fchown} || "") eq "define";
234     open(my $fh, "<", "a");
235     eval { chown(0, 0, $fh); };
236     like($@, qr/^The f?chown function is unimplemented at/, "fchown is unimplemented");
237 }
238
239 is(rename('a','b'), 1, "rename a b");
240
241 ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
242  $blksize,$blocks) = stat('a');
243
244 is($ino, undef, "ino of renamed file a should be undef");
245
246 $delta = $accurate_timestamps ? 1 : 2;  # Granularity of time on the filesystem
247 chmod 0777, 'b';
248
249 $foo = (utime 500000000,500000000 + $delta,'b');
250 is($foo, 1, "utime");
251 check_utime_result();
252
253 utime undef, undef, 'b';
254 ($atime,$mtime) = (stat 'b')[8,9];
255 print "# utime undef, undef --> $atime, $mtime\n";
256 isnt($atime, 500000000, 'atime');
257 isnt($mtime, 500000000 + $delta, 'mtime');
258
259 SKIP: {
260     skip "no futimes", 6 unless ($Config{d_futimes} || "") eq "define";
261     open(my $fh, "<", 'b');
262     $foo = (utime 500000000,500000000 + $delta, $fh);
263     is($foo, 1, "futime");
264     check_utime_result();
265     # [perl #122703]
266     close $fh;
267     ok(!utime(500000000,500000000 + $delta, $fh),
268        "utime fails on a closed file handle");
269     isnt($!+0, 0, "and errno was set");
270 }
271
272
273 sub check_utime_result {
274     ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
275      $blksize,$blocks) = stat('b');
276
277  SKIP: {
278         skip "bogus inode num", 1 if ($^O eq 'MSWin32') || ($^O eq 'NetWare');
279
280         ok($ino,    'non-zero inode num');
281     }
282
283  SKIP: {
284         skip "filesystem atime/mtime granularity too low", 2
285             unless $accurate_timestamps;
286
287      if ($^O eq 'vos') {
288             skip ("# TODO - hit VOS bug posix-2055 - access time does not follow POSIX rules for an open file.", 2);
289      }
290
291         print "# atime - $atime  mtime - $mtime  delta - $delta\n";
292         if($atime == 500000000 && $mtime == 500000000 + $delta) {
293             pass('atime');
294             pass('mtime');
295         }
296         else {
297             if ($^O =~ /\blinux\b/i) {
298                 print "# Maybe stat() cannot get the correct atime, ".
299                     "as happens via NFS on linux?\n";
300                 $foo = (utime 400000000,500000000 + 2*$delta,'b');
301                 my ($new_atime, $new_mtime) = (stat('b'))[8,9];
302                 print "# newatime - $new_atime  nemtime - $new_mtime\n";
303                 if ($new_atime == $atime && $new_mtime - $mtime == $delta) {
304                     pass("atime - accounted for possible NFS/glibc2.2 bug on linux");
305                     pass("mtime - accounted for possible NFS/glibc2.2 bug on linux");
306                 }
307                 else {
308                     fail("atime - $atime/$new_atime $mtime/$new_mtime");
309                     fail("mtime - $atime/$new_atime $mtime/$new_mtime");
310                 }
311             }
312             elsif ($^O eq 'VMS') {
313                 # why is this 1 second off?
314                 is( $atime, 500000001,          'atime' );
315                 is( $mtime, 500000000 + $delta, 'mtime' );
316             }
317             elsif ($^O eq 'haiku') {
318             SKIP: {
319                     skip "atime not updated", 1;
320                 }
321                 is($mtime, 500000001, 'mtime');
322             }
323             else {
324                 fail("atime");
325                 fail("mtime");
326             }
327         }
328     }
329 }
330
331 SKIP: {
332     skip "has futimes", 1 if ($Config{d_futimes} || "") eq "define";
333     open(my $fh, "<", "b") || die;
334     eval { utime(undef, undef, $fh); };
335     like($@, qr/^The futimes function is unimplemented at/, "futimes is unimplemented");
336 }
337
338 is(unlink('b'), 1, "unlink b");
339
340 ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
341     $blksize,$blocks) = stat('b');
342 is($ino, undef, "ino of unlinked file b should be undef");
343 unlink 'c';
344
345 chdir $wd || die "Can't cd back to '$wd' ($!)";
346
347 # Yet another way to look for links (perhaps those that cannot be
348 # created by perl?).  Hopefully there is an ls utility in your
349 # %PATH%. N.B. that $^O is 'cygwin' on Cygwin.
350
351 SKIP: {
352     skip "Win32/Netware specific test", 2
353       unless ($^O eq 'MSWin32') || ($^O eq 'NetWare');
354     skip "No symbolic links found to test with", 2
355       unless  `ls -l perl 2>nul` =~ /^l.*->/;
356
357     system("cp TEST TEST$$");
358     # we have to copy because e.g. GNU grep gets huffy if we have
359     # a symlink forest to another disk (it complains about too many
360     # levels of symbolic links, even if we have only two)
361     is(symlink("TEST$$","c"), 1, "symlink");
362     $foo = `grep perl c 2>&1`;
363     ok($foo, "found perl in c");
364     unlink 'c';
365     unlink("TEST$$");
366 }
367
368 my $tmpfile = tempfile();
369 open IOFSCOM, ">$tmpfile" or die "Could not write IOfs.tmp: $!";
370 print IOFSCOM 'helloworld';
371 close(IOFSCOM);
372
373 # TODO: pp_truncate needs to be taught about F_CHSIZE and F_FREESP,
374 # as per UNIX FAQ.
375
376 SKIP: {
377 # Check truncating a closed file.
378     eval { truncate $tmpfile, 5; };
379
380     skip("no truncate - $@", 8) if $@;
381
382     is(-s $tmpfile, 5, "truncation to five bytes");
383
384     truncate $tmpfile, 0;
385
386     ok(-z $tmpfile,    "truncation to zero bytes");
387
388 #these steps are necessary to check if file is really truncated
389 #On Win95, FH is updated, but file properties aren't
390     open(FH, ">$tmpfile") or die "Can't create $tmpfile";
391     print FH "x\n" x 200;
392     close FH;
393
394 # Check truncating an open file.
395     open(FH, ">>$tmpfile") or die "Can't open $tmpfile for appending";
396
397     binmode FH;
398     select FH;
399     $| = 1;
400     select STDOUT;
401
402     {
403         use strict;
404         print FH "x\n" x 200;
405         ok(truncate(FH, 200), "fh resize to 200");
406     }
407
408     if ($needs_fh_reopen) {
409         close (FH); open (FH, ">>$tmpfile") or die "Can't reopen $tmpfile";
410     }
411
412         is(-s $tmpfile, 200, "fh resize to 200 working (filename check)");
413
414         ok(truncate(FH, 0), "fh resize to zero");
415
416         if ($needs_fh_reopen) {
417             close (FH); open (FH, ">>$tmpfile") or die "Can't reopen $tmpfile";
418         }
419
420         ok(-z $tmpfile, "fh resize to zero working (filename check)");
421
422         close FH;
423
424         open(FH, ">>$tmpfile") or die "Can't open $tmpfile for appending";
425
426         binmode FH;
427         select FH;
428         $| = 1;
429         select STDOUT;
430
431         {
432             use strict;
433             print FH "x\n" x 200;
434             ok(truncate(*FH{IO}, 100), "fh resize by IO slot");
435         }
436
437         if ($needs_fh_reopen) {
438             close (FH); open (FH, ">>$tmpfile") or die "Can't reopen $tmpfile";
439         }
440
441         is(-s $tmpfile, 100, "fh resize by IO slot working");
442
443         close FH;
444
445         my $n = "for_fs_dot_t$$";
446         open FH, ">$n" or die "open $n: $!";
447         print FH "bloh blah bla\n";
448         close FH or die "close $n: $!";
449         eval "truncate $n, 0; 1" or die;
450         ok !-z $n, 'truncate(word) does not fall back to file name';
451         unlink $n;
452 }
453
454 # check if rename() can be used to just change case of filename
455 SKIP: {
456     skip "Works in Cygwin only if check_case is set to relaxed", 1
457       if ($ENV{'CYGWIN'} && ($ENV{'CYGWIN'} =~ /check_case:(?:adjust|strict)/));
458
459     chdir "./$tmpdir";
460     open(FH,'>x') || die "Can't create x";
461     close(FH);
462     rename('x', 'X');
463
464     # this works on win32 only, because fs isn't casesensitive
465     ok(-e 'X', "rename working");
466
467     unlink_all 'X';
468     chdir $wd || die "Can't cd back to $wd";
469 }
470
471 # check if rename() works on directories
472 if ($^O eq 'VMS') {
473     # must have delete access to rename a directory
474     `set file $tmpdir.dir/protection=o:d`;
475     ok(rename("$tmpdir.dir", "$tmpdir1.dir"), "rename on directories") ||
476       print "# errno: $!\n";
477 }
478 else {
479     ok(rename($tmpdir, $tmpdir1), "rename on directories");
480 }
481
482 ok(-d $tmpdir1, "rename on directories working");
483
484 {
485     # Change 26011: Re: A surprising segfault
486     # to make sure only that these obfuscated sentences will not crash.
487
488     map chmod(+()), ('')x68;
489     ok(1, "extend sp in pp_chmod");
490
491     map chown(+()), ('')x68;
492     ok(1, "extend sp in pp_chown");
493 }
494
495 # Calling unlink on a directory without -U and privileges will always fail, but
496 # it should set errno to EISDIR even though unlink(2) is never called.
497 SKIP: {
498     if (is_miniperl && !eval 'require Errno') {
499         skip "Errno not built yet", 3;
500     }
501     require Errno;
502
503     my $tmpdir = tempfile();
504     if (($^O eq 'MSWin32') || ($^O eq 'NetWare')) {
505         `mkdir $tmpdir`;
506     }
507     elsif ($^O eq 'VMS') {
508         `create/directory [.$tmpdir]`;
509     }
510     else {
511         `mkdir $tmpdir 2>/dev/null`;
512     }
513
514     # errno should be set even though unlink(2) is not called
515     local $!;
516     is(unlink($tmpdir), 0, "can't unlink directory without -U and privileges");
517     is(0+$!, Errno::EISDIR(), "unlink directory without -U sets errno");
518
519     rmdir $tmpdir;
520
521     # errno should be set by failed lstat(2) call
522     $! = 0;
523     unlink($tmpdir);
524     is(0+$!, Errno::ENOENT(), "unlink non-existent directory without -U sets ENOENT");
525 }
526
527 # need to remove $tmpdir if rename() in test 28 failed!
528 END { rmdir $tmpdir1; rmdir $tmpdir; }