[PATCH] Re: Storable 2.0.0 fails on vendor perl on Mac OS X 10.1
[p5sagit/p5-mst-13.2.git] / ext / Storable / t / retrieve.t
1 #!./perl
2
3 # $Id: retrieve.t,v 1.0 2000/09/01 19:40:42 ram Exp $
4 #
5 #  Copyright (c) 1995-2000, Raphael Manfredi
6 #  
7 #  You may redistribute only under the same terms as Perl 5, as specified
8 #  in the README file that comes with the distribution.
9 #
10 # $Log: retrieve.t,v $
11 # Revision 1.0  2000/09/01 19:40:42  ram
12 # Baseline for first official release.
13 #
14
15 sub BEGIN {
16     if ($ENV{PERL_CORE}){
17         chdir('t') if -d 't';
18         @INC = ('.', '../lib', '../ext/Storable/t');
19     } else {
20         unshift @INC, 't';
21     }
22     require Config; import Config;
23     if ($ENV{PERL_CORE} and $Config{'extensions'} !~ /\bStorable\b/) {
24         print "1..0 # Skip: Storable was not built\n";
25         exit 0;
26     }
27     require 'st-dump.pl';
28 }
29
30
31 use Storable qw(store retrieve nstore);
32
33 print "1..14\n";
34
35 $a = 'toto';
36 $b = \$a;
37 $c = bless {}, CLASS;
38 $c->{attribute} = 'attrval';
39 %a = ('key', 'value', 1, 0, $a, $b, 'cvar', \$c);
40 @a = ('first', '', undef, 3, -4, -3.14159, 456, 4.5,
41         $b, \$a, $a, $c, \$c, \%a);
42
43 print "not " unless defined store(\@a, 'store');
44 print "ok 1\n";
45 print "not " if Storable::last_op_in_netorder();
46 print "ok 2\n";
47 print "not " unless defined nstore(\@a, 'nstore');
48 print "ok 3\n";
49 print "not " unless Storable::last_op_in_netorder();
50 print "ok 4\n";
51 print "not " unless Storable::last_op_in_netorder();
52 print "ok 5\n";
53
54 $root = retrieve('store');
55 print "not " unless defined $root;
56 print "ok 6\n";
57 print "not " if Storable::last_op_in_netorder();
58 print "ok 7\n";
59
60 $nroot = retrieve('nstore');
61 print "not " unless defined $nroot;
62 print "ok 8\n";
63 print "not " unless Storable::last_op_in_netorder();
64 print "ok 9\n";
65
66 $d1 = &dump($root);
67 print "ok 10\n";
68 $d2 = &dump($nroot);
69 print "ok 11\n";
70
71 print "not " unless $d1 eq $d2; 
72 print "ok 12\n";
73
74 # Make sure empty string is defined at retrieval time
75 print "not " unless defined $root->[1];
76 print "ok 13\n";
77 print "not " if length $root->[1];
78 print "ok 14\n";
79
80 END { 1 while unlink('store', 'nstore') }
81