All tests pass except for the transaction tests under MySQL. InnoDB sucks
[dbsrgits/DBM-Deep.git] / t / 42_transaction_indexsector.t
1 use strict;
2 use warnings FATAL => 'all';
3
4 use Test::More;
5 use Test::Deep;
6 use t::common qw( new_dbm );
7
8 use_ok( 'DBM::Deep' );
9
10 # This testfile is in sections because the goal is to verify the behavior
11 # when a reindex occurs during an active transaction, both as a result of the
12 # transaction's actions as well as the result of the HEAD's actions. In order
13 # to keep this test quick, it's easier to restart and hit the known
14 # reindexing at 17 keys vs. attempting to hit the second-level reindex which
15 # can occur as early as 18 keys and as late as 4097 (256*16+1) keys.
16
17 if ( $ENV{NO_TEST_TRANSACTIONS} ) {
18     done_testing;
19     exit;
20 }
21
22 {
23     my $dbm_factory = new_dbm(
24         locking => 1,
25         autoflush => 1,
26         num_txns  => 16,
27     );
28     while ( my $dbm_maker = $dbm_factory->() ) {
29         my $db1 = $dbm_maker->();
30         my $db2 = $dbm_maker->();
31
32         $db1->{x} = 'y';
33         is( $db1->{x}, 'y', "Before transaction, DB1's X is Y" );
34         is( $db2->{x}, 'y', "Before transaction, DB2's X is Y" );
35
36         $db1->begin_work;
37
38             cmp_bag( [ keys %$db1 ], [qw( x )], "DB1 keys correct" );
39             cmp_bag( [ keys %$db2 ], [qw( x )], "DB2 keys correct" );
40
41             # Add enough keys to force a reindex
42             $db1->{"K$_"} = "V$_" for 1 .. 16;
43
44             cmp_bag( [ keys %$db1 ], ['x', (map { "K$_" } 1 .. 16)], "DB1 keys correct" );
45             cmp_bag( [ keys %$db2 ], [qw( x )], "DB2 keys correct" );
46
47         $db1->rollback;
48
49         cmp_bag( [ keys %$db1 ], [qw( x )], "DB1 keys correct" );
50         cmp_bag( [ keys %$db2 ], [qw( x )], "DB2 keys correct" );
51
52         ok( !exists $db1->{"K$_"}, "DB1: Key K$_ doesn't exist" ) for 1 .. 16;
53         ok( !exists $db2->{"K$_"}, "DB2: Key K$_ doesn't exist" ) for 1 .. 16;
54     }
55 }
56
57 {
58     my $dbm_factory = new_dbm(
59         locking => 1,
60         autoflush => 1,
61         num_txns  => 16,
62     );
63     while ( my $dbm_maker = $dbm_factory->() ) {
64         my $db1 = $dbm_maker->();
65         my $db2 = $dbm_maker->();
66
67         $db1->{x} = 'y';
68         is( $db1->{x}, 'y', "Before transaction, DB1's X is Y" );
69         is( $db2->{x}, 'y', "Before transaction, DB2's X is Y" );
70
71         $db1->begin_work;
72
73             cmp_bag( [ keys %$db1 ], [qw( x )], "DB1 keys correct" );
74             cmp_bag( [ keys %$db2 ], [qw( x )], "DB2 keys correct" );
75
76             # Add enough keys to force a reindex
77             $db1->{"K$_"} = "V$_" for 1 .. 16;
78
79             cmp_bag( [ keys %$db1 ], ['x', (map { "K$_" } 1 .. 16)], "DB1 keys correct" );
80             cmp_bag( [ keys %$db2 ], [qw( x )], "DB2 keys correct" );
81
82         $db1->commit;
83
84         cmp_bag( [ keys %$db1 ], ['x', (map { "K$_" } 1 .. 16)], "DB1 keys correct" );
85         cmp_bag( [ keys %$db2 ], ['x', (map { "K$_" } 1 .. 16)], "DB2 keys correct" );
86
87         ok( exists $db1->{"K$_"}, "DB1: Key K$_ doesn't exist" ) for 1 .. 16;
88         ok( exists $db2->{"K$_"}, "DB2: Key K$_ doesn't exist" ) for 1 .. 16;
89     }
90 }
91
92 done_testing;