Removed last holdouts of t/test?.db
[dbsrgits/DBM-Deep.git] / t / 22_internal_copy.t
1 ##
2 # DBM::Deep Test
3 ##
4 use strict;
5 use Test::More tests => 13;
6 use File::Temp qw( tempfile tempdir );
7
8 use_ok( 'DBM::Deep' );
9
10 my $dir = tempdir( CLEANUP => 1 );
11 my ($fh, $filename) = tempfile( 'tmpXXXX', UNLINK => 1, DIR => $dir );
12 my $db = DBM::Deep->new( $filename );
13
14 ##
15 # Create structure in $db
16 ##
17 $db->import(
18         hash1 => {
19                 subkey1 => "subvalue1",
20                 subkey2 => "subvalue2",
21         },
22     hash2 => {
23         subkey3 => 'subvalue3',
24     },
25 );
26
27 is( $db->{hash1}{subkey1}, 'subvalue1', "Value imported correctly" );
28 is( $db->{hash1}{subkey2}, 'subvalue2', "Value imported correctly" );
29
30 $db->{copy} = $db->{hash1};
31
32 is( $db->{copy}{subkey1}, 'subvalue1', "Value copied correctly" );
33 is( $db->{copy}{subkey2}, 'subvalue2', "Value copied correctly" );
34
35 $db->{copy}{subkey1} = "another value";
36 is( $db->{copy}{subkey1}, 'another value', "New value is set correctly" );
37 is( $db->{hash1}{subkey1}, 'another value', "Old value is set to the new one" );
38
39 is( scalar(keys %{$db->{hash1}}), 2, "Start with 2 keys in the original" );
40 is( scalar(keys %{$db->{copy}}), 2, "Start with 2 keys in the copy" );
41
42 delete $db->{copy}{subkey2};
43
44 is( scalar(keys %{$db->{copy}}), 1, "Now only have 1 key in the copy" );
45 is( scalar(keys %{$db->{hash1}}), 1, "... and only 1 key in the original" );
46
47 $db->{copy} = $db->{hash2};
48 is( $db->{copy}{subkey3}, 'subvalue3', "After the second copy, we're still good" );
49
50 my $max_keys = 1000;
51
52 my ($fh2, $filename2) = tempfile( 'tmpXXXX', UNLINK => 1, DIR => $dir );
53 {
54     my $db = DBM::Deep->new( $filename2 );
55
56     $db->{foo} = [ 1 .. 3 ];
57     for ( 0 .. $max_keys ) {
58         $db->{'foo' . $_} = $db->{foo};
59     }
60 }
61
62 {
63     my $db = DBM::Deep->new( $filename2 );
64
65     my $base_offset = $db->{foo}->_base_offset;
66     my $count = -1;
67     for ( 0 .. $max_keys ) {
68         $count = $_;
69         unless ( $base_offset == $db->{'foo'.$_}->_base_offset ) {
70             last;
71         }
72     }
73     is( $count, $max_keys, "We read $count keys" );
74 }