Storable stand alone tests
authorNicholas Clark <nick@ccl4.org>
Fri, 17 May 2002 22:43:35 +0000 (23:43 +0100)
committerJarkko Hietaniemi <jhi@iki.fi>
Fri, 17 May 2002 21:39:37 +0000 (21:39 +0000)
Message-ID: <20020517214334.GG290@Bagpuss.unfortu.net>

p4raw-id: //depot/perl@16664

20 files changed:
ext/Storable/t/blessed.t
ext/Storable/t/canonical.t
ext/Storable/t/compat06.t
ext/Storable/t/croak.t
ext/Storable/t/dclone.t
ext/Storable/t/downgrade.t
ext/Storable/t/forgive.t
ext/Storable/t/freeze.t
ext/Storable/t/lock.t
ext/Storable/t/malice.t
ext/Storable/t/overload.t
ext/Storable/t/recurse.t
ext/Storable/t/restrict.t
ext/Storable/t/retrieve.t
ext/Storable/t/store.t
ext/Storable/t/tied.t
ext/Storable/t/tied_hook.t
ext/Storable/t/tied_items.t
ext/Storable/t/utf8.t
ext/Storable/t/utf8hash.t

index 88166dc..4c9ea8e 100644 (file)
 sub BEGIN {
     if ($ENV{PERL_CORE}){
        chdir('t') if -d 't';
-       @INC = '.'; 
-       push @INC, '../lib';
+       @INC = ('.', '../lib', '../t/lib');
+    } else {
+       unshift @INC, 't';
     }
     require Config; import Config;
     if ($ENV{PERL_CORE} and $Config{'extensions'} !~ /\bStorable\b/) {
         print "1..0 # Skip: Storable was not built\n";
         exit 0;
     }
-    require 'lib/st-dump.pl';
+    require 'st-dump.pl';
 }
 
 sub ok;
