1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
|
use strict;
use warnings;
use Test::More;
use lib qw(t/lib);
use DBICTest;
{
package DBICTest::ExplodingStorage::Sth;
use strict;
use warnings;
sub execute { die "Kablammo!" }
sub bind_param {}
package DBICTest::ExplodingStorage;
use strict;
use warnings;
use base 'DBIx::Class::Storage::DBI::SQLite';
my $count = 0;
sub sth {
my ($self, $sql) = @_;
return bless {}, "DBICTest::ExplodingStorage::Sth" unless $count++;
return $self->next::method($sql);
}
sub connected {
return 0 if $count == 1;
return shift->next::method(@_);
}
}
plan tests => 6;
my $schema = DBICTest->init_schema();
is( ref($schema->storage), 'DBIx::Class::Storage::DBI::SQLite',
'Storage reblessed correctly into DBIx::Class::Storage::DBI::SQLite' );
my $storage = $schema->storage;
$storage->ensure_connected;
eval {
$schema->storage->throw_exception('test_exception_42');
};
like($@, qr/\btest_exception_42\b/, 'basic exception');
eval {
$schema->resultset('CD')->search_literal('broken +%$#$1')->all;
};
like($@, qr/prepare_cached failed/, 'exception via DBI->HandleError, etc');
bless $storage, "DBICTest::ExplodingStorage";
$schema->storage($storage);
eval {
$schema->resultset('Artist')->create({ name => "Exploding Sheep" });
};
is($@, "", "Exploding \$sth->execute was caught");
is(1, $schema->resultset('Artist')->search({name => "Exploding Sheep" })->count,
"And the STH was retired");
my $info = { on_connect_do => [] };
$storage->connect_info(['foo','bar','baz',$info]);
ok(exists($info->{on_connect_do}), q{Didn't kill key passed to storage});
1;
|