X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F74mssql.t;h=f24e1967ca8841f7eafb9eb479f186e20870826e;hb=8aae794001ecccdb26c2bbd1b92c97bba9e65d79;hp=2470c7fda2bf75a83c5ba05d14a5ddfc6e69c0b7;hpb=199fbc453ec03891d0e156d7353c5e992ba4de47;p=dbsrgits%2FDBIx-Class.git diff --git a/t/74mssql.t b/t/74mssql.t index 2470c7f..f24e196 100644 --- a/t/74mssql.t +++ b/t/74mssql.t @@ -1,27 +1,17 @@ +BEGIN { do "./t/lib/ANFANG.pm" or die ( $@ || $! ) } +use DBIx::Class::Optional::Dependencies -skip_all_without => 'test_rdbms_mssql_sybase'; + use strict; use warnings; -# use this if you keep a copy of DBD::Sybase linked to FreeTDS somewhere else -BEGIN { - if (my $lib_dirs = $ENV{DBICTEST_MSSQL_PERL5LIB}) { - unshift @INC, $_ for split /:/, $lib_dirs; - } -} - use Test::More; use Test::Exception; -use DBIx::Class::Optional::Dependencies (); -use lib qw(t/lib); -use DBICTest; +use Scalar::Util 'weaken'; +use DBIx::Class::_Util 'sigwarn_silencer'; -plan skip_all => 'Test needs ' . DBIx::Class::Optional::Dependencies->req_missing_for ('test_rdbms_mssql_sybase') - unless DBIx::Class::Optional::Dependencies->req_ok_for ('test_rdbms_mssql_sybase'); +use DBICTest; my ($dsn, $user, $pass) = @ENV{map { "DBICTEST_MSSQL_${_}" } qw/DSN USER PASS/}; - -plan skip_all => 'Set $ENV{DBICTEST_MSSQL_DSN}, _USER and _PASS to run this test' - unless ($dsn); - { my $srv_ver = DBICTest::Schema->connect($dsn, $user, $pass)->storage->_server_info->{dbms_version}; ok ($srv_ver, 'Got a test server version on fresh schema: ' . ($srv_ver||'???') ); @@ -122,7 +112,8 @@ for my $storage_type (@test_storages) { SQL }); - my $rs = $schema->resultset('Money'); + my $rs = $schema->resultset('Money'); + weaken(my $rs_cp = $rs); # nested closure refcounting is an utter mess in perl my $row; lives_ok { @@ -150,7 +141,7 @@ SQL # test simple transaction with commit lives_ok { $schema->txn_do(sub { - $rs->create({ amount => 300 }); + $rs_cp->create({ amount => 300 }); }); } 'simple transaction'; @@ -162,7 +153,7 @@ SQL # test rollback throws_ok { $schema->txn_do(sub { - $rs->create({ amount => 700 }); + $rs_cp->create({ amount => 700 }); die 'mtfnpy'; }); } qr/mtfnpy/, 'simple failed txn'; @@ -198,65 +189,68 @@ SQL $rs->delete; } - # test transaction handling on a disconnected handle my $wrappers = { no_transaction => sub { shift->() }, txn_do => sub { my $code = shift; $schema->txn_do(sub { $code->() } ) }, txn_begin => sub { $schema->txn_begin; shift->(); $schema->txn_commit }, txn_guard => sub { my $g = $schema->txn_scope_guard; shift->(); $g->commit }, }; + + # test transaction handling on a disconnected handle for my $wrapper (keys %$wrappers) { $rs->delete; # a reconnect should trigger on next action $schema->storage->_get_dbh->disconnect; - lives_and { + + lives_ok { $wrappers->{$wrapper}->( sub { - $rs->create({ amount => 900 + $_ }) for 1..3; + $rs_cp->create({ amount => 900 + $_ }) for 1..3; }); is $rs->count, 3; } "transaction on disconnected handle with $wrapper wrapper"; } - TODO: { - local $TODO = 'Transaction handling with multiple active statements will ' - .'need eager cursor support.'; - - # test transaction handling on a disconnected handle with multiple active - # statements - my $wrappers = { - no_transaction => sub { shift->() }, - txn_do => sub { my $code = shift; $schema->txn_do(sub { $code->() } ) }, - txn_begin => sub { $schema->txn_begin; shift->(); $schema->txn_commit }, - txn_guard => sub { my $g = $schema->txn_scope_guard; shift->(); $g->commit }, - }; - for my $wrapper (keys %$wrappers) { - $rs->reset; - $rs->delete; - $rs->create({ amount => 1000 + $_ }) for (1..3); - - my $artist_rs = $schema->resultset('Artist')->search({ - name => { -like => 'Artist %' } - });; - - $rs->next; - - my $map = [ ['Artist 1', '1002.00'], ['Artist 2', '1003.00'] ]; - - lives_and { - my @results; - - $wrappers->{$wrapper}->( sub { - while (my $money = $rs->next) { - my $artist = $artist_rs->next; - push @results, [ $artist->name, $money->amount ]; - }; - }); - - is_deeply \@results, $map; - } "transactions with multiple active statement with $wrapper wrapper"; - } + # test transaction handling on a disconnected handle with multiple active + # statements + for my $wrapper (keys %$wrappers) { + $schema->storage->disconnect; + $rs->delete; + $rs->reset; + $rs->create({ amount => 1000 + $_ }) for (1..3); + + my $artist_rs = $schema->resultset('Artist')->search({ + name => { -like => 'Artist %' } + });; + + $rs->next; + + my $map = [ ['Artist 1', '1002.00'], ['Artist 2', '1003.00'] ]; + + weaken(my $a_rs_cp = $artist_rs); + + $wrapper ne 'no_transaction' + and + ( + local $TODO = 'Transaction handling with multiple active statements will ' + .'need eager cursor support.', + + local local $SIG{__WARN__} = sigwarn_silencer qr/disconnect invalidates .+? active statement/ + ); + + lives_ok { + my @results; + + $wrappers->{$wrapper}->( sub { + while (my $money = $rs_cp->next) { + my $artist = $a_rs_cp->next; + push @results, [ $artist->name, $money->amount ]; + }; + }); + + is_deeply \@results, $map; + } "transactions with multiple active statement with $wrapper wrapper"; } # test RNO detection when version detection fails @@ -331,4 +325,6 @@ END { $dbh->do("IF OBJECT_ID('cd', 'U') IS NOT NULL DROP TABLE cd"); $dbh->do("IF OBJECT_ID('money_test', 'U') IS NOT NULL DROP TABLE money_test"); } + + undef $schema; }