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