From: Peter Rabbitson Date: Fri, 22 Jan 2016 13:14:58 +0000 (+0100) Subject: Make sure Win32-like DBICTest checks are not tripped by repeated disconnects X-Git-Tag: v0.08271~4 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=97fc8d212a84e6e8c04c11f6aea656e6170134c6;p=dbsrgits%2FDBIx-Class.git Make sure Win32-like DBICTest checks are not tripped by repeated disconnects ( cherry pick of 5c505caf ) --- diff --git a/t/lib/DBICTest.pm b/t/lib/DBICTest.pm index 6934092..c14f604 100644 --- a/t/lib/DBICTest.pm +++ b/t/lib/DBICTest.pm @@ -264,6 +264,7 @@ sub __mk_disconnect_guard { return; } elsif ($event eq 'disconnect') { + return unless $connected; # we already disconnected earlier $connected = 0; } elsif ($event eq 'DESTROY' and ! $connected ) { diff --git a/t/storage/base.t b/t/storage/base.t index df3641e..9a79e1f 100644 --- a/t/storage/base.t +++ b/t/storage/base.t @@ -25,6 +25,34 @@ throws_ok { } qr/prepare_cached failed/, 'exception via DBI->HandleError, etc'; +# make sure repeated disconnection works +{ + my $fn = DBICTest->_sqlite_dbfilename; + + lives_ok { + $schema->storage->ensure_connected; + my $dbh = $schema->storage->dbh; + $schema->storage->disconnect for 1,2; + unlink $fn; + $dbh->disconnect; + }; + + lives_ok { + $schema->storage->ensure_connected; + $schema->storage->disconnect for 1,2; + unlink $fn; + $schema->storage->disconnect for 1,2; + }; + + lives_ok { + $schema->storage->ensure_connected; + $schema->storage->_dbh->disconnect; + unlink $fn; + $schema->storage->disconnect for 1,2; + }; +} + + # testing various invocations of connect_info ([ ... ]) my $coderef = sub { 42 };