[dummy merge]
[p5sagit/p5-mst-13.2.git] / t / io / fs.t
CommitLineData
8d063cd8 1#!./perl
2
79072805 3# $RCSfile: fs.t,v $$Revision: 4.1 $$Date: 92/08/07 18:27:28 $
8d063cd8 4
ea368a7c 5BEGIN {
6 chdir 't' if -d 't';
7 @INC = '../lib';
8}
9
10use Config;
11
f783569b 12print "1..26\n";
8d063cd8 13
378cc40b 14$wd = `pwd`;
15chop($wd);
16
17`rm -f tmp 2>/dev/null; mkdir tmp 2>/dev/null`;
18chdir './tmp';
b8440792 19`/bin/rm -rf a b c x` if -x '/bin/rm';
8d063cd8 20
21umask(022);
22
e334a159 23if ((umask(0)&0777) == 022) {print "ok 1\n";} else {print "not ok 1\n";}
8d063cd8 24open(fh,'>x') || die "Can't create x";
25close(fh);
26open(fh,'>a') || die "Can't create a";
27close(fh);
28
b8440792 29if (eval {link('a','b')}) {print "ok 2\n";} else {print "not ok 2\n";}
8d063cd8 30
b8440792 31if (eval {link('b','c')}) {print "ok 3\n";} else {print "not ok 3\n";}
8d063cd8 32
33($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
34 $blksize,$blocks) = stat('c');
35
ea368a7c 36if ($Config{dont_use_nlink} || $nlink == 3)
37 {print "ok 4\n";} else {print "not ok 4\n";}
38
8d063cd8 39if (($mode & 0777) == 0666) {print "ok 5\n";} else {print "not ok 5\n";}
40
41if ((chmod 0777,'a') == 1) {print "ok 6\n";} else {print "not ok 6\n";}
42
43($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
44 $blksize,$blocks) = stat('c');
45if (($mode & 0777) == 0777) {print "ok 7\n";} else {print "not ok 7\n";}
46
47if ((chmod 0700,'c','x') == 2) {print "ok 8\n";} else {print "not ok 8\n";}
48
49($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
50 $blksize,$blocks) = stat('c');
51if (($mode & 0777) == 0700) {print "ok 9\n";} else {print "not ok 9\n";}
52($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
53 $blksize,$blocks) = stat('x');
54if (($mode & 0777) == 0700) {print "ok 10\n";} else {print "not ok 10\n";}
55
56if ((unlink 'b','x') == 2) {print "ok 11\n";} else {print "not ok 11\n";}
57($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
58 $blksize,$blocks) = stat('b');
59if ($ino == 0) {print "ok 12\n";} else {print "not ok 12\n";}
60($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
61 $blksize,$blocks) = stat('x');
62if ($ino == 0) {print "ok 13\n";} else {print "not ok 13\n";}
63
64if (rename('a','b')) {print "ok 14\n";} else {print "not ok 14\n";}
65($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
66 $blksize,$blocks) = stat('a');
67if ($ino == 0) {print "ok 15\n";} else {print "not ok 15\n";}
a687059c 68$foo = (utime 500000000,500000001,'b');
378cc40b 69if ($foo == 1) {print "ok 16\n";} else {print "not ok 16 $foo\n";}
8d063cd8 70($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
71 $blksize,$blocks) = stat('b');
378cc40b 72if ($ino) {print "ok 17\n";} else {print "not ok 17\n";}
6eb13c3b 73if (($atime == 500000000 && $mtime == 500000001) || $wd =~ m#/afs/#)
74 {print "ok 18\n";}
75else
76 {print "not ok 18 $atime $mtime\n";}
8d063cd8 77
378cc40b 78if ((unlink 'b') == 1) {print "ok 19\n";} else {print "not ok 19\n";}
8d063cd8 79($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
80 $blksize,$blocks) = stat('b');
378cc40b 81if ($ino == 0) {print "ok 20\n";} else {print "not ok 20\n";}
82unlink 'c';
83
84chdir $wd || die "Can't cd back to $wd";
44a8e56a 85rmdir 'tmp';
378cc40b 86
8d063cd8 87unlink 'c';
378cc40b 88if (`ls -l perl 2>/dev/null` =~ /^l.*->/) { # we have symbolic links
89 if (symlink("TEST","c")) {print "ok 21\n";} else {print "not ok 21\n";}
90 $foo = `grep perl c`;
91 if ($foo) {print "ok 22\n";} else {print "not ok 22\n";}
44a8e56a 92 unlink 'c';
378cc40b 93}
94else {
95 print "ok 21\nok 22\n";
96}
f783569b 97
98# truncate (may not be implemented everywhere)
99unlink "Iofs.tmp";
100`echo helloworld > Iofs.tmp`;
101eval { truncate "Iofs.tmp", 5; };
102if ($@ =~ /not implemented/) {
103 print "# truncate not implemented -- skipping tests 23 through 26\n";
104 for (23 .. 26) {
105 print "ok $_\n";
106 }
107}
108else {
109 if (-s "Iofs.tmp" == 5) {print "ok 23\n"} else {print "not ok 23\n"}
110 truncate "Iofs.tmp", 0;
111 if (-z "Iofs.tmp") {print "ok 24\n"} else {print "not ok 24\n"}
112 `echo helloworld > Iofs.tmp`;
113 open(FH, ">Iofs.tmp") or die "Can't create Iofs.tmp";
114 truncate FH, 5;
115 if (-s "Iofs.tmp" == 5) {print "ok 25\n"} else {print "not ok 25\n"}
116 truncate FH, 0;
117 if (-z "Iofs.tmp") {print "ok 26\n"} else {print "not ok 26\n"}
118 close FH;
119}
120unlink "Iofs.tmp";