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