Lots of spring cleaning. (No functional changes.)
[p5sagit/p5-mst-13.2.git] / ext / Storable / t / freeze.t
CommitLineData
7a6a85bf 1#!./perl
2
e993d95c 3# $Id: freeze.t,v 1.0.1.1 2001/07/01 11:25:16 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#
7a6a85bf 10
11sub BEGIN {
0c384302 12 if ($ENV{PERL_CORE}){
13 chdir('t') if -d 't';
7dadce44 14 @INC = ('.', '../lib', '../ext/Storable/t');
372cb964 15 } else {
16 unshift @INC, 't';
0c384302 17 }
9f233367 18 require Config; import Config;
0c384302 19 if ($ENV{PERL_CORE} and $Config{'extensions'} !~ /\bStorable\b/) {
9f233367 20 print "1..0 # Skip: Storable was not built\n";
21 exit 0;
22 }
372cb964 23 require 'st-dump.pl';
e993d95c 24 sub ok;
7a6a85bf 25}
26
7a6a85bf 27use Storable qw(freeze nfreeze thaw);
28
e993d95c 29print "1..19\n";
7a6a85bf 30
31$a = 'toto';
32$b = \$a;
33$c = bless {}, CLASS;
34$c->{attribute} = $b;
35$d = {};
36$e = [];
37$d->{'a'} = $e;
38$e->[0] = $d;
39%a = ('key', 'value', 1, 0, $a, $b, 'cvar', \$c);
40@a = ('first', undef, 3, -4, -3.14159, 456, 4.5, $d, \$d, \$e, $e,
41 $b, \$a, $a, $c, \$c, \%a);
42
43print "not " unless defined ($f1 = freeze(\@a));
44print "ok 1\n";
45
46$dumped = &dump(\@a);
47print "ok 2\n";
48
49$root = thaw($f1);
50print "not " unless defined $root;
51print "ok 3\n";
52
53$got = &dump($root);
54print "ok 4\n";
55
56print "not " unless $got eq $dumped;
57print "ok 5\n";
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 $f2 = $foo->freeze;
71print "ok 6\n";
72
73print "not " unless $f3 = $foo->nfreeze;
74print "ok 7\n";
75
76$root3 = thaw($f3);
77print "not " unless defined $root3;
78print "ok 8\n";
79
80print "not " unless &dump($foo) eq &dump($root3);
81print "ok 9\n";
82
83$root = thaw($f2);
84print "not " unless &dump($foo) eq &dump($root);
85print "ok 10\n";
86
87print "not " unless &dump($root3) eq &dump($root);
88print "ok 11\n";
89
90$other = freeze($root);
91print "not " unless length($other) == length($f2);
92print "ok 12\n";
93
94$root2 = thaw($other);
95print "not " unless &dump($root2) eq &dump($root);
96print "ok 13\n";
97
98$VAR1 = [
99 'method',
100 1,
101 'prepare',
102 'SELECT table_name, table_owner, num_rows FROM iitables
103 where table_owner != \'$ingres\' and table_owner != \'DBA\''
104];
105
106$x = nfreeze($VAR1);
107$VAR2 = thaw($x);
108print "not " unless $VAR2->[3] eq $VAR1->[3];
109print "ok 14\n";
110
111# Test the workaround for LVALUE bug in perl 5.004_04 -- from Gisle Aas
112sub foo { $_[0] = 1 }
113$foo = [];
114foo($foo->[1]);
115eval { freeze($foo) };
116print "not " if $@;
117print "ok 15\n";
118
e993d95c 119# Test cleanup bug found by Claudio Garcia -- RAM, 08/06/2001
120my $thaw_me = 'asdasdasdasd';
121
122eval {
123 my $thawed = thaw $thaw_me;
124};
125ok 16, $@;
126
127my %to_be_frozen = (foo => 'bar');
128my $frozen;
129eval {
130 $frozen = freeze \%to_be_frozen;
131};
132ok 17, !$@;
133
134freeze {};
135eval { thaw $thaw_me };
136eval { $frozen = freeze { foo => {} } };
137ok 18, !$@;
138
139thaw $frozen; # used to segfault here
140ok 19, 1;