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