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
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 warn localtime(time) . ": before put\n";
34 for ( 0 .. $max_keys ) {
35     $foo->put( "hello $_" => "there " . $_ * 2 );
36 }
37 warn localtime(time) . ": after put\n";
38
39 my $count = -1;
40 for ( 0 .. $max_keys ) {
41     $count = $_;
42     unless ( $foo->get( "hello $_" ) eq "there " . $_ * 2 ) {
43         last;
44     };
45 }
46 is( $count, $max_keys, "We read $count keys" );
47 warn localtime(time) . ": after read\n";
48
49 my @keys = sort keys %$foo;
50 warn localtime(time) . ": after keys\n";
51 cmp_ok( scalar(@keys), '==', $max_keys + 1, "Number of keys is correct" );
52 my @control =  sort map { "hello $_" } 0 .. $max_keys;
53 cmp_deeply( \@keys, \@control, "Correct keys are there" );
54
55 ok( !exists $foo->{does_not_exist}, "EXISTS works on large hashes for non-existent keys" );
56 is( $foo->{does_not_exist}, undef, "autovivification works on large hashes" );
57 ok( exists $foo->{does_not_exist}, "EXISTS works on large hashes for newly-existent keys" );
58 cmp_ok( scalar(keys %$foo), '==', $max_keys + 2, "Number of keys after autovivify is correct" );
59
60 warn localtime(time) . ": before clear\n";
61 $db->clear;
62 warn localtime(time) . ": after clear\n";
63 cmp_ok( scalar(keys %$db), '==', 0, "Number of keys after clear() is correct" );