Fixed useclass/requireclass bug in Test::Deep
[dbsrgits/DBM-Deep.git] / t / 28_transactions.t
CommitLineData
fee0243f 1use strict;
6677de37 2use Test::More tests => 29;
fee0243f 3use Test::Exception;
4use t::common qw( new_fh );
5
6use_ok( 'DBM::Deep' );
7
8my ($fh, $filename) = new_fh();
21838116 9my $db1 = DBM::Deep->new(
fee0243f 10 file => $filename,
21838116 11 locking => 1,
c9b6d0d8 12 autoflush => 1,
fee0243f 13);
14
21838116 15my $db2 = DBM::Deep->new(
16 file => $filename,
17 locking => 1,
c9b6d0d8 18 autoflush => 1,
21838116 19);
20
21$db1->{x} = 'y';
22is( $db1->{x}, 'y', "Before transaction, DB1's X is Y" );
23is( $db2->{x}, 'y', "Before transaction, DB2's X is Y" );
24
25$db1->begin_work;
26
27is( $db1->{x}, 'y', "DB1 transaction started, no actions - DB1's X is Y" );
28is( $db2->{x}, 'y', "DB1 transaction started, no actions - DB2's X is Y" );
29
30$db1->{x} = 'z';
31is( $db1->{x}, 'z', "Within DB1 transaction, DB1's X is Z" );
32is( $db2->{x}, 'y', "Within DB1 transaction, DB2's X is still Y" );
33
34$db2->{other_x} = 'foo';
c9b6d0d8 35is( $db2->{other_x}, 'foo', "DB2 set other_x within DB1's transaction, so DB2 can see it" );
21838116 36is( $db1->{other_x}, undef, "Since other_x was added after the transaction began, DB1 doesn't see it." );
37
38$db1->rollback;
39
40is( $db1->{x}, 'y', "After rollback, DB1's X is Y" );
41is( $db2->{x}, 'y', "After rollback, DB2's X is Y" );
42
43is( $db1->{other_x}, 'foo', "After DB1 transaction is over, DB1 can see other_x" );
44is( $db2->{other_x}, 'foo', "After DB1 transaction is over, DB2 can still see other_x" );
460b1067 45
6677de37 46$db1->begin_work;
47
48$db1->{x} = 'z';
49is( $db1->{x}, 'z', "Within DB1 transaction, DB1's X is Z" );
50is( $db2->{x}, 'y', "Within DB1 transaction, DB2's X is still Y" );
51
52$db1->commit;
53
54is( $db1->{x}, 'z', "After commit, DB1's X is Z" );
55is( $db2->{x}, 'z', "After commit, DB2's X is Z" );
56
57$db1->begin_work;
58
59delete $db2->{other_x};
60is( $db2->{other_x}, undef, "DB2 deleted other_x in DB1's transaction, so it can't see it anymore" );
61is( $db1->{other_x}, 'foo', "Since other_x was deleted after the transaction began, DB1 still sees it." );
62
63delete $db1->{x};
64is( $db1->{x}, undef, "DB1 deleted X in a transaction, so it can't see it anymore" );
65is( $db2->{x}, 'z', "But, DB2 can still see it" );
66
67$db1->rollback;
68
69is( $db2->{other_x}, undef, "It's still deleted for DB2" );
70is( $db1->{other_x}, undef, "And now DB1 sees the deletion" );
71
72is( $db1->{x}, 'z', "The transaction was rolled back, so DB1 can see X now" );
73is( $db2->{x}, 'z', "DB2 can still see it" );
74
75$db1->begin_work;
76
77delete $db1->{x};
78is( $db1->{x}, undef, "DB1 deleted X in a transaction, so it can't see it anymore" );
79is( $db2->{x}, 'z', "But, DB2 can still see it" );
80
81$db1->commit;
82
83is( $db1->{x}, undef, "The transaction was committed, so DB1 still deleted X" );
84is( $db2->{x}, undef, "DB2 can now see the deletion of X" );