X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F81transactions.t;h=c1300de1a8e54e04eea06c73ac50d9b2d5982547;hb=d69a17c81a0a89a7e459eceef82a625bc5443bc0;hp=d263cd85a2ab55dd045b421c2bf03d36dafd2b82;hpb=3b7f3eac72dbf39bb9a616ae4884e51f6d872c26;p=dbsrgits%2FDBIx-Class-Historic.git diff --git a/t/81transactions.t b/t/81transactions.t index d263cd8..c1300de 100644 --- a/t/81transactions.t +++ b/t/81transactions.t @@ -1,23 +1,22 @@ use strict; -use warnings; +use warnings; use Test::More; +use Test::Warn; use Test::Exception; use lib qw(t/lib); use DBICTest; my $schema = DBICTest->init_schema(); -plan tests => 67; - my $code = sub { my ($artist, @cd_titles) = @_; - + $artist->create_related('cds', { title => $_, year => 2006, }) foreach (@cd_titles); - + return $artist->cds->all; }; @@ -235,33 +234,17 @@ my $fail_code = sub { $schema2->txn_begin(); }; my $err = $@; - ok(($err eq ''), 'Pre-connection nested transactions.'); -} - -# Test txn_rollback with nested -{ - local $TODO = "Work out how this should work"; - my $local_schema = DBICTest->init_schema(); + ok(! $err, 'Pre-connection nested transactions.'); - my $artist_rs = $local_schema->resultset('Artist'); - throws_ok { - - $local_schema->txn_begin; - $artist_rs->create({ name => 'Test artist rollback 1'}); - $local_schema->txn_begin; - is($local_schema->storage->transaction_depth, 2, "Correct transaction depth"); - $artist_rs->create({ name => 'Test artist rollback 2'}); - $local_schema->txn_rollback; - } qr/Not sure what this should be.... something tho/, "Rolled back okay"; - is($local_schema->storage->transaction_depth, 0, "Correct transaction depth"); - - ok(!$artist_rs->find({ name => 'Test artist rollback 1'}), "Test Artist not created") - || $artist_rs->find({ name => 'Test artist rollback 1'})->delete; + # although not connected DBI would still warn about rolling back at disconnect + $schema2->txn_rollback; + $schema2->txn_rollback; + $schema2->storage->disconnect; } +$schema->storage->disconnect; # Test txn_scope_guard { - local $TODO = "Work out how this should work"; my $schema = DBICTest->init_schema(); is($schema->storage->transaction_depth, 0, "Correct transaction depth"); @@ -274,13 +257,13 @@ my $fail_code = sub { name => 'Death Cab for Cutie', made_up_column => 1, }); - + $guard->commit; - } qr/No such column made_up_column.*?line 16/, "Error propogated okay"; + } qr/No such column made_up_column .*? at .*?81transactions.t line \d+/s, "Error propogated okay"; ok(!$artist_rs->find({name => 'Death Cab for Cutie'}), "Artist not created"); - my $inner_exception; + my $inner_exception; # set in inner() below eval { outer($schema, 1); }; @@ -288,35 +271,33 @@ my $fail_code = sub { ok(!$artist_rs->find({name => 'Death Cab for Cutie'}), "Artist not created"); - - eval { - # The 0 arg says done die, just let the scope guard go out of scope - # forcing a txn_rollback to happen - outer($schema, 0); - }; - is($@, "Not sure what we want here, but something", "Rollback okay"); - - ok(!$artist_rs->find({name => 'Death Cab for Cutie'}), "Artist not created"); + lives_ok (sub { + warnings_exist ( sub { + # The 0 arg says don't die, just let the scope guard go out of scope + # forcing a txn_rollback to happen + outer($schema, 0); + }, qr/A DBIx::Class::Storage::TxnScopeGuard went out of scope without explicit commit or error. Rolling back./, 'Out of scope warning detected'); + ok(!$artist_rs->find({name => 'Death Cab for Cutie'}), "Artist not created"); + }, 'rollback successful withot exception'); sub outer { my ($schema) = @_; - + my $guard = $schema->txn_scope_guard; $schema->resultset('Artist')->create({ name => 'Death Cab for Cutie', }); inner(@_); - $guard->commit; } sub inner { my ($schema, $fatal) = @_; - my $guard = $schema->txn_scope_guard; + + my $inner_guard = $schema->txn_scope_guard; + is($schema->storage->transaction_depth, 2, "Correct transaction depth"); my $artist = $artist_rs->find({ name => 'Death Cab for Cutie' }); - is($schema->storage->transaction_depth, 2, "Correct transaction depth"); - undef $@; eval { $artist->cds->create({ title => 'Plans', @@ -330,6 +311,67 @@ my $fail_code = sub { die $@; } - # See what happens if we dont $guard->commit; + # inner guard should commit without consequences + $inner_guard->commit; } } + +# make sure the guard does not eat exceptions +{ + my $schema = DBICTest->init_schema(); + throws_ok (sub { + my $guard = $schema->txn_scope_guard; + $schema->resultset ('Artist')->create ({ name => 'bohhoo'}); + + $schema->storage->disconnect; # this should freak out the guard rollback + + die 'Deliberate exception'; + }, qr/Deliberate exception.+Rollback failed/s); +} + +# make sure it warns *big* on failed rollbacks +{ + my $schema = DBICTest->init_schema(); + + # something is really confusing Test::Warn here, no time to debug +=begin + warnings_exist ( + sub { + my $guard = $schema->txn_scope_guard; + $schema->resultset ('Artist')->create ({ name => 'bohhoo'}); + + $schema->storage->disconnect; # this should freak out the guard rollback + }, + [ + qr/A DBIx::Class::Storage::TxnScopeGuard went out of scope without explicit commit or error. Rolling back./, + qr/\*+ ROLLBACK FAILED\!\!\! \*+/, + ], + 'proper warnings generated on out-of-scope+rollback failure' + ); +=cut + + my @want = ( + qr/A DBIx::Class::Storage::TxnScopeGuard went out of scope without explicit commit or error. Rolling back./, + qr/\*+ ROLLBACK FAILED\!\!\! \*+/, + ); + + my @w; + local $SIG{__WARN__} = sub { + if (grep {$_[0] =~ $_} (@want)) { + push @w, $_[0]; + } + else { + warn $_[0]; + } + }; + { + my $guard = $schema->txn_scope_guard; + $schema->resultset ('Artist')->create ({ name => 'bohhoo'}); + + $schema->storage->disconnect; # this should freak out the guard rollback + } + + is (@w, 2, 'Both expected warnings found'); +} + +done_testing;