Upgrade to PathTools 3.10
[p5sagit/p5-mst-13.2.git] / lib / File / stat.t
index 999d2b2..2359453 100644 (file)
@@ -5,68 +5,84 @@ BEGIN {
     @INC = '../lib';
 }
 
+use Test::More;
+
 BEGIN {
     our $hasst;
     eval { my @n = stat "TEST" };
     $hasst = 1 unless $@ && $@ =~ /unimplemented/;
-    unless ($hasst) { print "1..0 # Skip: no stat\n"; exit 0 }
+    unless ($hasst) { plan skip_all => "no stat"; exit 0 }
     use Config;
     $hasst = 0 unless $Config{'i_sysstat'} eq 'define';
-    unless ($hasst) { print "1..0 # Skip: no sys/stat.h\n"; exit 0 }
+    unless ($hasst) { plan skip_all => "no sys/stat.h"; exit 0 }
+    our @stat = stat "TEST"; # This is the function stat.
+    unless (@stat) { plan skip_all => "1..0 # Skip: no file TEST"; exit 0 }
 }
 
-BEGIN {
-    our @stat = stat "TEST"; # This is the function stat.
-    unless (@stat) { print "1..0 # Skip: no file TEST\n"; exit 0 }
+plan tests => 19;
+
+use_ok( 'File::stat' );
+
+my $stat = File::stat::stat( "TEST" ); # This is the OO stat.
+ok( ref($stat), 'should build a stat object' );
+
+is( $stat->dev, $stat[0], "device number in position 0" );
+
+# On OS/2 (fake) ino is not constant, it is incremented each time
+SKIP: {
+       skip('inode number is not constant on OS/2', 1) if $^O eq 'os2';
+       is( $stat->ino, $stat[1], "inode number in position 1" );
 }
 
-print "1..14\n";
+is( $stat->mode, $stat[2], "file mode in position 2" );
 
-use File::stat;
+is( $stat->nlink, $stat[3], "number of links in position 3" );
 
-print "ok 1\n";
+is( $stat->uid, $stat[4], "owner uid in position 4" );
 
-my $stat = stat "TEST"; # This is the OO stat.
+is( $stat->gid, $stat[5], "group id in position 5" );
 
-print "not " unless $stat->dev     == $stat[ 0];
-print "ok 2\n";
+is( $stat->rdev, $stat[6], "device identifier in position 6" );
 
-# On OS/2 (fake) ino is not constant, it is incremented each time
-print "# ino=>@{[$stat->ino]}, 1=>$stat[ 1]\nnot "
-            unless $stat->ino     == $stat[ 1] or $^O eq 'os2';
-print "ok 3\n";
+is( $stat->size, $stat[7], "file size in position 7" );
+
+is( $stat->atime, $stat[8], "last access time in position 8" );
 
-print "not " unless $stat->mode    == $stat[ 2];
-print "ok 4\n";
+is( $stat->mtime, $stat[9], "last modify time in position 9" );
 
-print "not " unless $stat->nlink   == $stat[ 3];
-print "ok 5\n";
+is( $stat->ctime, $stat[10], "change time in position 10" );
 
-print "not " unless $stat->uid     == $stat[ 4];
-print "ok 6\n";
+is( $stat->blksize, $stat[11], "IO block size in position 11" );
 
-print "not " unless $stat->gid     == $stat[ 5];
-print "ok 7\n";
+is( $stat->blocks, $stat[12], "number of blocks in position 12" );
 
-print "not " unless $stat->rdev    == $stat[ 6];
-print "ok 8\n";
+SKIP: {
+       local *STAT;
+       skip("Could not open file: $!", 2) unless open(STAT, 'TEST');
+       ok( File::stat::stat('STAT'), '... should be able to find filehandle' );
 
-print "not " unless $stat->size    == $stat[ 7];
-print "ok 9\n";
+       package foo;
+       local *STAT = *main::STAT;
+       main::ok( my $stat2 = File::stat::stat('STAT'), 
+               '... and filehandle in another package' );
+       close STAT;
 
-print "not " unless $stat->atime   == $stat[ 8];
-print "ok 10\n";
+#      VOS open() updates atime; ignore this error (posix-975).
+       my $stat3 = $stat2;
+       if ($^O eq 'vos') {
+               $$stat3[8] = $$stat[8];
+       }
 
-print "not " unless $stat->mtime   == $stat[ 9];
-print "ok 11\n";
+       main::skip("Win32: different stat-info on filehandle", 1) if $^O eq 'MSWin32';
+       main::skip("dos: inode number is fake on dos", 1) if $^O eq 'dos';
 
-print "not " unless $stat->ctime   == $stat[10];
-print "ok 12\n";
+       main::skip("OS/2: inode number is not constant on os/2", 1) if $^O eq 'os2';
 
-print "not " unless $stat->blksize == $stat[11];
-print "ok 13\n";
+       main::is( "@$stat", "@$stat3", '... and must match normal stat' );
+}
 
-print "not " unless $stat->blocks  == $stat[12];
-print "ok 14\n";
+local $!;
+$stat = stat '/notafile';
+isn't( $!, '', 'should populate $!, given invalid file' );
 
 # Testing pretty much anything else is unportable.