X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F750firebird.t;h=26927bfdfb47e8ecf6abcf81b4afd4a32a31a8e4;hb=e02b39b48c5cca4812acb88d0bb71443cd8c8ff9;hp=55ba209932a37cad8e16e3519bc79dba7bf66238;hpb=ba19fccc5a38a4eb1eb25abbe181338f1dac9753;p=dbsrgits%2FDBIx-Class.git diff --git a/t/750firebird.t b/t/750firebird.t index 55ba209..26927bf 100644 --- a/t/750firebird.t +++ b/t/750firebird.t @@ -14,7 +14,11 @@ my ($dsn2, $user2, $pass2) = @ENV{map { "DBICTEST_FIREBIRD_ODBC_${_}" } qw/DSN U plan skip_all => <<'EOF' unless $dsn || $dsn2; Set $ENV{DBICTEST_FIREBIRD_DSN} and/or $ENV{DBICTEST_FIREBIRD_ODBC_DSN}, -_USER and _PASS to run these tests +_USER and _PASS to run these tests. + +WARNING: this test creates and drops the tables "artist", "bindtype_test" and +"sequence_test"; the generators "gen_artist_artistid", "pkid1_seq", "pkid2_seq" +and "nonpkid_seq" and the trigger "artist_bi". EOF my @info = ( @@ -71,11 +75,11 @@ EOF EOF $dbh->do('ALTER TABLE "sequence_test" ADD CONSTRAINT "sequence_test_constraint" PRIMARY KEY ("pkid1", "pkid2")'); eval { $dbh->do('DROP GENERATOR "pkid1_seq"') }; - eval { $dbh->do('DROP GENERATOR "pkid2_seq"') }; + eval { $dbh->do('DROP GENERATOR pkid2_seq') }; eval { $dbh->do('DROP GENERATOR "nonpkid_seq"') }; $dbh->do('CREATE GENERATOR "pkid1_seq"'); - $dbh->do('CREATE GENERATOR "pkid2_seq"'); - $dbh->do('SET GENERATOR "pkid2_seq" TO 9'); + $dbh->do('CREATE GENERATOR pkid2_seq'); + $dbh->do('SET GENERATOR pkid2_seq TO 9'); $dbh->do('CREATE GENERATOR "nonpkid_seq"'); $dbh->do('SET GENERATOR "nonpkid_seq" TO 19'); @@ -96,8 +100,19 @@ EOF my $st = $schema->resultset('SequenceTest')->create({ name => 'foo', pkid1 => 55 }); is($st->pkid1, 55, "Firebird Auto-PK without trigger: First primary key set manually"); +# test transaction commit + $schema->txn_do(sub { + $ars->create({ name => 'in_transaction' }); + }); + ok (($ars->search({ name => 'in_transaction' })->first), + 'transaction committed'); + is $schema->storage->_dbh->{AutoCommit}, 1, + '$dbh->{AutoCommit} is correct after transaction commit'; + + $ars->search({ name => 'in_transaction' })->delete; + # test savepoints - eval { + throws_ok { $schema->txn_do(sub { eval { $schema->txn_do(sub { @@ -110,11 +125,12 @@ EOF $ars->create({ name => 'in_outer_txn' }); die "rolling back outer txn"; }); - }; - - like $@, qr/rolling back outer txn/, + } qr/rolling back outer txn/, 'correct exception for rollback'; + is $schema->storage->_dbh->{AutoCommit}, 1, + '$dbh->{AutoCommit} is correct after transaction rollback'; + ok ((not $ars->search({ name => 'in_outer_txn' })->first), 'outer txn rolled back'); @@ -180,21 +196,32 @@ EOF is( eval { $lim->next->artistid }, 102, "iterator->next ok" ); is( $lim->next, undef, "next past end of resultset ok" ); -# test multiple executing cursors +# test nested cursors { my $rs1 = $ars->search({}, { order_by => { -asc => 'artistid' }}); - my $rs2 = $ars->search({}, { order_by => { -desc => 'artistid' }}); - is $rs1->next->artistid, 1, 'multiple cursors'; - is $rs2->next->artistid, 102, 'multiple cursors'; + my $rs2 = $ars->search({ artistid => $rs1->next->artistid }, { + order_by => { -desc => 'artistid' } + }); + + is $rs2->next->artistid, 1, 'nested cursors'; } # test empty insert + lives_and { + my $row = $ars->create({}); + ok $row->artistid; + } 'empty insert works'; + +# test inferring the generator from the trigger source and using it with +# auto_nextval { - local $ars->result_source->column_info('artistid')->{is_auto_increment} = 0; + local $ars->result_source->column_info('artistid')->{auto_nextval} = 1; - lives_ok { $ars->create({}) } - 'empty insert works'; + lives_and { + my $row = $ars->create({ name => 'introspecting generator' }); + ok $row->artistid; + } 'inferring generator from trigger source works'; } # test blobs (stolen from 73oracle.t) @@ -205,7 +232,8 @@ EOF "id" INT PRIMARY KEY, "bytea" INT, "blob" BLOB, - "clob" BLOB SUB_TYPE TEXT + "clob" BLOB SUB_TYPE TEXT, + "a_memo" INT ) ]); @@ -228,7 +256,18 @@ EOF lives_ok { $rs->create( { 'id' => $id, $type => $binstr{$size} } ) } "inserted $size $type without dying"; - ok($rs->find($id)->$type eq $binstr{$size}, "verified inserted $size $type" ); + my $got = $rs->find($id)->$type; + + my $hexdump = sub { join '', map sprintf('%02X', ord), split //, shift }; + + ok($got eq $binstr{$size}, "verified inserted $size $type" ) + or do { + diag "For " . (ref $schema->storage) . "\n"; + diag "Got blob:\n"; + diag $hexdump->(substr($got,0,50)); + diag "Expecting blob:\n"; + diag $hexdump->(substr($binstr{$size},0,50)); + }; } } } @@ -248,9 +287,13 @@ sub cleanup { eval { $dbh->do('DROP TRIGGER "artist_bi"') }; diag $@ if $@; - foreach my $generator (qw/gen_artist_artistid pkid1_seq pkid2_seq - nonpkid_seq/) { - eval { $dbh->do(qq{DROP GENERATOR "$generator"}) }; + foreach my $generator (qw/ + "gen_artist_artistid" + "pkid1_seq" + pkid2_seq + "nonpkid_seq" + /) { + eval { $dbh->do(qq{DROP GENERATOR $generator}) }; diag $@ if $@; }