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
|
use strict;
use warnings;
use Test::More;
use lib qw(t/lib);
use DBICTest;
my $ping_count = 0;
{
local $SIG{__WARN__} = sub {};
require DBIx::Class::Storage::DBI;
my $ping = \&DBIx::Class::Storage::DBI::_ping;
*DBIx::Class::Storage::DBI::_ping = sub {
$ping_count++;
goto &$ping;
};
}
# measure pings around deploy() separately
my $schema = DBICTest->init_schema( sqlite_use_file => 1, no_populate => 1 );
is ($ping_count, 0, 'no _ping() calls during deploy');
$ping_count = 0;
DBICTest->populate_schema ($schema);
# perform some operations and make sure they don't ping
$schema->resultset('CD')->create({
cdid => 6, artist => 3, title => 'mtfnpy', year => 2009
});
$schema->resultset('CD')->create({
cdid => 7, artist => 3, title => 'mtfnpy2', year => 2009
});
$schema->storage->_dbh->disconnect;
$schema->resultset('CD')->create({
cdid => 8, artist => 3, title => 'mtfnpy3', year => 2009
});
$schema->storage->_dbh->disconnect;
$schema->txn_do(sub {
$schema->resultset('CD')->create({
cdid => 9, artist => 3, title => 'mtfnpy4', year => 2009
});
});
is $ping_count, 0, 'no _ping() calls';
done_testing;
|