Commit right before adding the keylist
[dbsrgits/DBM-Deep.git] / t / 02_hash.t
CommitLineData
ffed8b01 1##
2# DBM::Deep Test
3##
4use strict;
94e8af14 5use Test::More tests => 36;
ffed8b01 6use Test::Exception;
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 key
16##
17$db->{key1} = "value1";
18is( $db->get("key1"), "value1", "get() works with hash assignment" );
19is( $db->fetch("key1"), "value1", "... fetch() works with hash assignment" );
20is( $db->{key1}, "value1", "... and hash-access also works" );
21
22$db->put("key2", undef);
23is( $db->get("key2"), undef, "get() works with put()" );
24is( $db->fetch("key2"), undef, "... fetch() works with put()" );
25is( $db->{key2}, undef, "... and hash-access also works" );
26
27$db->store( "key3", "value3" );
28is( $db->get("key3"), "value3", "get() works with store()" );
29is( $db->fetch("key3"), "value3", "... fetch() works with put()" );
30is( $db->{key3}, 'value3', "... and hash-access also works" );
31
32ok( $db->exists("key1"), "exists() function works" );
33ok( exists $db->{key2}, "exists() works against tied hash" );
34
94e8af14 35ok( !exists $db->{key4}, "exists() function works for keys that aren't there" );
36is( $db->{key4}, undef, "Autovivified key4" );
37TODO: {
38 local $TODO = "Autovivification isn't correct yet";
39 ok( exists $db->{key4}, "Autovivified key4 now exists" );
40}
41delete $db->{key4};
42ok( !exists $db->{key4}, "And key4 doesn't exists anymore" );
43
ffed8b01 44##
45# count keys
46##
47is( scalar keys %$db, 3, "keys() works against tied hash" );
48
49##
50# step through keys
51##
52my $temphash = {};
53while ( my ($key, $value) = each %$db ) {
54 $temphash->{$key} = $value;
55}
56
57is( $temphash->{key1}, 'value1', "First key copied successfully using tied interface" );
58is( $temphash->{key2}, undef, "Second key copied successfully" );
59is( $temphash->{key3}, 'value3', "Third key copied successfully" );
60
61$temphash = {};
62my $key = $db->first_key();
63while ($key) {
64 $temphash->{$key} = $db->get($key);
65 $key = $db->next_key($key);
66}
67
68is( $temphash->{key1}, 'value1', "First key copied successfully using OO interface" );
69is( $temphash->{key2}, undef, "Second key copied successfully" );
70is( $temphash->{key3}, 'value3', "Third key copied successfully" );
71
72##
73# delete keys
74##
8db25060 75is( delete $db->{key2}, undef, "delete through tied inteface works" );
76is( $db->delete("key1"), 'value1', "delete through OO inteface works" );
77is( $db->{key3}, 'value3', "The other key is still there" );
ffed8b01 78
79is( scalar keys %$db, 1, "After deleting two keys, 1 remains" );
80
81##
82# delete all keys
83##
84ok( $db->clear(), "clear() returns true" );
85
86is( scalar keys %$db, 0, "After clear(), everything is removed" );
87
88##
89# replace key
90##
91$db->put("key1", "value1");
92is( $db->get("key1"), "value1", "Assignment still works" );
93
94$db->put("key1", "value2");
95is( $db->get("key1"), "value2", "... and replacement works" );
96
97$db->put("key1", "value222222222222222222222222");
98
99is( $db->get("key1"), "value222222222222222222222222", "We set a value before closing the file" );
100
101##
102# Make sure DB still works after closing / opening
103##
104undef $db;
2a81bf9e 105$db = DBM::Deep->new( $filename );
ffed8b01 106is( $db->get("key1"), "value222222222222222222222222", "The value we set is still there after closure" );
107
108##
109# Make sure keys are still fetchable after replacing values
110# with smaller ones (bug found by John Cardenas, DBM::Deep 0.93)
111##
112$db->clear();
113$db->put("key1", "long value here");
114$db->put("key2", "longer value here");
115
116$db->put("key1", "short value");
117$db->put("key2", "shorter v");
118
119my $first_key = $db->first_key();
120my $next_key = $db->next_key($first_key);
121
122ok(
123 (($first_key eq "key1") || ($first_key eq "key2")) &&
124 (($next_key eq "key1") || ($next_key eq "key2")) &&
125 ($first_key ne $next_key)
126 ,"keys() still works if you replace long values with shorter ones"
127);
4b603f25 128
129# Test autovivification
130
131$db->{unknown}{bar} = 1;
132ok( $db->{unknown} );
133cmp_ok( $db->{unknown}{bar}, '==', 1 );