home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Professional / OS2PRO194.ISO / os2 / prgramer / perl / stat.t < prev    next >
Text File  |  1991-06-16  |  5KB  |  165 lines

  1. #!./perl
  2.  
  3. # $RCSfile: stat.t,v $$Revision: 4.0.1.1 $$Date: 91/06/07 12:02:42 $
  4.  
  5. print "1..56\n";
  6.  
  7. chop($cwd = `cd`);
  8.  
  9. $DEV = `ls -l`;
  10.  
  11. unlink "Op.stat.tmp";
  12. open(foo, ">Op.stat.tmp");
  13.  
  14. ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
  15.     $blksize,$blocks) = stat(foo);
  16. if ($nlink == 1) {print "ok 1\n";} else {print "not ok 1\n";}
  17. if ($mtime && $mtime == $ctime) {print "ok 2\n";} else {print "not ok 2\n";}
  18.  
  19. print foo "Now is the time for all good men to come to.\n";
  20. close(foo);
  21.  
  22. sleep 2;
  23.  
  24. `del Op.stat.tmp2; ln Op.stat.tmp Op.stat.tmp2; chmod 644 Op.stat.tmp 2>nul`;
  25.  
  26. ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
  27.     $blksize,$blocks) = stat('Op.stat.tmp');
  28.  
  29. if ($nlink == 2) {print "ok 3\n";} else {print "not ok 3\n";}
  30. if (($mtime && $mtime != $ctime) || $cwd =~ m#/afs/#) {
  31.     print "ok 4\n";
  32. }
  33. else {
  34.     print "not ok 4\n";
  35. }
  36. print "#4    :$mtime: != :$ctime:\n";
  37.  
  38. `cp nul Op.stat.tmp`;
  39.  
  40. if (-z 'Op.stat.tmp') {print "ok 5\n";} else {print "not ok 5\n";}
  41. if (! -s 'Op.stat.tmp') {print "ok 6\n";} else {print "not ok 6\n";}
  42.  
  43. `echo hi >Op.stat.tmp`;
  44. if (! -z 'Op.stat.tmp') {print "ok 7\n";} else {print "not ok 7\n";}
  45. if (-s 'Op.stat.tmp') {print "ok 8\n";} else {print "not ok 8\n";}
  46.  
  47. unlink 'Op.stat.tmp';
  48. $olduid = $>;        # can't test -r if uid == 0
  49. `echo hi >Op.stat.tmp`;
  50. chmod 0,'Op.stat.tmp';
  51. eval '$> = 1;';        # so switch uid (may not be implemented)
  52. if (!$> || ! -r 'Op.stat.tmp') {print "ok 9\n";} else {print "not ok 9\n";}
  53. if (!$> || ! -w 'Op.stat.tmp') {print "ok 10\n";} else {print "not ok 10\n";}
  54. eval '$> = $olduid;';        # switch uid back (may not be implemented)
  55. print "# olduid=$olduid, newuid=$>\n" unless ($> == $olduid);
  56. if (! -x 'Op.stat.tmp') {print "ok 11\n";} else {print "not ok 11\n";}
  57.  
  58. foreach ((12,13,14,15,16,17)) {
  59.     print "ok $_\n";        #deleted tests
  60. }
  61.  
  62. chmod 0700,'Op.stat.tmp';
  63. if (-r 'Op.stat.tmp') {print "ok 18\n";} else {print "not ok 18\n";}
  64. if (-w 'Op.stat.tmp') {print "ok 19\n";} else {print "not ok 19\n";}
  65. if (-x 'Op.stat.tmp') {print "ok 20\n";} else {print "not ok 20\n";}
  66.  
  67. if (-f 'Op.stat.tmp') {print "ok 21\n";} else {print "not ok 21\n";}
  68. if (! -d 'Op.stat.tmp') {print "ok 22\n";} else {print "not ok 22\n";}
  69.  
  70. if (-d '.') {print "ok 23\n";} else {print "not ok 23\n";}
  71. if (! -f '.') {print "ok 24\n";} else {print "not ok 24\n";}
  72.  
  73. if (`ls -l perl.exe` =~ /^l.*->/) {
  74.     if (-l 'perl.exe') {print "ok 25\n";} else {print "not ok 25\n";}
  75. }
  76. else {
  77.     print "ok 25\n";
  78. }
  79.  
  80. if (-o 'Op.stat.tmp') {print "ok 26\n";} else {print "not ok 26\n";}
  81.  
  82. if (-e 'Op.stat.tmp') {print "ok 27\n";} else {print "not ok 27\n";}
  83. `del Op.stat.tmp Op.stat.tmp2 2>nul`;
  84. if (! -e 'Op.stat.tmp') {print "ok 28\n";} else {print "not ok 28\n";}
  85.  
  86. if ($DEV !~ /\nc.* (\S+)\n/)
  87.     {print "ok 29\n";}
  88. elsif (-c "/dev/$1")
  89.     {print "ok 29\n";}
  90. else
  91.     {print "not ok 29\n";}
  92. if (! -c '.') {print "ok 30\n";} else {print "not ok 30\n";}
  93.  
  94. if ($DEV !~ /\ns.* (\S+)\n/)
  95.     {print "ok 31\n";}
  96. elsif (-S "/dev/$1")
  97.     {print "ok 31\n";}
  98. else
  99.     {print "not ok 31\n";}
  100. if (! -S '.') {print "ok 32\n";} else {print "not ok 32\n";}
  101.  
  102. if ($DEV !~ /\nb.* (\S+)\n/)
  103.     {print "ok 33\n";}
  104. elsif (-b "/dev/$1")
  105.     {print "ok 33\n";}
  106. else
  107.     {print "not ok 33\n";}
  108. if (! -b '.') {print "ok 34\n";} else {print "not ok 34\n";}
  109.  
  110. $cnt = $uid = 0;
  111.  
  112. die "Can't run op/stat.t test 35 without pwd working" unless $cwd;
  113. chdir '../os2' || die "Can't cd to ../os2";
  114. while (defined($_ = <*>)) {
  115.     $cnt++;
  116.     $uid++ if -u;
  117.     last if $uid && $uid < $cnt;
  118. }
  119. chdir $cwd || die "Can't cd back to $cwd";
  120.  
  121. # I suppose this is going to fail somewhere...
  122. if ($uid > 0 && $uid < $cnt) {print "ok 35\n";} else {print "not ok 35\n";}
  123.  
  124. unless (open(tty,"con")) {
  125.     print STDERR "Can't open con--run t/TEST outside of make.\n";
  126. }
  127. if (-t tty) {print "ok 36\n";} else {print "not ok 36\n";}
  128. if (-c tty) {print "ok 37\n";} else {print "not ok 37\n";}
  129. close(tty);
  130. if (! -t tty) {print "ok 38\n";} else {print "not ok 38\n";}
  131. open(null,"nul");
  132. if (! -t null || -e 'c:/os2krnl') {print "ok 39\n";} else {print "not ok 39\n";}
  133. close(null);
  134. if (-t) {print "ok 40\n";} else {print "not ok 40\n";}
  135.  
  136. # These aren't strictly "stat" calls, but so what?
  137.  
  138. if (-T 'op/stat.t') {print "ok 41\n";} else {print "not ok 41\n";}
  139. if (! -B 'op/stat.t') {print "ok 42\n";} else {print "not ok 42\n";}
  140.  
  141. if (-B 'perl.exe') {print "ok 43\n";} else {print "not ok 43\n";}
  142. if (! -T 'perl.exe') {print "ok 44\n";} else {print "not ok 44\n";}
  143.  
  144. open(foo,'op/stat.t');
  145. if (-T foo) {print "ok 45\n";} else {print "not ok 45\n";}
  146. if (! -B foo) {print "ok 46\n";} else {print "not ok 46\n";}
  147. $_ = <foo>;
  148. if (/perl/) {print "ok 47\n";} else {print "not ok 47\n";}
  149. if (-T foo) {print "ok 48\n";} else {print "not ok 48\n";}
  150. if (! -B foo) {print "ok 49\n";} else {print "not ok 49\n";}
  151. close(foo);
  152.  
  153. open(foo,'op/stat.t');
  154. $_ = <foo>;
  155. if (/perl/) {print "ok 50\n";} else {print "not ok 50\n";}
  156. if (-T foo) {print "ok 51\n";} else {print "not ok 51\n";}
  157. if (! -B foo) {print "ok 52\n";} else {print "not ok 52\n";}
  158. seek(foo,0,0);
  159. if (-T foo) {print "ok 53\n";} else {print "not ok 53\n";}
  160. if (! -B foo) {print "ok 54\n";} else {print "not ok 54\n";}
  161. close(foo);
  162.  
  163. if (-T 'nul') {print "ok 55\n";} else {print "not ok 55\n";}
  164. if (-B 'nul') {print "ok 56\n";} else {print "not ok 56\n";}
  165.