my @cds;
foreach my $lp (keys %albums) {
- my $artist = $schema->resultset('Artist')->search({
+ my $artist = $schema->resultset('Artist')->find({
name => $albums{$lp}
});
- push @cds, [$lp, $artist->first];
+ push @cds, [$lp, $artist->id];
}
$schema->populate('Cd', [
use strict;
use warnings;
-use Carp ();
+use Carp::Clan qw/^DBIx::Class/;
sub new {
my ($class, $storage) = @_;
return if $dismiss;
my $exception = $@;
- Carp::cluck("A DBIx::Class::Storage::TxnScopeGuard went out of scope without explicit commit or an error - bad")
+
+ carp 'A DBIx::Class::Storage::TxnScopeGuard went out of scope without explicit commit or error - bad'
unless $exception;
my $rollback_exception;
eval { $storage->txn_rollback };
$rollback_exception = $@;
}
+
if ($rollback_exception && $rollback_exception !~ /DBIx::Class::Storage::NESTED_ROLLBACK_EXCEPTION/) {
- $storage->throw_exception(
- "Transaction aborted: ${exception} "
- . "Rollback failed: ${rollback_exception}"
- );
+ if ($exception) {
+ $@ = "Transaction aborted: ${exception} "
+ ."Rollback failed: ${rollback_exception}";
+ }
+ else {
+ carp "Rollback failed: ${rollback_exception}";
+ }
}
}
# 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);
- }, qr/A DBIx::Class::Storage::TxnScopeGuard went out of scope without explicit commit or an error/, 'Out of scope warning detected');
+ }, qr/A DBIx::Class::Storage::TxnScopeGuard went out of scope without explicit commit or error/, 'Out of scope warning detected');
ok(!$artist_rs->find({name => 'Death Cab for Cutie'}), "Artist not created");
}, 'rollback successful withot exception');
}, qr/Deliberate exception.+Rollback failed/s);
}
+# make sure it simply warns on failed rollbacks
+{
+ my $schema = DBICTest->init_schema();
+ warnings_exist (sub {
+ my $guard = $schema->txn_scope_guard;
+ $schema->resultset ('Artist')->create ({ name => 'bohhoo'});
+
+ $schema->storage->disconnect; # this should freak out the guard rollback
+
+ },
+ [
+ qr/A DBIx::Class::Storage::TxnScopeGuard went out of scope without explicit commit or error/,
+ qr/Rollback failed/,
+ ],
+ 'out-of-scope with failed rollback properly warned');
+}
+
done_testing;