[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 / dclone.t
1 #!./perl
2
3 # $Id: dclone.t,v 1.0 2000/09/01 19:40:41 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: dclone.t,v $
11 # Revision 1.0  2000/09/01 19:40:41  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(dclone);
32
33 print "1..10\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 ($aref = dclone(\@a));
44 print "ok 1\n";
45
46 $dumped = &dump(\@a);
47 print "ok 2\n";
48
49 $got = &dump($aref);
50 print "ok 3\n";
51
52 print "not " unless $got eq $dumped; 
53 print "ok 4\n";
54
55 package FOO; @ISA = qw(Storable);
56
57 sub make {
58         my $self = bless {};
59         $self->{key} = \%main::a;
60         return $self;
61 };
62
63 package main;
64
65 $foo = FOO->make;
66 print "not " unless defined($r = $foo->dclone);
67 print "ok 5\n";
68
69 print "not " unless &dump($foo) eq &dump($r);
70 print "ok 6\n";
71
72 # Ensure refs to "undef" values are properly shared during cloning
73 my $hash;
74 push @{$$hash{''}}, \$$hash{a};
75 print "not " unless $$hash{''}[0] == \$$hash{a};
76 print "ok 7\n";
77
78 my $cloned = dclone(dclone($hash));
79 print "not " unless $$cloned{''}[0] == \$$cloned{a};
80 print "ok 8\n";
81
82 $$cloned{a} = "blah";
83 print "not " unless $$cloned{''}[0] == \$$cloned{a};
84 print "ok 9\n";
85
86 # [ID 20020221.007] SEGV in Storable with empty string scalar object
87 package TestString;
88 sub new {
89     my ($type, $string) = @_;
90     return bless(\$string, $type);
91 }
92 package main;
93 my $empty_string_obj = TestString->new('');
94 my $clone = dclone($empty_string_obj);
95 # If still here after the dclone the fix (#17543) worked.
96 print ref $clone eq ref $empty_string_obj &&
97       $$clone eq $$empty_string_obj &&
98       $$clone eq '' ? "ok 10\n" : "not ok 10\n";
99