Added a few more edge case tests re: when the fh is open and what functions are expecting
[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
10use Test::More no_plan => 1;
11
12use_ok( 'DBM::Deep' );
13
14unlink 't/test.db';
15my $db = DBM::Deep->new(
16 file => "t/test.db",
17 autobless => 1,
18);
19if ($db->error()) {
20 die "ERROR: " . $db->error();
21}
22
23my $obj = bless {
24 a => 1,
25 b => [ 1 .. 3 ],
26}, 'Foo';
27
28$db->{blessed} = $obj;
29
30$db->{unblessed} = {};
31$db->{unblessed}{a} = 1;
32$db->{unblessed}{b} = [];
33$db->{unblessed}{b}[0] = 1;
34$db->{unblessed}{b}[1] = 2;
35$db->{unblessed}{b}[2] = 3;
36
37undef $db;
38
39my $db2 = DBM::Deep->new(
40 file => 't/test.db',
41 autoflush => 1,
42 autobless => 1,
43);
44if ($db2->error()) {
45 die "ERROR: " . $db2->error();
46}
47
48my $obj2 = $db2->{blessed};
49isa_ok( $obj2, 'Foo' );
50can_ok( $obj2, 'export', 'foo' );
51ok( !$obj2->can( 'STORE' ), "... but it cannot 'STORE'" );
52
53is( $obj2->{a}, 1 );
54is( $obj2->{b}[0], 1 );
55is( $obj2->{b}[1], 2 );
56is( $obj2->{b}[2], 3 );
57
58is( $db2->{unblessed}{a}, 1 );
59is( $db2->{unblessed}{b}[0], 1 );
60is( $db2->{unblessed}{b}[1], 2 );
61is( $db2->{unblessed}{b}[2], 3 );
62
63my $db3 = DBM::Deep->new(
64 file => 't/test.db',
65 autoflush => 1,
66# autobless => 0,
67);
68if ($db3->error()) {
69 die "ERROR: " . $db3->error();
70}
71
72my $obj3 = $db3->{blessed};
73isa_ok( $obj3, 'DBM::Deep' );
74can_ok( $obj3, 'export', 'STORE' );
75ok( !$obj3->can( 'foo' ), "... but it cannot 'foo'" );
76
77is( $obj3->{a}, 1 );
78is( $obj3->{b}[0], 1 );
79is( $obj3->{b}[1], 2 );
80is( $obj3->{b}[2], 3 );
81
82is( $db3->{unblessed}{a}, 1 );
83is( $db3->{unblessed}{b}[0], 1 );
84is( $db3->{unblessed}{b}[1], 2 );
85is( $db3->{unblessed}{b}[2], 3 );