Remove duplicately applied patch shards.
[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     unshift @INC, '../lib';
18     require Config; import Config;
19     if ($Config{'extensions'} !~ /\bStorable\b/) {
20         print "1..0 # Skip: Storable was not built\n";
21         exit 0;
22     }
23     require 'lib/st-dump.pl';
24 }
25
26
27 use Storable qw(store retrieve store_fd nstore_fd retrieve_fd);
28
29 print "1..20\n";
30
31 $a = 'toto';
32 $b = \$a;
33 $c = bless {}, CLASS;
34 $c->{attribute} = 'attrval';
35 %a = ('key', 'value', 1, 0, $a, $b, 'cvar', \$c);
36 @a = ('first', undef, 3, -4, -3.14159, 456, 4.5,
37         $b, \$a, $a, $c, \$c, \%a);
38
39 print "not " unless defined store(\@a, 'store');
40 print "ok 1\n";
41
42 $dumped = &dump(\@a);
43 print "ok 2\n";
44
45 $root = retrieve('store');
46 print "not " unless defined $root;
47 print "ok 3\n";
48
49 $got = &dump($root);
50 print "ok 4\n";
51
52 print "not " unless $got eq $dumped; 
53 print "ok 5\n";
54
55 1 while unlink 'store';
56
57 package FOO; @ISA = qw(Storable);
58
59 sub make {
60         my $self = bless {};
61         $self->{key} = \%main::a;
62         return $self;
63 };
64
65 package main;
66
67 $foo = FOO->make;
68 print "not " unless $foo->store('store');
69 print "ok 6\n";
70
71 print "not " unless open(OUT, '>>store');
72 print "ok 7\n";
73 binmode OUT;
74
75 print "not " unless defined store_fd(\@a, ::OUT);
76 print "ok 8\n";
77 print "not " unless defined nstore_fd($foo, ::OUT);
78 print "ok 9\n";
79 print "not " unless defined nstore_fd(\%a, ::OUT);
80 print "ok 10\n";
81
82 print "not " unless close(OUT);
83 print "ok 11\n";
84
85 print "not " unless open(OUT, 'store');
86 binmode OUT;
87
88 $r = retrieve_fd(::OUT);
89 print "not " unless defined $r;
90 print "ok 12\n";
91 print "not " unless &dump($foo) eq &dump($r);
92 print "ok 13\n";
93
94 $r = retrieve_fd(::OUT);
95 print "not " unless defined $r;
96 print "ok 14\n";
97 print "not " unless &dump(\@a) eq &dump($r);
98 print "ok 15\n";
99
100 $r = retrieve_fd(main::OUT);
101 print "not " unless defined $r;
102 print "ok 16\n";
103 print "not " unless &dump($foo) eq &dump($r);
104 print "ok 17\n";
105
106 $r = retrieve_fd(::OUT);
107 print "not " unless defined $r;
108 print "ok 18\n";
109 print "not " unless &dump(\%a) eq &dump($r);
110 print "ok 19\n";
111
112 eval { $r = retrieve_fd(::OUT); };
113 print "not " unless $@;
114 print "ok 20\n";
115
116 close OUT;
117 END { 1 while unlink 'store' }
118
119