Test::More 0.88 is required for done_testing
[dbsrgits/DBM-Deep.git] / t / 03_bighash.t
1 ##
2 # DBM::Deep Test
3 ##
4 use strict;
5 use Test::More;
6
7 plan skip_all => "You must set \$ENV{LONG_TESTS} to run the long tests"
8     unless $ENV{LONG_TESTS};
9
10 use Test::Deep;
11 use t::common qw( new_fh );
12
13 plan tests => 9;
14
15 use_ok( 'DBM::Deep' );
16
17 diag "This test can take up to a minute to run. Please be patient.";
18
19 my ($fh, $filename) = new_fh();
20 my $db = DBM::Deep->new(
21         file => $filename,
22         type => DBM::Deep->TYPE_HASH,
23 );
24
25 $db->{foo} = {};
26 my $foo = $db->{foo};
27
28 ##
29 # put/get many keys
30 ##
31 my $max_keys = 4000;
32
33 for ( 0 .. $max_keys ) {
34     $foo->put( "hello $_" => "there " . $_ * 2 );
35 }
36
37 my $count = -1;
38 for ( 0 .. $max_keys ) {
39     $count = $_;
40     unless ( $foo->get( "hello $_" ) eq "there " . $_ * 2 ) {
41         last;
42     };
43 }
44 is( $count, $max_keys, "We read $count keys" );
45
46 my @keys = sort keys %$foo;
47 cmp_ok( scalar(@keys), '==', $max_keys + 1, "Number of keys is correct" );
48 my @control =  sort map { "hello $_" } 0 .. $max_keys;
49 cmp_deeply( \@keys, \@control, "Correct keys are there" );
50
51 ok( !exists $foo->{does_not_exist}, "EXISTS works on large hashes for non-existent keys" );
52 is( $foo->{does_not_exist}, undef, "autovivification works on large hashes" );
53 ok( exists $foo->{does_not_exist}, "EXISTS works on large hashes for newly-existent keys" );
54 cmp_ok( scalar(keys %$foo), '==', $max_keys + 2, "Number of keys after autovivify is correct" );
55
56 $db->clear;
57 cmp_ok( scalar(keys %$db), '==', 0, "Number of keys after clear() is correct" );