index abc0dcd..0cab212 100644 (file)
@@ -15,8 +15,9 @@
 sub BEGIN {
     if ($ENV{PERL_CORE}){
        chdir('t') if -d 't';
-       @INC = '.'; 
-       push @INC, '../lib';
+       @INC = ('.', '../lib');
+    } else {
+       unshift @INC, 't';
     }
     require Config; import Config;
     if ($ENV{PERL_CORE} and $Config{'extensions'} !~ /\bStorable\b/) {
index 65f9123..08c2ce5 100644 (file)
 BEGIN {
     if ($ENV{PERL_CORE}){
        chdir('t') if -d 't';
-       @INC = '.'; 
-       push @INC, '../lib';
+       @INC = ('.', '../lib', '../t/lib');
+    } else {
+       unshift @INC, 't';
     }
     require Config; import Config;
     if ($ENV{PERL_CORE} and $Config{'extensions'} !~ /\bStorable\b/) {
         print "1..0 # Skip: Storable was not built\n";
         exit 0;
     }
-    require 'lib/st-dump.pl';
+    require 'st-dump.pl';
 }
 
 sub ok;
index ad07f3a..57c51c0 100644 (file)
@@ -8,15 +8,13 @@
 sub BEGIN {
     if ($ENV{PERL_CORE}){
        chdir('t') if -d 't';
-       @INC = '.';
-       push @INC, '../lib';
+       @INC = ('.', '../lib');
     }
     require Config; import Config;
     if ($ENV{PERL_CORE} and $Config{'extensions'} !~ /\bStorable\b/) {
         print "1..0 # Skip: Storable was not built\n";
         exit 0;
     }
-    # require 'lib/st-dump.pl';
 }
 
 use strict;
index 99753c9..563817b 100644 (file)
 sub BEGIN {
     if ($ENV{PERL_CORE}){
        chdir('t') if -d 't';
-       @INC = '.'; 
-       push @INC, '../lib';
+       @INC = ('.', '../lib', '../t/lib');
+    } else {
+       unshift @INC, 't';
     }
     require Config; import Config;
     if ($ENV{PERL_CORE} and $Config{'extensions'} !~ /\bStorable\b/) {
         print "1..0 # Skip: Storable was not built\n";
         exit 0;
     }
-    require 'lib/st-dump.pl';
+    require 'st-dump.pl';
 }
 
 
index b560508..6e6935d 100644 (file)
 sub BEGIN {
     if ($ENV{PERL_CORE}){
        chdir('t') if -d 't';
-       @INC = '.';
-       push @INC, '../lib';
+       @INC = ('.', '../lib');
+    } else {
+       unshift @INC, 't';
     }
     require Config; import Config;
     if ($ENV{PERL_CORE} and $Config{'extensions'} !~ /\bStorable\b/) {
         print "1..0 # Skip: Storable was not built\n";
         exit 0;
     }
-    # require 'lib/st-dump.pl';
 }
 
 use Test::More;
index a9ac3bf..97d0194 100644 (file)
 #
 
 sub BEGIN {
-    if ($] < 5.006) {
-       print "1..0 # Skip: newer File::Spec needed\n";
-       exit 0;
-    }
     if ($ENV{PERL_CORE}){
        chdir('t') if -d 't';
-       @INC = '.'; 
-       push @INC, '../lib';
+       @INC = ('.', '../lib');
+    } else {
+       unshift @INC, 't';
+    }
+    require File::Spec;
+    if ($File::Spec::VERSION < 0.8) {
+       print "1..0 # Skip: newer File::Spec needed\n";
+       exit 0;
     }
     require Config; import Config;
     if ($ENV{PERL_CORE} and $Config{'extensions'} !~ /\bStorable\b/) {
@@ -36,7 +38,7 @@ sub BEGIN {
 }
 
 use Storable qw(store retrieve);
-use File::Spec;
+
 
 print "1..8\n";
 
index 1582fcf..fd91ad8 100644 (file)
 sub BEGIN {
     if ($ENV{PERL_CORE}){
        chdir('t') if -d 't';
-       @INC = '.'; 
-       push @INC, '../lib';
+       @INC = ('.', '../lib', '../t/lib');
+    } else {
+       unshift @INC, 't';
     }
     require Config; import Config;
     if ($ENV{PERL_CORE} and $Config{'extensions'} !~ /\bStorable\b/) {
         print "1..0 # Skip: Storable was not built\n";
         exit 0;
     }
-    require 'lib/st-dump.pl';
+    require 'st-dump.pl';
     sub ok;
 }
 
index 0f56cc9..6ed9148 100644 (file)
@@ -22,8 +22,9 @@
 sub BEGIN {
     if ($ENV{PERL_CORE}){
        chdir('t') if -d 't';
-       @INC = '.'; 
-       push @INC, '../lib';
+       @INC = ('.', '../lib', '../t/lib');
+    } else {
+       unshift @INC, 't';
     }
     require Config; import Config;
     if ($ENV{PERL_CORE} and $Config{'extensions'} !~ /\bStorable\b/) {
@@ -31,7 +32,7 @@ sub BEGIN {
         exit 0;
     }
 
-    require 'lib/st-dump.pl';
+    require 'st-dump.pl';
 }
 
 sub ok;
index 3881afb..d9de077 100644 (file)
@@ -9,7 +9,6 @@
 
 # I'm trying to keep this test easily backwards compatible to 5.004, so no
 # qr//;
-# Currently using Test not Test::More, as Test is in core that far back.
 
 # This test tries to craft malicious data to test out as many different
 # error traps in Storable as possible
 sub BEGIN {
     if ($ENV{PERL_CORE}){
        chdir('t') if -d 't';
-       @INC = '.';
-       push @INC, '../lib';
+       @INC = ('.', '../lib');
     }
     require Config; import Config;
     if ($ENV{PERL_CORE} and $Config{'extensions'} !~ /\bStorable\b/) {
         print "1..0 # Skip: Storable was not built\n";
         exit 0;
     }
-    # require 'lib/st-dump.pl';
 }
 
 use strict;
@@ -39,17 +36,17 @@ $major = 2;
 $minor = 5;
 $minor_write = $] > 5.007 ? 5 : 4;
 
-use Test;
-BEGIN {
-  # If it's 5.7.3 or later the hash will be stored with flags, which is
-  # 2 extra bytes. There are 2 * 2 * 2 tests per byte in the body and header
-  # common to normal and network order serialised objects (hence the 8)
-  # There are only 2 * 2 tests per byte in the parts of the header not present
-  # for network order, and 2 tests per byte on the 'pst0' "magic number" only
-  # present in files, but not in things store()ed to memory
-  $fancy = ($] > 5.007 ? 2 : 0);
-  plan tests => 378 + length($Config{byteorder}) * 4 + $fancy * 8;
-}
+use Test::More;
+
+# If it's 5.7.3 or later the hash will be stored with flags, which is
+# 2 extra bytes. There are 2 * 2 * 2 tests per byte in the body and header
+# common to normal and network order serialised objects (hence the 8)
+# There are only 2 * 2 tests per byte in the parts of the header not present
+# for network order, and 2 tests per byte on the 'pst0' "magic number" only
+# present in files, but not in things store()ed to memory
+$fancy = ($] > 5.007 ? 2 : 0);
+
+plan tests => 378 + length($Config{byteorder}) * 4 + $fancy * 8;
 
 use Storable qw (store retrieve freeze thaw nstore nfreeze);
 
@@ -67,29 +64,25 @@ delete $hash{chr 256};
 
 sub test_hash {
   my $clone = shift;
-  ok (ref $clone, "HASH", "Get hash back");
-  ok (scalar keys %$clone, 1, "with 1 key");
-  ok ((keys %$clone)[0], "perl", "which is correct");
-  ok ($clone->{perl}, "rules");
+  is (ref $clone, "HASH", "Get hash back");
+  is (scalar keys %$clone, 1, "with 1 key");
+  is ((keys %$clone)[0], "perl", "which is correct");
+  is ($clone->{perl}, "rules");
 }
 
 sub test_header {
   my ($header, $isfile, $isnetorder) = @_;
-  ok (!!$header->{file}, !!$isfile, "is file");
-  ok ($header->{major}, $major, "major number");
-  ok ($header->{minor}, $minor_write, "minor number");
-  ok (!!$header->{netorder}, !!$isnetorder, "is network order");
-  if ($isnetorder) {
-    # Skip these
-    for (1..5) {
-      ok (1, 1, "Network order header has no sizes");
-    }
-  } else {
-    ok ($header->{byteorder}, $Config{byteorder}, "byte order");
-    ok ($header->{intsize}, $Config{intsize}, "int size");
-    ok ($header->{longsize}, $Config{longsize}, "long size");
-    ok ($header->{ptrsize}, $Config{ptrsize}, "long size");
-    ok ($header->{nvsize}, $Config{nvsize} || $Config{doublesize} || 8,
+  is (!!$header->{file}, !!$isfile, "is file");
+  is ($header->{major}, $major, "major number");
+  is ($header->{minor}, $minor_write, "minor number");
+  is (!!$header->{netorder}, !!$isnetorder, "is network order");
+ SKIP: {
+    skip "Network order header has no sizes", 5 if ($isnetorder);
+    is ($header->{byteorder}, $Config{byteorder}, "byte order");
+    is ($header->{intsize}, $Config{intsize}, "int size");
+    is ($header->{longsize}, $Config{longsize}, "long size");
+    is ($header->{ptrsize}, $Config{ptrsize}, "long size");
+    is ($header->{nvsize}, $Config{nvsize} || $Config{doublesize} || 8,
         "nv size"); # 5.00405 doesn't even have doublesize in config.
   }
 }
@@ -116,12 +109,12 @@ sub test_truncated {
     my $short = substr $data, 0, $i;
 
     my $clone = &$sub($short);
-    ok (defined ($clone), '', "truncated $what to $i should fail");
+    is (defined ($clone), '', "truncated $what to $i should fail");
     if ($i < $magic_len) {
-      ok ($@, "/^Magic number checking on storable $what failed/",
+      like ($@, "/^Magic number checking on storable $what failed/",
           "Should croak with magic number warning");
     } else {
-      ok ($@, "", "Should not set \$\@");
+      is ($@, "", "Should not set \$\@");
     }
   }
 }
@@ -130,8 +123,8 @@ sub test_corrupt {
   my ($data, $sub, $what, $name) = @_;
 
   my $clone = &$sub($data);
-  ok (defined ($clone), '', "$name $what should fail");
-  ok ($@, $what, $name);
+  is (defined ($clone), '', "$name $what should fail");
+  like ($@, $what, $name);
 }
 
 sub test_things {
@@ -145,7 +138,7 @@ sub test_things {
   # Test that if we re-write it, everything still works:
   my $clone = &$sub ($contents);
 
-  ok ($@, "", "There should be no error");
+  is ($@, "", "There should be no error");
 
   test_hash ($clone);
 
@@ -177,7 +170,7 @@ sub test_things {
   {
     # Now by default newer minor version numbers are not a pain.
     $clone = &$sub($copy);
-    ok ($@, "", "by default no error on higher minor");
+    is ($@, "", "by default no error on higher minor");
     test_hash ($clone);
 
     local $Storable::accept_future_minor = 0;
index 7a195f1..e0d204d 100644 (file)
 sub BEGIN {
     if ($ENV{PERL_CORE}){
        chdir('t') if -d 't';
-       @INC = '.'; 
-       push @INC, '../lib';
+       @INC = ('.', '../lib', '../t/lib');
+    } else {
+       unshift @INC, 't';
     }
     require Config; import Config;
     if ($ENV{PERL_CORE} and $Config{'extensions'} !~ /\bStorable\b/) {
         print "1..0 # Skip: Storable was not built\n";
         exit 0;
     }
-    require 'lib/st-dump.pl';
+    require 'st-dump.pl';
 }
 
 sub ok;
index fc82a9a..f10511d 100644 (file)
 sub BEGIN {
     if ($ENV{PERL_CORE}){
        chdir('t') if -d 't';
-       @INC = '.'; 
-       push @INC, '../lib';
+       @INC = ('.', '../lib', '../t/lib');
+    } else {
+       unshift @INC, 't';
     }
     require Config; import Config;
     if ($ENV{PERL_CORE} and $Config{'extensions'} !~ /\bStorable\b/) {
         print "1..0 # Skip: Storable was not built\n";
         exit 0;
     }
-    require 'lib/st-dump.pl';
+    require 'st-dump.pl';
 }
 
 sub ok;
index 841baab..24e7b9d 100644 (file)
@@ -8,10 +8,9 @@
 #
 
 sub BEGIN {
+    chdir('t') if -d 't';
     if ($ENV{PERL_CORE}){
-       chdir('t') if -d 't';
-       @INC = '.';
-       push @INC, '../lib';
+       @INC = ('.', '../lib', '../t/lib');
         require Config;
         if ($Config::Config{'extensions'} !~ /\bStorable\b/) {
             print "1..0 # Skip: Storable was not built\n";
@@ -26,8 +25,9 @@ sub BEGIN {
                 die;
             }
         }
+       unshift @INC, 't';
     }
-    require 'lib/st-dump.pl';
+    require 'st-dump.pl';
 }
 
 
index 33e6227..96701ba 100644 (file)
 sub BEGIN {
     if ($ENV{PERL_CORE}){
        chdir('t') if -d 't';
-       @INC = '.'; 
-       push @INC, '../lib';
+       @INC = ('.', '../lib', '../t/lib');
+    } else {
+       unshift @INC, 't';
     }
     require Config; import Config;
     if ($ENV{PERL_CORE} and $Config{'extensions'} !~ /\bStorable\b/) {
         print "1..0 # Skip: Storable was not built\n";
         exit 0;
     }
-    require 'lib/st-dump.pl';
+    require 'st-dump.pl';
 }
 
 
index 08be4c6..94df1c0 100644 (file)
 sub BEGIN {
     if ($ENV{PERL_CORE}){
        chdir('t') if -d 't';
-       @INC = '.'; 
-       push @INC, '../lib';
+       @INC = ('.', '../lib', '../t/lib');
+    } else {
+       unshift @INC, 't';
     }
     require Config; import Config;
     if ($ENV{PERL_CORE} and $Config{'extensions'} !~ /\bStorable\b/) {
         print "1..0 # Skip: Storable was not built\n";
         exit 0;
     }
-    require 'lib/st-dump.pl';
+    require 'st-dump.pl';
 }
 
 use Storable qw(store retrieve store_fd nstore_fd fd_retrieve);
index 146c544..327074d 100644 (file)
 sub BEGIN {
     if ($ENV{PERL_CORE}){
        chdir('t') if -d 't';
-       @INC = '.'; 
-       push @INC, '../lib';
+       @INC = ('.', '../lib', '../t/lib');
+    } else {
+       unshift @INC, 't';
     }
     require Config; import Config;
     if ($ENV{PERL_CORE} and $Config{'extensions'} !~ /\bStorable\b/) {
         print "1..0 # Skip: Storable was not built\n";
         exit 0;
     }
-    require 'lib/st-dump.pl';
+    require 'st-dump.pl';
 }
 
 sub ok;
index 7a21301..b085285 100644 (file)
 sub BEGIN {
     if ($ENV{PERL_CORE}){
        chdir('t') if -d 't';
-       @INC = '.'; 
-       push @INC, '../lib';
+       @INC = ('.', '../lib', '../t/lib');
+    } else {
+       unshift @INC, 't';
     }
     require Config; import Config;
     if ($ENV{PERL_CORE} and $Config{'extensions'} !~ /\bStorable\b/) {
         print "1..0 # Skip: Storable was not built\n";
         exit 0;
     }
-    require 'lib/st-dump.pl';
+    require 'st-dump.pl';
 }
 
 sub ok;
index 40fd476..0198f44 100644 (file)
 sub BEGIN {
     if ($ENV{PERL_CORE}){
        chdir('t') if -d 't';
-       @INC = '.'; 
-       push @INC, '../lib';
+       @INC = ('.', '../lib', '../t/lib');
+    } else {
+       unshift @INC, 't';
     }
     require Config; import Config;
     if ($ENV{PERL_CORE} and $Config{'extensions'} !~ /\bStorable\b/) {
         print "1..0 # Skip: Storable was not built\n";
         exit 0;
     }
-    require 'lib/st-dump.pl';
+    require 'st-dump.pl';
 }
 
 sub ok;
index 600bcf2..890834f 100644 (file)
@@ -23,15 +23,16 @@ sub BEGIN {
     }
     if ($ENV{PERL_CORE}){
        chdir('t') if -d 't';
-       @INC = '.'; 
-       push @INC, '../lib';
+       @INC = ('.', '../lib', '../t/lib');
+    } else {
+       unshift @INC, 't';
     }
     require Config; import Config;
     if ($ENV{PERL_CORE} and $Config{'extensions'} !~ /\bStorable\b/) {
         print "1..0 # Skip: Storable was not built\n";
         exit 0;
     }
-    require 'lib/st-dump.pl';
+    require 'st-dump.pl';
 }
 
 use strict;
index a545ac7..1aff2b9 100644 (file)
@@ -11,8 +11,9 @@ sub BEGIN {
     }
     if ($ENV{PERL_CORE}){
        chdir('t') if -d 't';
-       @INC = '.'; 
-       push @INC, '../lib';
+       @INC = ('.', '../lib');
+    } else {
+       unshift @INC, 't';
     }
     require Config; import Config;
     if ($ENV{PERL_CORE}){
@@ -21,7 +22,6 @@ sub BEGIN {
            exit 0;
        }
     }
-    # require 'lib/st-dump.pl';
 }
 
 use strict;