11 my ($artist, @cd_titles) = @_;
13 $artist->create_related('cds', {
16 }) foreach (@cd_titles);
18 return $artist->cds->all;
21 # Test checking of parameters
23 my $schema = DBICTest->init_schema;
26 (ref $schema)->txn_do(sub{});
27 }, qr/storage/, "can't call txn_do without storage");
31 }, qr/must be a CODE reference/, '$coderef parameter check ok');
34 # Test successful txn_do() - scalar/list context
36 my $schema = DBICTest->init_schema;
38 is( $schema->storage->{transaction_depth}, 0, 'txn depth starts at 0');
40 my @titles = map {'txn_do test CD ' . $_} (1..5);
41 my $artist = $schema->resultset('Artist')->find(1);
42 my $count_before = $artist->cds->count;
46 @res = $schema->txn_do($code, $artist, @titles);
47 is(scalar @res, $count_before+5, 'successful txn added 5 cds');
50 $res[0] = $schema->txn_do($code, $artist, @titles);
51 is($res[0], $count_before+5, 'successful txn added 5 cds');
55 title => "txn_do test CD $_",
56 })->first->year, 2006, "new CD $_ year correct") for (1..5);
58 is( $schema->storage->{transaction_depth}, 0, 'txn depth has been reset');
61 # Test txn_do() @_ aliasing support
63 my $schema = DBICTest->init_schema;
66 $schema->storage->txn_do (sub { $_[0] = 'changed' }, $res);
67 is ($res, 'changed', "Arguments properly aliased for txn_do");
70 # Test nested successful txn_do()
72 my $schema = DBICTest->init_schema;
74 is( $schema->storage->{transaction_depth}, 0, 'txn depth starts at 0');
76 my $nested_code = sub {
77 my ($schema, $artist, $code) = @_;
79 my @titles1 = map {'nested txn_do test CD ' . $_} (1..5);
80 my @titles2 = map {'nested txn_do test CD ' . $_} (6..10);
82 $schema->txn_do($code, $artist, @titles1);
83 $schema->txn_do($code, $artist, @titles2);
86 my $artist = $schema->resultset('Artist')->find(2);
87 my $count_before = $artist->cds->count;
90 $schema->txn_do($nested_code, $schema, $artist, $code);
91 }, 'nested txn_do succeeded');
94 title => 'nested txn_do test CD '.$_,
95 })->first->year, 2006, qq{nested txn_do CD$_ year ok}) for (1..10);
96 is($artist->cds->count, $count_before+10, 'nested txn_do added all CDs');
98 is( $schema->storage->{transaction_depth}, 0, 'txn depth has been reset');
101 # test nested txn_begin on fresh connection
103 my $schema = DBICTest->init_schema(sqlite_use_file => 1, no_deploy => 1);
104 $schema->storage->ensure_connected;
106 is ($schema->storage->transaction_depth, 0, 'Start outside txn');
112 die "$$ starts in txn!" if $s->storage->transaction_depth != 0;
114 die "$$ not in txn!" if $s->storage->transaction_depth == 0;
115 $s->storage->dbh->do('SELECT 1') }
117 die "$$ did not finish txn!" if $s->storage->transaction_depth != 0;
121 $_[0]->storage->dbh->do('SELECT 1');
125 my $guard = $_[0]->txn_scope_guard;
126 $_[0]->storage->dbh->do('SELECT 1');
131 die "Unable to fork: $!\n"
143 is ($schema->storage->transaction_depth, 0, 'Parent still outside txn');
145 for my $pid (@pids) {
147 ok (! $?, "Child $pid exit ok");
151 # Test txn_do/scope_guard with forking: outer txn_do
153 my $schema = DBICTest->init_schema( sqlite_use_file => 1 );
155 for my $pass (1..2) {
157 # do something trying to destabilize the depth count
160 my $guard = $schema->txn_scope_guard;
161 $schema->txn_do( sub { die } );
163 $schema->txn_do( sub {
164 ok ($schema->storage->_dbh->do ('SELECT 1'), "Query after exceptions ok ($_)");
168 $schema->txn_do ( sub { _test_forking_action ($schema, $pass) } );
173 # same test with outer guard
175 my $schema = DBICTest->init_schema( sqlite_use_file => 1 );
177 for my $pass (1..2) {
179 # do something trying to destabilize the depth count
182 my $guard = $schema->txn_scope_guard;
183 $schema->txn_do( sub { die } );
185 $schema->txn_do( sub {
186 ok ($schema->storage->_dbh->do ('SELECT 1'), "Query after exceptions ok ($_)");
190 my $guard = $schema->txn_scope_guard;
191 my @pids = _test_forking_action ($schema, $pass);
196 sub _test_forking_action {
197 my ($schema, $pass) = @_;
201 SKIP: for my $count (1 .. 5) {
203 skip 'Weird DBI General Protection Faults, skip forking tests (RT#63104)', 5
207 die "Unable to fork: $!\n"
216 $schema->txn_do (sub {
217 my $depth = $schema->storage->transaction_depth;
218 die "$$(txn_do)unexpected txn depth $depth!" if $depth != 1;
219 $schema->resultset ('Artist')->create ({ name => "forking action $$"});
223 my $guard = $schema->txn_scope_guard;
224 my $depth = $schema->storage->transaction_depth;
225 die "$$(scope_guard) unexpected txn depth $depth!" if $depth != 1;
226 $schema->resultset ('Artist')->create ({ name => "forking action $$"});
233 for my $pid (@pids) {
235 ok (! $?, "Child $pid exit ok (pass $pass)");
238 # it is important to reap all children before checking the final db-state
239 # otherwise a deadlock may occur between the transactions running in the
240 # children and the query of the parent
241 for my $pid (@pids) {
242 isa_ok ($schema->resultset ('Artist')->find ({ name => "forking action $pid" }), 'DBIx::Class::Row');
246 my $fail_code = sub {
248 $artist->create_related('cds', {
249 title => 'this should not exist',
252 die "the sky is falling";
256 my $schema = DBICTest->init_schema;
258 # Test failed txn_do()
261 is( $schema->storage->{transaction_depth}, 0, "txn depth starts at 0 (pass $pass)");
263 my $artist = $schema->resultset('Artist')->find(3);
266 $schema->txn_do($fail_code, $artist);
267 }, qr/the sky is falling/, "failed txn_do threw an exception (pass $pass)");
269 my $cd = $artist->cds({
270 title => 'this should not exist',
273 ok(!defined($cd), qq{failed txn_do didn't change the cds table (pass $pass)});
275 is( $schema->storage->{transaction_depth}, 0, "txn depth has been reset (pass $pass)");
279 # Test failed txn_do() with failed rollback
281 is( $schema->storage->{transaction_depth}, 0, 'txn depth starts at 0');
283 my $artist = $schema->resultset('Artist')->find(3);
285 # Force txn_rollback() to throw an exception
286 no warnings 'redefine';
290 local *{"DBIx::Class::Storage::DBI::SQLite::txn_rollback"} = sub{
297 $schema->txn_do($fail_code, $artist);
299 qr/the sky is falling.+Rollback failed/s,
300 'txn_rollback threw a rollback exception (and included the original exception'
303 my $cd = $artist->cds({
304 title => 'this should not exist',
307 isa_ok($cd, 'DBICTest::CD', q{failed txn_do with a failed txn_rollback }.
308 q{changed the cds table});
309 $cd->delete; # Rollback failed
311 title => 'this should not exist',
314 ok(!defined($cd), q{deleted the failed txn's cd});
315 $schema->storage->_dbh->rollback;
319 # Test nested failed txn_do()
321 my $schema = DBICTest->init_schema();
323 is( $schema->storage->{transaction_depth}, 0, 'txn depth starts at 0');
325 my $nested_fail_code = sub {
326 my ($schema, $artist, $code1, $code2) = @_;
328 my @titles = map {'nested txn_do test CD ' . $_} (1..5);
330 $schema->txn_do($code1, $artist, @titles); # successful txn
331 $schema->txn_do($code2, $artist); # failed txn
334 my $artist = $schema->resultset('Artist')->find(3);
337 $schema->txn_do($nested_fail_code, $schema, $artist, $code, $fail_code);
338 }, qr/the sky is falling/, 'nested failed txn_do threw exception');
340 ok(!defined($artist->cds({
341 title => 'nested txn_do test CD '.$_,
343 })->first), qq{failed txn_do didn't add first txn's cd $_}) for (1..5);
344 my $cd = $artist->cds({
345 title => 'this should not exist',
348 ok(!defined($cd), q{failed txn_do didn't add failed txn's cd});
351 # Grab a new schema to test txn before connect
353 my $schema = DBICTest->init_schema(no_deploy => 1);
355 $schema->txn_begin();
356 $schema->txn_begin();
357 }, 'Pre-connection nested transactions.');
359 # although not connected DBI would still warn about rolling back at disconnect
360 $schema->txn_rollback;
361 $schema->txn_rollback;
364 # make sure AutoCommit => 0 on external handles behaves correctly with scope_guard
366 my $factory = DBICTest->init_schema;
367 cmp_ok ($factory->resultset('CD')->count, '>', 0, 'Something to delete');
368 my $dbh = $factory->storage->dbh;
369 $dbh->{AutoCommit} = 0;
371 ok (!$dbh->{AutoCommit}, 'AutoCommit is off on $dbh');
372 my $schema = DBICTest::Schema->connect (sub { $dbh });
375 my $guard = $schema->txn_scope_guard;
376 $schema->resultset('CD')->delete;
378 }, 'No attempt to start a transaction with scope guard');
380 is ($schema->resultset('CD')->count, 0, 'Deletion successful in txn');
382 # this will commit the implicitly started txn
385 } [], 'No warnings on AutoCommit => 0 with txn_guard';
387 # make sure AutoCommit => 0 on external handles behaves correctly with txn_do
389 my $factory = DBICTest->init_schema;
390 cmp_ok ($factory->resultset('CD')->count, '>', 0, 'Something to delete');
391 my $dbh = $factory->storage->dbh;
392 $dbh->{AutoCommit} = 0;
394 ok (!$dbh->{AutoCommit}, 'AutoCommit is off on $dbh');
395 my $schema = DBICTest::Schema->connect (sub { $dbh });
398 $schema->txn_do (sub { $schema->resultset ('CD')->delete });
399 }, 'No attempt to start a atransaction with txn_do');
401 is ($schema->resultset('CD')->count, 0, 'Deletion successful');
403 # this will commit the implicitly started txn
406 } [], 'No warnings on AutoCommit => 0 with txn_do';