X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F749sqlanywhere.t;h=396e103223fe080d8109f573430a41de3cb2ff2b;hb=5815ffb0e34dcd74af49581f65e1d5aa71779a6b;hp=e086065809726aa9fe21cd8b3ab5158b9ee3a6b5;hpb=f3a9ea3d41f4d32346bc5ea7ce83a7dcfe45b118;p=dbsrgits%2FDBIx-Class.git diff --git a/t/749sqlanywhere.t b/t/749sqlanywhere.t index e086065..396e103 100644 --- a/t/749sqlanywhere.t +++ b/t/749sqlanywhere.t @@ -4,16 +4,29 @@ use warnings; use Test::More; use Test::Exception; use Scope::Guard (); +use Try::Tiny; +use DBIx::Class::Optional::Dependencies (); use lib qw(t/lib); use DBICTest; +my ($dsn, $user, $pass) = @ENV{map { "DBICTEST_SQLANYWHERE_${_}" } qw/DSN USER PASS/}; +my ($dsn2, $user2, $pass2) = @ENV{map { "DBICTEST_SQLANYWHERE_ODBC_${_}" } qw/DSN USER PASS/}; + +plan skip_all => 'Test needs ' . + (join ' or ', map { $_ ? $_ : () } + DBIx::Class::Optional::Dependencies->req_missing_for('test_rdbms_sqlanywhere'), + DBIx::Class::Optional::Dependencies->req_missing_for('test_rdbms_sqlanywhere_odbc')) + unless + $dsn && DBIx::Class::Optional::Dependencies->req_ok_for('test_rdbms_sqlanywhere') + or + $dsn2 && DBIx::Class::Optional::Dependencies->req_ok_for('test_rdbms_sqlanywhere_odbc') + or + (not $dsn || $dsn2); + DBICTest::Schema->load_classes('ArtistGUID'); # tests stolen from 748informix.t -my ($dsn, $user, $pass) = @ENV{map { "DBICTEST_SQLANYWHERE_${_}" } qw/DSN USER PASS/}; -my ($dsn2, $user2, $pass2) = @ENV{map { "DBICTEST_SQLANYWHERE_ODBC_${_}" } qw/DSN USER PASS/}; - plan skip_all => <<'EOF' unless $dsn || $dsn2; Set $ENV{DBICTEST_SQLANYWHERE_DSN} and/or $ENV{DBICTEST_SQLANYWHERE_ODBC_DSN}, _USER and _PASS to run these tests @@ -35,7 +48,7 @@ foreach my $info (@info) { auto_savepoint => 1 }); - my $guard = Scope::Guard->new(\&cleanup); + my $guard = Scope::Guard->new(sub{ cleanup($schema) }); my $dbh = $schema->storage->dbh; @@ -164,10 +177,11 @@ EOF ok($rs->find($id)->$type eq $binstr{$size}, "verified inserted $size $type" ); } } - + my @uuid_types = qw/uniqueidentifier uniqueidentifierstr/; -# test uniqueidentifiers +# test uniqueidentifiers (and the cursor_class). + for my $uuid_type (@uuid_types) { local $schema->source('ArtistGUID')->column_info('artistid')->{data_type} = $uuid_type; @@ -190,6 +204,9 @@ CREATE TABLE artist_guid ( SQL }); + local $TODO = 'something wrong with uniqueidentifierstr over ODBC' + if $dsn =~ /:ODBC:/ && $uuid_type eq 'uniqueidentifierstr'; + my $row; lives_ok { $row = $schema->resultset('ArtistGUID')->create({ name => 'mtfnpy' }) @@ -207,20 +224,42 @@ SQL ); diag $@ if $@; - my $row_from_db = $schema->resultset('ArtistGUID') - ->search({ name => 'mtfnpy' })->first; + my $row_from_db = try { $schema->resultset('ArtistGUID') + ->search({ name => 'mtfnpy' })->first } + catch { diag $_ }; + + is try { $row_from_db->artistid }, $row->artistid, + 'PK GUID round trip (via ->search->next)'; + + is try { $row_from_db->a_guid }, $row->a_guid, + 'NON-PK GUID round trip (via ->search->next)'; + + $row_from_db = try { $schema->resultset('ArtistGUID') + ->find($row->artistid) } + catch { diag $_ }; + + is try { $row_from_db->artistid }, $row->artistid, + 'PK GUID round trip (via ->find)'; + + is try { $row_from_db->a_guid }, $row->a_guid, + 'NON-PK GUID round trip (via ->find)'; + + ($row_from_db) = try { $schema->resultset('ArtistGUID') + ->search({ name => 'mtfnpy' })->all } + catch { diag $_ }; - is $row_from_db->artistid, $row->artistid, - 'PK GUID round trip'; + is try { $row_from_db->artistid }, $row->artistid, + 'PK GUID round trip (via ->search->all)'; - is $row_from_db->a_guid, $row->a_guid, - 'NON-PK GUID round trip'; + is try { $row_from_db->a_guid }, $row->a_guid, + 'NON-PK GUID round trip (via ->search->all)'; } } done_testing; sub cleanup { + my $schema = shift; eval { $schema->storage->dbh->do("DROP TABLE $_") } for qw/artist artist_guid bindtype_test/; }