X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F73oracle.t;h=51cc932282e6aaaa39b1f1810d0fcda9b772877b;hb=4a339535906fa0d29a8f80700e58f61251e90e77;hp=12929b61a229d4e0048983b55e23f1e739fc68d4;hpb=7c4ead2d913c8defc6e358b659c3bf310af1e11e;p=dbsrgits%2FDBIx-Class.git diff --git a/t/73oracle.t b/t/73oracle.t index 12929b6..51cc932 100644 --- a/t/73oracle.t +++ b/t/73oracle.t @@ -1,3 +1,30 @@ +{ + package # hide from PAUSE + DBICTest::Schema::ArtistFQN; + + use base 'DBIx::Class::Core'; + + __PACKAGE__->table( + defined $ENV{DBICTEST_ORA_USER} + ? $ENV{DBICTEST_ORA_USER} . '.artist' + : 'artist' + ); + __PACKAGE__->add_columns( + 'artistid' => { + data_type => 'integer', + is_auto_increment => 1, + }, + 'name' => { + data_type => 'varchar', + size => 100, + is_nullable => 1, + }, + ); + __PACKAGE__->set_primary_key('artistid'); + + 1; +} + use strict; use warnings; @@ -12,8 +39,9 @@ plan skip_all => 'Set $ENV{DBICTEST_ORA_DSN}, _USER and _PASS to run this test. ' as well as following sequences: \'pkid1_seq\', \'pkid2_seq\' and \'nonpkid_seq\'' unless ($dsn && $user && $pass); -plan tests => 23; +plan tests => 24; +DBICTest::Schema->load_classes('ArtistFQN'); my $schema = DBICTest::Schema->connect($dsn, $user, $pass); my $dbh = $schema->storage->dbh; @@ -62,6 +90,10 @@ $schema->class('Track')->load_components('PK::Auto::Oracle'); my $new = $schema->resultset('Artist')->create({ name => 'foo' }); is($new->artistid, 1, "Oracle Auto-PK worked"); +# test again with fully-qualified table name +$new = $schema->resultset('ArtistFQN')->create( { name => 'bar' } ); +is( $new->artistid, 2, "Oracle Auto-PK worked with fully-qualified tablename" ); + # test join with row count ambiguity my $cd = $schema->resultset('CD')->create({ cdid => 1, artist => 1, title => 'EP C', year => '2003' }); my $track = $schema->resultset('Track')->create({ trackid => 1, cd => 1, position => 1, title => 'Track1' }); @@ -90,7 +122,7 @@ for (1..6) { } my $it = $schema->resultset('Artist')->search( {}, { rows => 3, - offset => 2, + offset => 3, order_by => 'artistid' } ); is( $it->count, 3, "LIMIT count ok" ); @@ -117,7 +149,7 @@ is($st->pkid1, 55, "Oracle Auto-PK without trigger: First primary key set manual # clean up our mess END { - if($dbh) { + if($schema && ($dbh = $schema->storage->dbh)) { $dbh->do("DROP SEQUENCE artist_seq"); $dbh->do("DROP SEQUENCE pkid1_seq"); $dbh->do("DROP SEQUENCE pkid2_seq");