X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F81transactions.t;h=32d5f17ec9a96cb0cf3234e65caea5376142a3b5;hb=bfa46eb523fff8ece9b37a48d17b90510f1c8c52;hp=7d30b5c95cfb8f0f0d5b69fdb40b992ccc2b9e9d;hpb=a211cb63c765b996706779e04685f982c4c5eb81;p=dbsrgits%2FDBIx-Class.git diff --git a/t/81transactions.t b/t/81transactions.t index 7d30b5c..32d5f17 100644 --- a/t/81transactions.t +++ b/t/81transactions.t @@ -8,7 +8,7 @@ use DBICTest; my $schema = DBICTest->init_schema(); -plan tests => 63; +plan tests => 64; my $code = sub { my ($artist, @cd_titles) = @_; @@ -235,7 +235,11 @@ my $fail_code = sub { $schema2->txn_begin(); }; my $err = $@; - ok(($err eq ''), 'Pre-connection nested transactions.'); + ok(! $err, 'Pre-connection nested transactions.'); + + # although not connected DBI would still warn about rolling back at disconnect + $schema2->txn_rollback; + $schema2->txn_rollback; $schema2->storage->disconnect; } $schema->storage->disconnect; @@ -256,7 +260,7 @@ $schema->storage->disconnect; }); $guard->commit; - } qr/No such column made_up_column .*? at .*?81transactions.t line \d+/, "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"); @@ -268,36 +272,36 @@ $schema->storage->disconnect; ok(!$artist_rs->find({name => 'Death Cab for Cutie'}), "Artist not created"); + lives_ok (sub { + my $w; + local $SIG{__WARN__} = sub { $w = shift }; - eval { - # The 0 arg says done die, just let the scope guard go out of scope + # 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); - }; - 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"); + like ($w, qr/A DBIx::Class::Storage::TxnScopeGuard went out of scope without explicit commit or an error/, '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', @@ -311,6 +315,7 @@ $schema->storage->disconnect; die $@; } - # See what happens if we dont $guard->commit; + # inner guard should commit without consequences + $inner_guard->commit; } }