Further changes
[dbsrgits/DBM-Deep.git] / t / 09_deeparray.t
CommitLineData
ffed8b01 1##
2# DBM::Deep Test
3##
995d119b 4$|++;
ffed8b01 5use strict;
6use Test::More;
7
8my $max_levels = 1000;
9
995d119b 10plan tests => 3;
ffed8b01 11
12use_ok( 'DBM::Deep' );
13
14unlink "t/test.db";
15my $db = DBM::Deep->new(
16 file => "t/test.db",
17 type => DBM::Deep->TYPE_ARRAY,
18);
19if ($db->error()) {
20 die "ERROR: " . $db->error();
21}
22
23$db->[0] = [];
24my $temp_db = $db->[0];
25for my $k ( 0 .. $max_levels ) {
26 $temp_db->[$k] = [];
27 $temp_db = $temp_db->[$k];
28}
29$temp_db->[0] = "deepvalue";
30undef $temp_db;
31
32undef $db;
33$db = DBM::Deep->new(
34 file => "t/test.db",
35 type => DBM::Deep->TYPE_ARRAY,
36);
37
995d119b 38my $cur_level = -1;
ffed8b01 39$temp_db = $db->[0];
40for my $k ( 0 .. $max_levels ) {
995d119b 41 $cur_level = $k;
ffed8b01 42 $temp_db = $temp_db->[$k];
995d119b 43 eval { $temp_db->isa( 'DBM::Deep' ) } or last;
ffed8b01 44}
995d119b 45is( $cur_level, $max_levels, "We read all the way down to level $cur_level" );
ffed8b01 46is( $temp_db->[0], "deepvalue", "And we retrieved the value at the bottom of the ocean" );