97aae9121fd0005d5e0da53efed0069e98c13037
[dbsrgits/DBM-Deep.git] / t / 24_autobless.t
1 use strict;
2
3 {
4     package Foo;
5
6     sub export { 'export' };
7     sub foo { 'foo' };
8 }
9
10 use Test::More tests => 64;
11 use t::common qw( new_fh );
12
13 use_ok( 'DBM::Deep' );
14
15 my ($fh, $filename) = new_fh();
16 {
17     my $db = DBM::Deep->new(
18         file     => $filename,
19         autobless => 1,
20     );
21
22     my $obj = bless {
23         a => 1,
24         b => [ 1 .. 3 ],
25     }, 'Foo';
26
27     $db->{blessed} = $obj;
28     is( $db->{blessed}{a}, 1 );
29     is( $db->{blessed}{b}[0], 1 );
30     is( $db->{blessed}{b}[1], 2 );
31     is( $db->{blessed}{b}[2], 3 );
32
33     my $obj2 = bless [
34         { a => 'foo' },
35         2,
36     ], 'Foo';
37     $db->{blessed2} = $obj2;
38
39     is( $db->{blessed2}[0]{a}, 'foo' );
40     is( $db->{blessed2}[1], '2' );
41
42     $db->{unblessed} = {};
43     $db->{unblessed}{a} = 1;
44     $db->{unblessed}{b} = [];
45     $db->{unblessed}{b}[0] = 1;
46     $db->{unblessed}{b}[1] = 2;
47     $db->{unblessed}{b}[2] = 3;
48
49     is( $db->{unblessed}{a}, 1 );
50     is( $db->{unblessed}{b}[0], 1 );
51     is( $db->{unblessed}{b}[1], 2 );
52     is( $db->{unblessed}{b}[2], 3 );
53 }
54
55 {
56     my $db = DBM::Deep->new(
57         file     => $filename,
58         autobless => 1,
59     );
60
61     my $obj = $db->{blessed};
62     isa_ok( $obj, 'Foo' );
63     can_ok( $obj, 'export', 'foo' );
64     ok( !$obj->can( 'STORE' ), "... but it cannot 'STORE'" );
65
66     is( $obj->{a}, 1 );
67     is( $obj->{b}[0], 1 );
68     is( $obj->{b}[1], 2 );
69     is( $obj->{b}[2], 3 );
70
71     my $obj2 = $db->{blessed2};
72     isa_ok( $obj, 'Foo' );
73     can_ok( $obj, 'export', 'foo' );
74     ok( !$obj->can( 'STORE' ), "... but it cannot 'STORE'" );
75
76     is( $obj2->[0]{a}, 'foo' );
77     is( $obj2->[1], '2' );
78
79     is( $db->{unblessed}{a}, 1 );
80     is( $db->{unblessed}{b}[0], 1 );
81     is( $db->{unblessed}{b}[1], 2 );
82     is( $db->{unblessed}{b}[2], 3 );
83
84     $obj->{c} = 'new';
85     is( $db->{blessed}{c}, 'new' );
86 }
87
88 {
89     my $db = DBM::Deep->new(
90         file     => $filename,
91         autobless => 1,
92     );
93     is( $db->{blessed}{c}, 'new' );
94
95     my $structure = $db->export();
96     
97     my $obj = $structure->{blessed};
98     isa_ok( $obj, 'Foo' );
99     can_ok( $obj, 'export', 'foo' );
100     ok( !$obj->can( 'STORE' ), "... but it cannot 'STORE'" );
101
102     is( $obj->{a}, 1 );
103     is( $obj->{b}[0], 1 );
104     is( $obj->{b}[1], 2 );
105     is( $obj->{b}[2], 3 );
106
107     my $obj2 = $structure->{blessed2};
108     isa_ok( $obj, 'Foo' );
109     can_ok( $obj, 'export', 'foo' );
110     ok( !$obj->can( 'STORE' ), "... but it cannot 'STORE'" );
111
112     is( $obj2->[0]{a}, 'foo' );
113     is( $obj2->[1], '2' );
114
115     is( $structure->{unblessed}{a}, 1 );
116     is( $structure->{unblessed}{b}[0], 1 );
117     is( $structure->{unblessed}{b}[1], 2 );
118     is( $structure->{unblessed}{b}[2], 3 );
119 }
120
121 {
122     my $db = DBM::Deep->new(
123         file     => $filename,
124     );
125
126     my $obj = $db->{blessed};
127     isa_ok( $obj, 'DBM::Deep' );
128     can_ok( $obj, 'export', 'STORE' );
129     ok( !$obj->can( 'foo' ), "... but it cannot 'foo'" );
130
131     is( $obj->{a}, 1 );
132     is( $obj->{b}[0], 1 );
133     is( $obj->{b}[1], 2 );
134     is( $obj->{b}[2], 3 );
135
136     my $obj2 = $db->{blessed2};
137     isa_ok( $obj2, 'DBM::Deep' );
138     can_ok( $obj2, 'export', 'STORE' );
139     ok( !$obj2->can( 'foo' ), "... but it cannot 'foo'" );
140
141     is( $obj2->[0]{a}, 'foo' );
142     is( $obj2->[1], '2' );
143
144     is( $db->{unblessed}{a}, 1 );
145     is( $db->{unblessed}{b}[0], 1 );
146     is( $db->{unblessed}{b}[1], 2 );
147     is( $db->{unblessed}{b}[2], 3 );
148 }
149
150 my ($fh2, $filename2) = new_fh();
151 {
152     my $db = DBM::Deep->new(
153         file     => $filename2,
154         autobless => 1,
155     );
156     my $obj = bless {
157         a => 1,
158         b => [ 1 .. 3 ],
159     }, 'Foo';
160
161     $db->import( { blessed => $obj } );
162 }
163
164 {
165     my $db = DBM::Deep->new(
166         file     => $filename2,
167         autobless => 1,
168     );
169
170     my $blessed = $db->{blessed};
171     isa_ok( $blessed, 'Foo' );
172     is( $blessed->{a}, 1 );
173 }
174
175 {
176         ##
177         # test blessing hash into short named class (Foo), then re-blessing into
178         # longer named class (FooFoo) and replacing key in db file, then validating
179         # content after that point in file to check for corruption.
180         ##
181     my ($fh3, $filename3) = new_fh();
182     my $db = DBM::Deep->new(
183         file     => $filename3,
184         autobless => 1,
185     );
186
187     my $obj = bless {}, 'Foo';
188
189     $db->{blessed} = $obj;
190     $db->{after} = "hello";
191     
192     my $obj2 = bless {}, 'FooFoo';
193     
194     $db->{blessed} = $obj2;
195
196     is( $db->{after}, "hello" );
197 }