Skip to content

Commit

Permalink
Todo tests for txn_rollback and scope_guard
Browse files Browse the repository at this point in the history
  • Loading branch information
ashb committed Feb 28, 2008
1 parent 1bc193a commit 3b7f3ea
Show file tree
Hide file tree
Showing 4 changed files with 117 additions and 5 deletions.
3 changes: 0 additions & 3 deletions 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
Expand Down
2 changes: 2 additions & 0 deletions lib/DBIx/Class/Storage.pm
Expand Up @@ -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.
Expand Down
18 changes: 17 additions & 1 deletion lib/DBIx/Class/Storage/TxnScopeGuard.pm
Expand Up @@ -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;
Expand Down
99 changes: 98 additions & 1 deletion t/81transactions.t
Expand Up @@ -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) = @_;
Expand Down Expand Up @@ -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;
}
}

0 comments on commit 3b7f3ea

Please sign in to comment.