Added supports() and rewrote the tests so that Engine::DBI doesn't run the transactio...
[dbsrgits/DBM-Deep.git] / t / 33_transactions.t
CommitLineData
fee0243f 1use strict;
0e3e3555 2use warnings FATAL => 'all';
3
4use Test::More;
42717e46 5use Test::Deep;
2120a181 6use Test::Exception;
0e3e3555 7use t::common qw( new_dbm );
fee0243f 8
9use_ok( 'DBM::Deep' );
10
0e3e3555 11my $dbm_factory = new_dbm(
21838116 12 locking => 1,
c9b6d0d8 13 autoflush => 1,
2120a181 14 num_txns => 16,
21838116 15);
0e3e3555 16while ( my $dbm_maker = $dbm_factory->() ) {
17 my $db1 = $dbm_maker->();
580e5ee2 18 next unless $db1->supports( 'transactions' );
19
0e3e3555 20 my $db2 = $dbm_maker->();
21838116 21
0e3e3555 22 $db1->{x} = 'y';
23 is( $db1->{x}, 'y', "Before transaction, DB1's X is Y" );
24 is( $db2->{x}, 'y', "Before transaction, DB2's X is Y" );
21838116 25
0e3e3555 26 cmp_bag( [ keys %$db1 ], [qw( x )], "DB1 keys correct" );
27 cmp_bag( [ keys %$db2 ], [qw( x )], "DB2 keys correct" );
2120a181 28
0e3e3555 29 throws_ok {
30 $db1->rollback;
31 } qr/Cannot rollback without an active transaction/, "Attempting to rollback without a transaction throws an error";
2120a181 32
0e3e3555 33 throws_ok {
34 $db1->commit;
35 } qr/Cannot commit without an active transaction/, "Attempting to commit without a transaction throws an error";
21838116 36
2120a181 37 $db1->begin_work;
2120a181 38
0e3e3555 39 throws_ok {
40 $db1->begin_work;
41 } qr/Cannot begin_work within an active transaction/, "Attempting to begin_work within a transaction throws an error";
2120a181 42
0e3e3555 43 lives_ok {
44 $db1->rollback;
45 } "Rolling back an empty transaction is ok.";
2120a181 46
47 cmp_bag( [ keys %$db1 ], [qw( x )], "DB1 keys correct" );
48 cmp_bag( [ keys %$db2 ], [qw( x )], "DB2 keys correct" );
49
0e3e3555 50 $db1->begin_work;
21838116 51
0e3e3555 52 lives_ok {
53 $db1->commit;
54 } "Committing an empty transaction is ok.";
2120a181 55
0e3e3555 56 cmp_bag( [ keys %$db1 ], [qw( x )], "DB1 keys correct" );
57 cmp_bag( [ keys %$db2 ], [qw( x )], "DB2 keys correct" );
2120a181 58
0e3e3555 59 $db1->begin_work;
21838116 60
0e3e3555 61 cmp_bag( [ keys %$db1 ], [qw( x )], "DB1 keys correct" );
62 cmp_bag( [ keys %$db2 ], [qw( x )], "DB2 keys correct" );
21838116 63
0e3e3555 64 is( $db1->{x}, 'y', "DB1 transaction started, no actions - DB1's X is Y" );
65 is( $db2->{x}, 'y', "DB1 transaction started, no actions - DB2's X is Y" );
2120a181 66
0e3e3555 67 $db2->{x} = 'a';
68 is( $db1->{x}, 'y', "Within DB1 transaction, DB1's X is still Y" );
69 is( $db2->{x}, 'a', "Within DB1 transaction, DB2's X is now A" );
42717e46 70
0e3e3555 71 $db1->{x} = 'z';
72 is( $db1->{x}, 'z', "Within DB1 transaction, DB1's X is Z" );
73 is( $db2->{x}, 'a', "Within DB1 transaction, DB2's X is still A" );
21838116 74
0e3e3555 75 $db1->{z} = 'a';
76 is( $db1->{z}, 'a', "Within DB1 transaction, DB1's Z is A" );
77 ok( !exists $db2->{z}, "Since z was added after the transaction began, DB2 doesn't see it." );
21838116 78
0e3e3555 79 $db2->{other_x} = 'foo';
80 is( $db2->{other_x}, 'foo', "DB2 set other_x within DB1's transaction, so DB2 can see it" );
81 ok( !exists $db1->{other_x}, "Since other_x was added after the transaction began, DB1 doesn't see it." );
460b1067 82
0e3e3555 83 # Reset to an expected value
84 $db2->{x} = 'y';
85 is( $db1->{x}, 'z', "Within DB1 transaction, DB1's X is istill Z" );
86 is( $db2->{x}, 'y', "Within DB1 transaction, DB2's X is now Y" );
6677de37 87
0e3e3555 88 cmp_bag( [ keys %$db1 ], [qw( x z )], "DB1 keys correct" );
89 cmp_bag( [ keys %$db2 ], [qw( x other_x )], "DB2 keys correct" );
2120a181 90
0e3e3555 91 $db1->rollback;
633df1fd 92
0e3e3555 93 is( $db1->{x}, 'y', "After rollback, DB1's X is Y" );
94 is( $db2->{x}, 'y', "After rollback, DB2's X is Y" );
6677de37 95
0e3e3555 96 is( $db1->{other_x}, 'foo', "After DB1 transaction is over, DB1 can see other_x" );
97 is( $db2->{other_x}, 'foo', "After DB1 transaction is over, DB2 can still see other_x" );
504185fb 98
0e3e3555 99 $db1->begin_work;
2120a181 100
0e3e3555 101 cmp_bag( [ keys %$db1 ], [qw( x other_x )], "DB1 keys correct" );
102 cmp_bag( [ keys %$db2 ], [qw( x other_x )], "DB2 keys correct" );
42717e46 103
0e3e3555 104 is( $db1->{x}, 'y', "DB1 transaction started, no actions - DB1's X is Y" );
105 is( $db2->{x}, 'y', "DB1 transaction started, no actions - DB2's X is Y" );
6677de37 106
0e3e3555 107 $db1->{x} = 'z';
108 is( $db1->{x}, 'z', "Within DB1 transaction, DB1's X is Z" );
109 is( $db2->{x}, 'y', "Within DB1 transaction, DB2's X is still Y" );
6677de37 110
0e3e3555 111 $db2->{other_x} = 'bar';
112 is( $db2->{other_x}, 'bar', "DB2 set other_x within DB1's transaction, so DB2 can see it" );
113 is( $db1->{other_x}, 'foo', "Since other_x was modified after the transaction began, DB1 doesn't see the change." );
2120a181 114
0e3e3555 115 $db1->{z} = 'a';
116 is( $db1->{z}, 'a', "Within DB1 transaction, DB1's Z is A" );
117 ok( !exists $db2->{z}, "Since z was added after the transaction began, DB2 doesn't see it." );
2120a181 118
0e3e3555 119 cmp_bag( [ keys %$db1 ], [qw( x other_x z )], "DB1 keys correct" );
120 cmp_bag( [ keys %$db2 ], [qw( x other_x )], "DB2 keys correct" );
6677de37 121
0e3e3555 122 $db1->commit;
2120a181 123
124 is( $db1->{x}, 'z', "After commit, DB1's X is Z" );
125 is( $db2->{x}, 'z', "After commit, DB2's X is Z" );
126
127 is( $db1->{z}, 'a', "After commit, DB1's Z is A" );
128 is( $db2->{z}, 'a', "After commit, DB2's Z is A" );
129
0e3e3555 130 is( $db1->{other_x}, 'bar', "After commit, DB1's other_x is bar" );
131 is( $db2->{other_x}, 'bar', "After commit, DB2's other_x is bar" );
132
133 $db1->begin_work;
2120a181 134
0e3e3555 135 cmp_bag( [ keys %$db1 ], [qw( x z other_x )], "DB1 keys correct" );
136 cmp_bag( [ keys %$db2 ], [qw( x z other_x )], "DB2 keys correct" );
6677de37 137
0e3e3555 138 is( $db1->{x}, 'z', "After commit, DB1's X is Z" );
139 is( $db2->{x}, 'z', "After commit, DB2's X is Z" );
42717e46 140
0e3e3555 141 is( $db1->{z}, 'a', "After commit, DB1's Z is A" );
142 is( $db2->{z}, 'a', "After commit, DB2's Z is A" );
94e8af14 143
0e3e3555 144 is( $db1->{other_x}, 'bar', "After begin_work, DB1's other_x is still bar" );
145 is( $db2->{other_x}, 'bar', "After begin_work, DB2's other_x is still bar" );
42717e46 146
0e3e3555 147 delete $db2->{other_x};
148 ok( !exists $db2->{other_x}, "DB2 deleted other_x in DB1's transaction, so it can't see it anymore" );
149 is( $db1->{other_x}, 'bar', "Since other_x was deleted after the transaction began, DB1 still sees it." );
6677de37 150
0e3e3555 151 cmp_bag( [ keys %$db1 ], [qw( x z other_x )], "DB1 keys correct" );
152 cmp_bag( [ keys %$db2 ], [qw( x z )], "DB2 keys correct" );
6677de37 153
0e3e3555 154 delete $db1->{x};
155 ok( !exists $db1->{x}, "DB1 deleted X in a transaction, so it can't see it anymore" );
156 is( $db2->{x}, 'z', "But, DB2 can still see it" );
6677de37 157
0e3e3555 158 cmp_bag( [ keys %$db1 ], [qw( other_x z )], "DB1 keys correct" );
159 cmp_bag( [ keys %$db2 ], [qw( x z )], "DB2 keys correct" );
42717e46 160
0e3e3555 161 $db1->rollback;
6677de37 162
0e3e3555 163 ok( !exists $db2->{other_x}, "It's still deleted for DB2" );
164 ok( !exists $db1->{other_x}, "And now DB1 sees the deletion" );
2120a181 165
0e3e3555 166 is( $db1->{x}, 'z', "The transaction was rolled back, so DB1 can see X now" );
167 is( $db2->{x}, 'z', "DB2 can still see it" );
6677de37 168
0e3e3555 169 cmp_bag( [ keys %$db1 ], [qw( x z )], "DB1 keys correct" );
2120a181 170 cmp_bag( [ keys %$db2 ], [qw( x z )], "DB2 keys correct" );
42717e46 171
0e3e3555 172 $db1->begin_work;
94e8af14 173
0e3e3555 174 delete $db1->{x};
175 ok( !exists $db1->{x}, "DB1 deleted X in a transaction, so it can't see it anymore" );
94e8af14 176
0e3e3555 177 is( $db2->{x}, 'z', "But, DB2 can still see it" );
42717e46 178
0e3e3555 179 cmp_bag( [ keys %$db1 ], [qw( z )], "DB1 keys correct" );
180 cmp_bag( [ keys %$db2 ], [qw( x z )], "DB2 keys correct" );
94e8af14 181
0e3e3555 182 $db1->commit;
94e8af14 183
0e3e3555 184 ok( !exists $db1->{x}, "The transaction was committed, so DB1 still deleted X" );
185 ok( !exists $db2->{x}, "DB2 can now see the deletion of X" );
42717e46 186
0e3e3555 187 $db1->{foo} = 'bar';
188 is( $db1->{foo}, 'bar', "Set foo to bar in DB1" );
189 is( $db2->{foo}, 'bar', "Set foo to bar in DB2" );
94e8af14 190
0e3e3555 191 cmp_bag( [ keys %$db1 ], [qw( foo z )], "DB1 keys correct" );
192 cmp_bag( [ keys %$db2 ], [qw( foo z )], "DB2 keys correct" );
42717e46 193
0e3e3555 194 $db1->begin_work;
42717e46 195
0e3e3555 196 %$db1 = (); # clear()
197 ok( !exists $db1->{foo}, "Cleared foo" );
198 is( $db2->{foo}, 'bar', "But in DB2, we can still see it" );
f9a320bb 199
0e3e3555 200 cmp_bag( [ keys %$db1 ], [qw()], "DB1 keys correct" );
201 cmp_bag( [ keys %$db2 ], [qw( foo z )], "DB2 keys correct" );
42717e46 202
0e3e3555 203 $db1->rollback;
42717e46 204
0e3e3555 205 is( $db1->{foo}, 'bar', "Rollback means 'foo' is still there" );
206 is( $db2->{foo}, 'bar', "Rollback means 'foo' is still there" );
2120a181 207
208 cmp_bag( [ keys %$db1 ], [qw( foo z )], "DB1 keys correct" );
209 cmp_bag( [ keys %$db2 ], [qw( foo z )], "DB2 keys correct" );
42717e46 210
0e3e3555 211 SKIP: {
212 skip "Optimize tests skipped on Win32", 7
213 if $^O eq 'MSWin32' || $^O eq 'cygwin';
42717e46 214
0e3e3555 215 $db1->optimize;
13ff93d5 216
0e3e3555 217 is( $db1->{foo}, 'bar', 'After optimize, everything is ok' );
218 is( $db2->{foo}, 'bar', 'After optimize, everything is ok' );
219
220 is( $db1->{z}, 'a', 'After optimize, everything is ok' );
221 is( $db2->{z}, 'a', 'After optimize, everything is ok' );
222
223 cmp_bag( [ keys %$db1 ], [qw( foo z )], "DB1 keys correct" );
224 cmp_bag( [ keys %$db2 ], [qw( foo z )], "DB2 keys correct" );
225
226 $db1->begin_work;
227
228 cmp_ok( $db1->_engine->trans_id, '==', 1, "Transaction ID has been reset after optimize" );
229
230 $db1->rollback;
231 }
13ff93d5 232}
42717e46 233
0e3e3555 234done_testing;