From: Ash Berlin Date: Thu, 28 Feb 2008 19:33:59 +0000 (+0000) Subject: Todo tests for txn_rollback and scope_guard X-Git-Tag: v0.08010~1 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=3b7f3eac72dbf39bb9a616ae4884e51f6d872c26;hp=1bc193ac4c3bb934d1877e49bf7c465fc82815d6;p=dbsrgits%2FDBIx-Class.git Todo tests for txn_rollback and scope_guard --- diff --git a/Changes b/Changes index 1b5b144..624473b 100644 --- a/Changes +++ b/Changes @@ -1,8 +1,5 @@ Revision history for DBIx::Class - - Created Storage::TxnScopeGuard object and txn_scope_guard methods - on Schema and Storage as an alternative way of doing transactions - 0.08009 2008-01-20 13:30 - Made search_rs smarter about when to preserve the cache to fix mm prefetch usage diff --git a/lib/DBIx/Class/Storage.pm b/lib/DBIx/Class/Storage.pm index e298aa3..9cc3bbf 100644 --- a/lib/DBIx/Class/Storage.pm +++ b/lib/DBIx/Class/Storage.pm @@ -262,6 +262,8 @@ which allows the rollback to propagate to the outermost transaction. sub txn_rollback { die "Virtual method!" } +=for + =head2 txn_scope_guard Return an object that does stuff. diff --git a/lib/DBIx/Class/Storage/TxnScopeGuard.pm b/lib/DBIx/Class/Storage/TxnScopeGuard.pm index 04978f9..06c510c 100644 --- a/lib/DBIx/Class/Storage/TxnScopeGuard.pm +++ b/lib/DBIx/Class/Storage/TxnScopeGuard.pm @@ -20,7 +20,23 @@ sub commit { sub DESTROY { my ($dismiss, $storage) = @{$_[0]}; - $storage->txn_rollback unless $dismiss; + return if $dismiss; + + my $exception = $@; + + $DB::single = 1; + + local $@; + eval { $storage->txn_rollback }; + my $rollback_exception = $@; + if($rollback_exception) { + my $exception_class = "DBIx::Class::Storage::NESTED_ROLLBACK_EXCEPTION"; + + $storage->throw_exception( + "Transaction aborted: ${exception}. " + . "Rollback failed: ${rollback_exception}" + ) unless $rollback_exception =~ /$exception_class/; + } } 1; diff --git a/t/81transactions.t b/t/81transactions.t index b0054af..d263cd8 100644 --- a/t/81transactions.t +++ b/t/81transactions.t @@ -2,12 +2,13 @@ use strict; use warnings; use Test::More; +use Test::Exception; use lib qw(t/lib); use DBICTest; my $schema = DBICTest->init_schema(); -plan tests => 54; +plan tests => 67; my $code = sub { my ($artist, @cd_titles) = @_; @@ -236,3 +237,99 @@ my $fail_code = sub { 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(); + + 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; +} + +# 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"); + my $artist_rs = $schema->resultset('Artist'); + throws_ok { + my $guard = $schema->txn_scope_guard; + + + $artist_rs->create({ + name => 'Death Cab for Cutie', + made_up_column => 1, + }); + + $guard->commit; + } qr/No such column made_up_column.*?line 16/, "Error propogated okay"; + + ok(!$artist_rs->find({name => 'Death Cab for Cutie'}), "Artist not created"); + + my $inner_exception; + eval { + outer($schema, 1); + }; + is($@, $inner_exception, "Nested exceptions propogated"); + + 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"); + + 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 $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', + year => 2005, + $fatal ? ( foo => 'bar' ) : () + }); + }; + if ($@) { + # Record what got thrown so we can test it propgates out properly. + $inner_exception = $@; + die $@; + } + + # See what happens if we dont $guard->commit; + } +}