X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F81transactions.t;h=7d30b5c95cfb8f0f0d5b69fdb40b992ccc2b9e9d;hb=a211cb63c765b996706779e04685f982c4c5eb81;hp=b0054afc5ca2dc2aad9894770e62ce514f0256bf;hpb=57c18b65cf1c7d708efd3717f54fbbc3def07794;p=dbsrgits%2FDBIx-Class.git diff --git a/t/81transactions.t b/t/81transactions.t index b0054af..7d30b5c 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 => 63; my $code = sub { my ($artist, @cd_titles) = @_; @@ -235,4 +236,81 @@ my $fail_code = sub { }; my $err = $@; ok(($err eq ''), 'Pre-connection nested transactions.'); + $schema2->storage->disconnect; +} +$schema->storage->disconnect; + +# Test txn_scope_guard +{ + 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 .*? at .*?81transactions.t line \d+/, "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); + }; + local $TODO = "Work out how this should work"; + 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; + } }