X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F752sqlite.t;h=9cee7e23b1b9d87027f72c7fd0177f464b3b5454;hb=df54756ae88f99969e1576f028324ef94fdb67da;hp=273a1ed5dc6ba07c4a140af7c1cff2490c3951e4;hpb=398215b170197df314fb0c40e0654c3a6860f19d;p=dbsrgits%2FDBIx-Class.git diff --git a/t/752sqlite.t b/t/752sqlite.t index 273a1ed..9cee7e2 100644 --- a/t/752sqlite.t +++ b/t/752sqlite.t @@ -9,41 +9,7 @@ use Math::BigInt; use lib qw(t/lib); use DBICTest; -use DBIx::Class::_Util qw(sigwarn_silencer modver_gt_or_eq); - -# savepoints test -{ - my $schema = DBICTest->init_schema(auto_savepoint => 1); - - my $ars = $schema->resultset('Artist'); - - # test two-phase commit and inner transaction rollback from nested transactions - $schema->txn_do(sub { - $ars->create({ name => 'in_outer_transaction' }); - $schema->txn_do(sub { - $ars->create({ name => 'in_inner_transaction' }); - }); - ok($ars->search({ name => 'in_inner_transaction' })->first, - 'commit from inner transaction visible in outer transaction'); - throws_ok { - $schema->txn_do(sub { - $ars->create({ name => 'in_inner_transaction_rolling_back' }); - die 'rolling back inner transaction'; - }); - } qr/rolling back inner transaction/, 'inner transaction rollback executed'; - $ars->create({ name => 'in_outer_transaction2' }); - }); - - ok($ars->search({ name => 'in_outer_transaction' })->first, - 'commit from outer transaction'); - ok($ars->search({ name => 'in_outer_transaction2' })->first, - 'second commit from outer transaction'); - ok($ars->search({ name => 'in_inner_transaction' })->first, - 'commit from inner transaction'); - is $ars->search({ name => 'in_inner_transaction_rolling_back' })->first, - undef, - 'rollback from inner transaction'; -} +use DBIx::Class::_Util qw( sigwarn_silencer modver_gt_or_eq modver_gt_or_eq_and_lt ); # check that we work somewhat OK with braindead SQLite transaction handling # @@ -178,6 +144,11 @@ $row->discard_changes; is ($row->rank, 'abc', 'proper rank inserted into database'); # and make sure we do not lose actual bigints +SKIP: { + +skip "Not testing bigint handling on known broken DBD::SQLite trial versions", 1 + if( modver_gt_or_eq('DBD::SQLite', '1.45') and ! modver_gt_or_eq('DBD::SQLite', '1.45_03') ); + { package DBICTest::BigIntArtist; use base 'DBICTest::Schema::Artist'; @@ -189,9 +160,7 @@ $schema->storage->dbh_do(sub { $_[1]->do('ALTER TABLE artist ADD COLUMN bigint BIGINT'); }); -my $sqlite_broken_bigint = ( - modver_gt_or_eq('DBD::SQLite', '1.34') and ! modver_gt_or_eq('DBD::SQLite', '1.37') -); +my $sqlite_broken_bigint = modver_gt_or_eq_and_lt( 'DBD::SQLite', '1.34', '1.37' ); # 63 bit integer my $many_bits = (Math::BigInt->new(2) ** 62); @@ -344,7 +313,8 @@ SKIP: { } is_deeply (\@w, [], "No mismatch warnings on bigint operations ($v_desc)" ); -} + +}} done_testing;