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