r6127@000-443-371 (orig r9960): rkinyon | 2007-09-20 21:13:08 -0400
[dbsrgits/DBM-Deep.git] / t / 16_circular.t
CommitLineData
ffed8b01 1##
2# DBM::Deep Test
3##
4use strict;
2120a181 5use Test::More skip_all => "Internal references are not supported right now";
6#use Test::More tests => 32;
fde3db1a 7use t::common qw( new_fh );
ffed8b01 8
9use_ok( 'DBM::Deep' );
10
fde3db1a 11my ($fh, $filename) = new_fh();
2a81bf9e 12my $db = DBM::Deep->new( $filename );
ffed8b01 13
14##
15# put/get simple keys
16##
17$db->{key1} = "value1";
18$db->{key2} = "value2";
19
1df992b3 20my @keys_1 = sort keys %$db;
21
22$db->{key3} = $db->{key1};
23
24my @keys_2 = sort keys %$db;
25is( @keys_2 + 0, @keys_1 + 1, "Correct number of keys" );
26is_deeply(
27 [ @keys_1, 'key3' ],
28 [ @keys_2 ],
29 "Keys still match after circular reference is added",
30);
31
8db25060 32$db->{key4} = { 'foo' => 'bar' };
75be6413 33$db->{key5} = $db->{key4};
8db25060 34$db->{key6} = $db->{key5};
1df992b3 35
36my @keys_3 = sort keys %$db;
1df992b3 37
8db25060 38is( @keys_3 + 0, @keys_2 + 3, "Correct number of keys" );
39is_deeply(
40 [ @keys_2, 'key4', 'key5', 'key6', ],
41 [ @keys_3 ],
42 "Keys still match after circular reference is added (@keys_3)",
43);
44
45##
46# Insert circular reference
47##
48$db->{circle} = $db;
49
50my @keys_4 = sort keys %$db;
51
52is( @keys_4 + 0, @keys_3 + 1, "Correct number of keys" );
53is_deeply(
54 [ 'circle', @keys_3 ],
55 [ @keys_4 ],
56 "Keys still match after circular reference is added",
57);
1df992b3 58
ffed8b01 59##
60# Make sure keys exist in both places
61##
62is( $db->{key1}, 'value1', "The value is there directly" );
63is( $db->{circle}{key1}, 'value1', "The value is there in one loop of the circle" );
64is( $db->{circle}{circle}{key1}, 'value1', "The value is there in two loops of the circle" );
65is( $db->{circle}{circle}{circle}{key1}, 'value1', "The value is there in three loops of the circle" );
66
67##
68# Make sure changes are reflected in both places
69##
70$db->{key1} = "another value";
71
eea0d863 72isnt( $db->{key3}, 'another value', "Simple scalars are copied by value" );
73
ffed8b01 74is( $db->{key1}, 'another value', "The value is there directly" );
75is( $db->{circle}{key1}, 'another value', "The value is there in one loop of the circle" );
76is( $db->{circle}{circle}{key1}, 'another value', "The value is there in two loops of the circle" );
77is( $db->{circle}{circle}{circle}{key1}, 'another value', "The value is there in three loops of the circle" );
78
79$db->{circle}{circle}{circle}{circle}{key1} = "circles";
80
81is( $db->{key1}, 'circles', "The value is there directly" );
82is( $db->{circle}{key1}, 'circles', "The value is there in one loop of the circle" );
83is( $db->{circle}{circle}{key1}, 'circles', "The value is there in two loops of the circle" );
84is( $db->{circle}{circle}{circle}{key1}, 'circles', "The value is there in three loops of the circle" );
8db25060 85
86is( $db->{key4}{foo}, 'bar' );
87is( $db->{key5}{foo}, 'bar' );
88is( $db->{key6}{foo}, 'bar' );
89
90$db->{key4}{foo2} = 'bar2';
91is( $db->{key4}{foo2}, 'bar2' );
92is( $db->{key5}{foo2}, 'bar2' );
93is( $db->{key6}{foo2}, 'bar2' );
94
95$db->{key4}{foo3} = 'bar3';
96is( $db->{key4}{foo3}, 'bar3' );
97is( $db->{key5}{foo3}, 'bar3' );
98is( $db->{key6}{foo3}, 'bar3' );
99
100$db->{key4}{foo4} = 'bar4';
101is( $db->{key4}{foo4}, 'bar4' );
102is( $db->{key5}{foo4}, 'bar4' );
103is( $db->{key6}{foo4}, 'bar4' );
104