The header now has its own sector. A lot needs to be moved over to it, but it's there.
[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
00d9bd0b 33warn localtime(time) . ": before put\n";
ffed8b01 34for ( 0 .. $max_keys ) {
2120a181 35 $foo->put( "hello $_" => "there " . $_ * 2 );
ffed8b01 36}
00d9bd0b 37warn localtime(time) . ": after put\n";
ffed8b01 38
30029562 39my $count = -1;
ffed8b01 40for ( 0 .. $max_keys ) {
30029562 41 $count = $_;
2120a181 42 unless ( $foo->get( "hello $_" ) eq "there " . $_ * 2 ) {
30029562 43 last;
44 };
ffed8b01 45}
30029562 46is( $count, $max_keys, "We read $count keys" );
00d9bd0b 47warn localtime(time) . ": after read\n";
bee3661a 48
2120a181 49my @keys = sort keys %$foo;
00d9bd0b 50warn localtime(time) . ": after keys\n";
86867f3a 51cmp_ok( scalar(@keys), '==', $max_keys + 1, "Number of keys is correct" );
52my @control = sort map { "hello $_" } 0 .. $max_keys;
53cmp_deeply( \@keys, \@control, "Correct keys are there" );
54
2120a181 55ok( !exists $foo->{does_not_exist}, "EXISTS works on large hashes for non-existent keys" );
56is( $foo->{does_not_exist}, undef, "autovivification works on large hashes" );
57ok( exists $foo->{does_not_exist}, "EXISTS works on large hashes for newly-existent keys" );
58cmp_ok( scalar(keys %$foo), '==', $max_keys + 2, "Number of keys after autovivify is correct" );
59
00d9bd0b 60warn localtime(time) . ": before clear\n";
bee3661a 61$db->clear;
00d9bd0b 62warn localtime(time) . ": after clear\n";
bee3661a 63cmp_ok( scalar(keys %$db), '==', 0, "Number of keys after clear() is correct" );