[Bast-commits] r4436 - in DBIx-Class/0.08/trunk:
lib/DBIx/Class/Storage t
ash at dev.catalyst.perl.org
ash at dev.catalyst.perl.org
Fri May 30 16:13:36 BST 2008
Author: ash
Date: 2008-05-30 16:13:36 +0100 (Fri, 30 May 2008)
New Revision: 4436
Modified:
DBIx-Class/0.08/trunk/lib/DBIx/Class/Storage/TxnScopeGuard.pm
DBIx-Class/0.08/trunk/t/81transactions.t
Log:
Tidy up TxnScopeGuard and its tests a bit
Modified: DBIx-Class/0.08/trunk/lib/DBIx/Class/Storage/TxnScopeGuard.pm
===================================================================
--- DBIx-Class/0.08/trunk/lib/DBIx/Class/Storage/TxnScopeGuard.pm 2008-05-30 14:40:31 UTC (rev 4435)
+++ DBIx-Class/0.08/trunk/lib/DBIx/Class/Storage/TxnScopeGuard.pm 2008-05-30 15:13:36 UTC (rev 4436)
@@ -18,25 +18,32 @@
$self->[0] = 1;
}
+sub dismiss {
+ my $self = shift;
+
+ $self->[0] = 1;
+}
+
sub DESTROY {
my ($dismiss, $storage) = @{$_[0]};
return if $dismiss;
my $exception = $@;
+ Carp::cluck("A DBIx::Class:: went out of scope without explicit commit/dismiss")
+ unless $exception;
+ {
+ local $@;
+ eval { $storage->txn_rollback };
+ my $rollback_exception = $@;
+ if($rollback_exception) {
+ my $exception_class = "DBIx::Class::Storage::NESTED_ROLLBACK_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/;
+ $storage->throw_exception(
+ "Transaction aborted: ${exception}. "
+ . "Rollback failed: ${rollback_exception}"
+ ) unless $rollback_exception =~ /$exception_class/;
+ }
}
}
Modified: DBIx-Class/0.08/trunk/t/81transactions.t
===================================================================
--- DBIx-Class/0.08/trunk/t/81transactions.t 2008-05-30 14:40:31 UTC (rev 4435)
+++ DBIx-Class/0.08/trunk/t/81transactions.t 2008-05-30 15:13:36 UTC (rev 4436)
@@ -8,7 +8,7 @@
my $schema = DBICTest->init_schema();
-plan tests => 67;
+plan tests => 63;
my $code = sub {
my ($artist, @cd_titles) = @_;
@@ -238,30 +238,8 @@
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");
@@ -276,7 +254,7 @@
});
$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+/, "Error propogated okay";
ok(!$artist_rs->find({name => 'Death Cab for Cutie'}), "Artist not created");
@@ -294,6 +272,7 @@
# 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");
More information about the Bast-commits
mailing list