home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / perl560.zip / t / io / fs.t < prev    next >
Text File  |  2000-03-22  |  6KB  |  198 lines

  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.     unshift @INC, '../lib';
  8. }
  9.  
  10. use Config;
  11.  
  12. $Is_Dosish = ($^O eq 'MSWin32' or $^O eq 'dos' or
  13.           $^O eq 'os2' or $^O eq 'mint');
  14.  
  15. if (defined &Win32::IsWinNT && Win32::IsWinNT()) {
  16.     $Is_Dosish = '' if Win32::FsType() eq 'NTFS';
  17. }
  18.  
  19. print "1..29\n";
  20.  
  21. $wd = (($^O eq 'MSWin32') ? `cd` : `pwd`);
  22. chop($wd);
  23.  
  24. if ($^O eq 'MSWin32') { `rmdir /s /q tmp 2>nul`; `mkdir tmp`; }
  25. else {  `rm -f tmp 2>/dev/null; mkdir tmp 2>/dev/null`; }
  26. chdir './tmp';
  27. `/bin/rm -rf a b c x` if -x '/bin/rm';
  28.  
  29. umask(022);
  30.  
  31. if ($^O eq 'MSWin32') { print "ok 1 # skipped: bogus umask()\n"; }
  32. elsif ((umask(0)&0777) == 022) {print "ok 1\n";} else {print "not ok 1\n";}
  33. open(fh,'>x') || die "Can't create x";
  34. close(fh);
  35. open(fh,'>a') || die "Can't create a";
  36. close(fh);
  37.  
  38. if ($Is_Dosish) {print "ok 2 # skipped: no link\n";} 
  39. elsif (eval {link('a','b')}) {print "ok 2\n";} 
  40. else {print "not ok 2\n";}
  41.  
  42. if ($Is_Dosish) {print "ok 3 # skipped: no link\n";} 
  43. elsif (eval {link('b','c')}) {print "ok 3\n";} 
  44. else {print "not ok 3\n";}
  45.  
  46. ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
  47.     $blksize,$blocks) = stat('c');
  48.  
  49. if ($Config{dont_use_nlink} || $Is_Dosish)
  50.     {print "ok 4 # skipped: no link\n";} 
  51. elsif ($nlink == 3)
  52.     {print "ok 4\n";} 
  53. else {print "not ok 4\n";}
  54.  
  55. if ($^O eq 'amigaos' || $Is_Dosish)
  56.     {print "ok 5 # skipped: no link\n";} 
  57. elsif (($mode & 0777) == 0666)
  58.     {print "ok 5\n";} 
  59. else {print "not ok 5\n";}
  60.  
  61. $newmode = $^O eq 'MSWin32' ? 0444 : 0777;
  62. if ((chmod $newmode,'a') == 1) {print "ok 6\n";} else {print "not ok 6\n";}
  63.  
  64. ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
  65.     $blksize,$blocks) = stat('c');
  66. if ($Is_Dosish) {print "ok 7 # skipped: no link\n";} 
  67. elsif (($mode & 0777) == $newmode) {print "ok 7\n";} 
  68. else {print "not ok 7\n";}
  69.  
  70. $newmode = 0700;
  71. if ($^O eq 'MSWin32') {
  72.     chmod 0444, 'x';
  73.     $newmode = 0666;
  74. }
  75.  
  76. if ($Is_Dosish) {print "ok 8 # skipped: no link\n";} 
  77. elsif ((chmod $newmode,'c','x') == 2) {print "ok 8\n";} 
  78. else {print "not ok 8\n";}
  79.  
  80. ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
  81.     $blksize,$blocks) = stat('c');
  82. if ($Is_Dosish) {print "ok 9 # skipped: no link\n";} 
  83. elsif (($mode & 0777) == $newmode) {print "ok 9\n";} 
  84. else {print "not ok 9\n";}
  85.  
  86. ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
  87.     $blksize,$blocks) = stat('x');
  88. if ($Is_Dosish) {print "ok 10 # skipped: no link\n";} 
  89. elsif (($mode & 0777) == $newmode) {print "ok 10\n";} 
  90. else {print "not ok 10\n";}
  91.  
  92. if ($Is_Dosish) {print "ok 11 # skipped: no link\n"; unlink 'b','x'; } 
  93. elsif ((unlink 'b','x') == 2) {print "ok 11\n";} 
  94. else {print "not ok 11\n";}
  95. ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
  96.     $blksize,$blocks) = stat('b');
  97. if ($ino == 0) {print "ok 12\n";} else {print "not ok 12\n";}
  98. ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
  99.     $blksize,$blocks) = stat('x');
  100. if ($ino == 0) {print "ok 13\n";} else {print "not ok 13\n";}
  101.  
  102. if (rename('a','b')) {print "ok 14\n";} else {print "not ok 14\n";}
  103. ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
  104.     $blksize,$blocks) = stat('a');
  105. if ($ino == 0) {print "ok 15\n";} else {print "not ok 15\n";}
  106. $delta = $Is_Dosish ? 2 : 1;    # Granularity of time on the filesystem
  107. chmod 0777, 'b';
  108. $foo = (utime 500000000,500000000 + $delta,'b');
  109. if ($foo == 1) {print "ok 16\n";} else {print "not ok 16 $foo\n";}
  110. ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
  111.     $blksize,$blocks) = stat('b');
  112. if ($^O eq 'MSWin32') { print "ok 17 # skipped: bogus (stat)[1]\n"; }
  113. elsif ($ino) {print "ok 17\n";} else {print "not ok 17\n";}
  114. if ($wd =~ m#/afs/# || $^O eq 'amigaos' || $^O eq 'dos' || $^O eq 'MSWin32')
  115.     {print "ok 18 # skipped: granularity of the filetime\n";}
  116. elsif ($atime == 500000000 && $mtime == 500000000 + $delta)
  117.     {print "ok 18\n";}
  118. else
  119.     {print "not ok 18 $atime $mtime\n";}
  120.  
  121. if ((unlink 'b') == 1) {print "ok 19\n";} else {print "not ok 19\n";}
  122. ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
  123.     $blksize,$blocks) = stat('b');
  124. if ($ino == 0) {print "ok 20\n";} else {print "not ok 20\n";}
  125. unlink 'c';
  126.  
  127. chdir $wd || die "Can't cd back to $wd";
  128.  
  129. unlink 'c';
  130. if ($^O ne 'MSWin32' and `ls -l perl 2>/dev/null` =~ /^l.*->/) {
  131.     # we have symbolic links
  132.     if (symlink("TEST","c")) {print "ok 21\n";} else {print "not ok 21\n";}
  133.     $foo = `grep perl c`;
  134.     if ($foo) {print "ok 22\n";} else {print "not ok 22\n";}
  135.     unlink 'c';
  136. }
  137. else {
  138.     print "ok 21\nok 22\n";
  139. }
  140.  
  141. # truncate (may not be implemented everywhere)
  142. unlink "Iofs.tmp";
  143. `echo helloworld > Iofs.tmp`;
  144. eval { truncate "Iofs.tmp", 5; };
  145. if ($@ =~ /not implemented/) {
  146.   print "# truncate not implemented -- skipping tests 23 through 26\n";
  147.   for (23 .. 26) {
  148.     print "ok $_\n";
  149.   }
  150. }
  151. else {
  152.   if (-s "Iofs.tmp" == 5) {print "ok 23\n"} else {print "not ok 23\n"}
  153.   truncate "Iofs.tmp", 0;
  154.   if (-z "Iofs.tmp") {print "ok 24\n"} else {print "not ok 24\n"}
  155.   open(FH, ">Iofs.tmp") or die "Can't create Iofs.tmp";
  156.   binmode FH;
  157.   { select FH; $| = 1; select STDOUT }
  158.   {
  159.     use strict;
  160.     print FH "x\n" x 200;
  161.     truncate(FH, 200) or die "Can't truncate FH: $!";
  162.   }
  163.   if ($^O eq 'dos'
  164.     # Not needed on HPFS, but needed on HPFS386 ?!
  165.       or $^O eq 'os2')
  166.   {
  167.       close (FH); open (FH, ">>Iofs.tmp") or die "Can't reopen Iofs.tmp";
  168.   }
  169.   if (-s "Iofs.tmp" == 200) {print "ok 25\n"} else {print "not ok 25\n"}
  170.   truncate FH, 0;
  171.   if ($^O eq 'dos'
  172.     # Not needed on HPFS, but needed on HPFS386 ?!
  173.       or $^O eq 'os2')
  174.   {
  175.       close (FH); open (FH, ">>Iofs.tmp") or die "Can't reopen Iofs.tmp";
  176.   }
  177.   if (-z "Iofs.tmp") {print "ok 26\n"} else {print "not ok 26\n"}
  178.   close FH;
  179. }
  180.  
  181. # check if rename() can be used to just change case of filename
  182. chdir './tmp';
  183. open(fh,'>x') || die "Can't create x";
  184. close(fh);
  185. rename('x', 'X');
  186. print 'not ' unless -e 'X';
  187. print "ok 27\n";
  188. unlink 'X';
  189. chdir $wd || die "Can't cd back to $wd";
  190.  
  191. # check if rename() works on directories
  192. rename 'tmp', 'tmp1' or print "not ";
  193. print "ok 28\n";
  194. -d 'tmp1' or print "not ";
  195. print "ok 29\n";
  196.  
  197. END { rmdir 'tmp1'; unlink "Iofs.tmp"; }
  198.