Use minimal @INC in tests, most of the time just '../lib',
[p5sagit/p5-mst-13.2.git] / t / lib / st-store.t
1 #!./perl
2
3 # $Id: store.t,v 0.7 2000/08/03 22:04:45 ram Exp $
4 #
5 #  Copyright (c) 1995-2000, Raphael Manfredi
6 #  
7 #  You may redistribute only under the terms of the Artistic License,
8 #  as specified in the README file that comes with the distribution.
9 #
10 # $Log: store.t,v $
11 # Revision 0.7  2000/08/03 22:04:45  ram
12 # Baseline for second beta release.
13 #
14
15 sub BEGIN {
16     chdir('t') if -d 't';
17     @INC = '.'; 
18     push @INC, '../lib';
19     require Config; import Config;
20     if ($Config{'extensions'} !~ /\bStorable\b/) {
21         print "1..0 # Skip: Storable was not built\n";
22         exit 0;
23     }
24     require 'lib/st-dump.pl';
25 }
26
27
28 use Storable qw(store retrieve store_fd nstore_fd retrieve_fd);
29
30 print "1..20\n";
31
32 $a = 'toto';
33 $b = \$a;
34 $c = bless {}, CLASS;
35 $c->{attribute} = 'attrval';
36 %a = ('key', 'value', 1, 0, $a, $b, 'cvar', \$c);
37 @a = ('first', undef, 3, -4, -3.14159, 456, 4.5,
38         $b, \$a, $a, $c, \$c, \%a);
39
40 print "not " unless defined store(\@a, 'store');
41 print "ok 1\n";
42
43 $dumped = &dump(\@a);
44 print "ok 2\n";
45
46 $root = retrieve('store');
47 print "not " unless defined $root;
48 print "ok 3\n";
49
50 $got = &dump($root);
51 print "ok 4\n";
52
53 print "not " unless $got eq $dumped; 
54 print "ok 5\n";
55
56 1 while unlink 'store';
57
58 package FOO; @ISA = qw(Storable);
59
60 sub make {
61         my $self = bless {};
62         $self->{key} = \%main::a;
63         return $self;
64 };
65
66 package main;
67
68 $foo = FOO->make;
69 print "not " unless $foo->store('store');
70 print "ok 6\n";
71
72 print "not " unless open(OUT, '>>store');
73 print "ok 7\n";
74 binmode OUT;
75
76 print "not " unless defined store_fd(\@a, ::OUT);
77 print "ok 8\n";
78 print "not " unless defined nstore_fd($foo, ::OUT);
79 print "ok 9\n";
80 print "not " unless defined nstore_fd(\%a, ::OUT);
81 print "ok 10\n";
82
83 print "not " unless close(OUT);
84 print "ok 11\n";
85
86 print "not " unless open(OUT, 'store');
87 binmode OUT;
88
89 $r = retrieve_fd(::OUT);
90 print "not " unless defined $r;
91 print "ok 12\n";
92 print "not " unless &dump($foo) eq &dump($r);
93 print "ok 13\n";
94
95 $r = retrieve_fd(::OUT);
96 print "not " unless defined $r;
97 print "ok 14\n";
98 print "not " unless &dump(\@a) eq &dump($r);
99 print "ok 15\n";
100
101 $r = retrieve_fd(main::OUT);
102 print "not " unless defined $r;
103 print "ok 16\n";
104 print "not " unless &dump($foo) eq &dump($r);
105 print "ok 17\n";
106
107 $r = retrieve_fd(::OUT);
108 print "not " unless defined $r;
109 print "ok 18\n";
110 print "not " unless &dump(\%a) eq &dump($r);
111 print "ok 19\n";
112
113 eval { $r = retrieve_fd(::OUT); };
114 print "not " unless $@;
115 print "ok 20\n";
116
117 close OUT;
118 END { 1 while unlink 'store' }
119
120