4 my ($dsn, $user, $pass) = @ENV{map { "DBICTEST_ORA_${_}" } qw/DSN USER PASS/};
6 plan skip_all, 'Set $ENV{DBICTEST_ORA_DSN}, _USER and _PASS to run this test. ' .
7 'Warning: This test drops and creates tables called \'artist\', \'cd\' and \'track\''
8 unless ($dsn && $user && $pass);
12 DBICTest::Schema->compose_connection('OraTest' => $dsn, $user, $pass);
14 my $dbh = OraTest->schema->storage->dbh;
17 $dbh->do("DROP SEQUENCE artist_seq");
18 $dbh->do("DROP TABLE artist");
19 $dbh->do("DROP TABLE cd");
20 $dbh->do("DROP TABLE track");
22 $dbh->do("CREATE SEQUENCE artist_seq START WITH 1 MAXVALUE 999999 MINVALUE 0");
23 $dbh->do("CREATE TABLE artist (artistid NUMBER(12), name VARCHAR(255))");
24 $dbh->do("CREATE TABLE cd (cdid NUMBER(12), artist NUMBER(12), title VARCHAR(255), year VARCHAR(4))");
25 $dbh->do("CREATE TABLE track (trackid NUMBER(12), cd NUMBER(12), position NUMBER(12), title VARCHAR(255))");
27 $dbh->do("ALTER TABLE artist ADD (CONSTRAINT artist_pk PRIMARY KEY (artistid))");
29 CREATE OR REPLACE TRIGGER artist_insert_trg
30 BEFORE INSERT ON artist
33 IF :new.artistid IS NULL THEN
34 SELECT artist_seq.nextval
41 OraTest::Artist->load_components('PK::Auto');
42 OraTest::CD->load_components('PK::Auto::Oracle');
43 OraTest::Track->load_components('PK::Auto::Oracle');
45 # test primary key handling
46 my $new = OraTest::Artist->create({ name => 'foo' });
47 is($new->artistid, 1, "Oracle Auto-PK worked");
49 # test join with row count ambiguity
50 my $cd = OraTest::CD->create({ cdid => 1, artist => 1, title => 'EP C', year => '2003' });
51 my $track = OraTest::Track->create({ trackid => 1, cd => 1, position => 1, title => 'Track1' });
52 my $tjoin = OraTest::Track->search({ 'me.title' => 'Track1'},
57 is($tjoin->next->title, 'Track1', "ambiguous column ok");
62 OraTest::Artist->create({ name => 'Artist ' . $_ });
64 my $it = OraTest::Artist->search( {},
67 order_by => 'artistid' }
69 is( $it->count, 3, "LIMIT count ok" );
70 is( $it->next->name, "Artist 2", "iterator->next ok" );
73 is( $it->next, undef, "next past end of resultset ok" );
76 $dbh->do("DROP SEQUENCE artist_seq");
77 $dbh->do("DROP TABLE artist");
78 $dbh->do("DROP TABLE cd");
79 $dbh->do("DROP TABLE track");