switch oracle tests to done_testing()
[dbsrgits/DBIx-Class.git] / t / 73oracle.t
CommitLineData
cb464582 1{
2 package # hide from PAUSE
3 DBICTest::Schema::ArtistFQN;
4
5 use base 'DBIx::Class::Core';
6
7 __PACKAGE__->table(
8 defined $ENV{DBICTEST_ORA_USER}
9 ? $ENV{DBICTEST_ORA_USER} . '.artist'
10 : 'artist'
11 );
12 __PACKAGE__->add_columns(
13 'artistid' => {
14 data_type => 'integer',
15 is_auto_increment => 1,
16 },
17 'name' => {
18 data_type => 'varchar',
19 size => 100,
20 is_nullable => 1,
21 },
22 );
23 __PACKAGE__->set_primary_key('artistid');
24
25 1;
26}
27
70350518 28use strict;
e6dd7b42 29use warnings;
70350518 30
5db2758d 31use Test::Exception;
70350518 32use Test::More;
33use lib qw(t/lib);
34use DBICTest;
0567538f 35
36my ($dsn, $user, $pass) = @ENV{map { "DBICTEST_ORA_${_}" } qw/DSN USER PASS/};
37
70350518 38plan skip_all => 'Set $ENV{DBICTEST_ORA_DSN}, _USER and _PASS to run this test. ' .
39b8d119 39 'Warning: This test drops and creates tables called \'artist\', \'cd\', \'track\' and \'sequence_test\''.
40 ' as well as following sequences: \'pkid1_seq\', \'pkid2_seq\' and \'nonpkid_seq\''
0567538f 41 unless ($dsn && $user && $pass);
42
cb464582 43DBICTest::Schema->load_classes('ArtistFQN');
9900b569 44my $schema = DBICTest::Schema->connect($dsn, $user, $pass);
0567538f 45
3ff5b740 46my $dbh = $schema->storage->dbh;
0567538f 47
48eval {
49 $dbh->do("DROP SEQUENCE artist_seq");
e6dd7b42 50 $dbh->do("DROP SEQUENCE cd_seq");
39b8d119 51 $dbh->do("DROP SEQUENCE pkid1_seq");
52 $dbh->do("DROP SEQUENCE pkid2_seq");
53 $dbh->do("DROP SEQUENCE nonpkid_seq");
0567538f 54 $dbh->do("DROP TABLE artist");
39b8d119 55 $dbh->do("DROP TABLE sequence_test");
2660b14e 56 $dbh->do("DROP TABLE cd");
57 $dbh->do("DROP TABLE track");
0567538f 58};
59$dbh->do("CREATE SEQUENCE artist_seq START WITH 1 MAXVALUE 999999 MINVALUE 0");
e6dd7b42 60$dbh->do("CREATE SEQUENCE cd_seq START WITH 1 MAXVALUE 999999 MINVALUE 0");
39b8d119 61$dbh->do("CREATE SEQUENCE pkid1_seq START WITH 1 MAXVALUE 999999 MINVALUE 0");
62$dbh->do("CREATE SEQUENCE pkid2_seq START WITH 10 MAXVALUE 999999 MINVALUE 0");
63$dbh->do("CREATE SEQUENCE nonpkid_seq START WITH 20 MAXVALUE 999999 MINVALUE 0");
7c4ead2d 64$dbh->do("CREATE TABLE artist (artistid NUMBER(12), name VARCHAR(255), rank NUMBER(38), charfield VARCHAR2(10))");
39b8d119 65$dbh->do("CREATE TABLE sequence_test (pkid1 NUMBER(12), pkid2 NUMBER(12), nonpkid NUMBER(12), name VARCHAR(255))");
2660b14e 66$dbh->do("CREATE TABLE cd (cdid NUMBER(12), artist NUMBER(12), title VARCHAR(255), year VARCHAR(4))");
2d124f01 67$dbh->do("CREATE TABLE track (trackid NUMBER(12), cd NUMBER(12), position NUMBER(12), title VARCHAR(255), last_updated_on DATE, last_updated_at DATE, small_dt DATE)");
2660b14e 68
0567538f 69$dbh->do("ALTER TABLE artist ADD (CONSTRAINT artist_pk PRIMARY KEY (artistid))");
e6dd7b42 70$dbh->do("ALTER TABLE cd ADD (CONSTRAINT cd_pk PRIMARY KEY (cdid))");
39b8d119 71$dbh->do("ALTER TABLE sequence_test ADD (CONSTRAINT sequence_test_constraint PRIMARY KEY (pkid1, pkid2))");
0567538f 72$dbh->do(qq{
73 CREATE OR REPLACE TRIGGER artist_insert_trg
74 BEFORE INSERT ON artist
75 FOR EACH ROW
76 BEGIN
77 IF :new.artistid IS NULL THEN
78 SELECT artist_seq.nextval
79 INTO :new.artistid
80 FROM DUAL;
81 END IF;
82 END;
83});
e6dd7b42 84$dbh->do(qq{
85 CREATE OR REPLACE TRIGGER cd_insert_trg
86 BEFORE INSERT ON cd
87 FOR EACH ROW
88 BEGIN
89 IF :new.cdid IS NULL THEN
90 SELECT cd_seq.nextval
91 INTO :new.cdid
92 FROM DUAL;
93 END IF;
94 END;
95});
0567538f 96
5db2758d 97{
98 # Swiped from t/bindtype_columns.t to avoid creating my own Resultset.
99
100 local $SIG{__WARN__} = sub {};
101 eval { $dbh->do('DROP TABLE bindtype_test') };
102
103 $dbh->do(qq[
e6dd7b42 104 CREATE TABLE bindtype_test
5db2758d 105 (
106 id integer NOT NULL PRIMARY KEY,
107 bytea integer NULL,
108 blob blob NULL,
109 clob clob NULL
110 )
111 ],{ RaiseError => 1, PrintError => 1 });
112}
113
3ff5b740 114# This is in Core now, but it's here just to test that it doesn't break
115$schema->class('Artist')->load_components('PK::Auto');
116# These are compat shims for PK::Auto...
117$schema->class('CD')->load_components('PK::Auto::Oracle');
118$schema->class('Track')->load_components('PK::Auto::Oracle');
0567538f 119
120# test primary key handling
3ff5b740 121my $new = $schema->resultset('Artist')->create({ name => 'foo' });
c8f4b52b 122is($new->artistid, 1, "Oracle Auto-PK worked");
0567538f 123
e6dd7b42 124my $cd = $schema->resultset('CD')->create({ artist => 1, title => 'EP C', year => '2003' });
62d4dbae 125is($cd->cdid, 1, "Oracle Auto-PK worked - using scalar ref as table name");
e6dd7b42 126
cb464582 127# test again with fully-qualified table name
128$new = $schema->resultset('ArtistFQN')->create( { name => 'bar' } );
129is( $new->artistid, 2, "Oracle Auto-PK worked with fully-qualified tablename" );
130
62d4dbae 131# test rel names over the 30 char limit
132my $query = $schema->resultset('Artist')->search({
133 'cds_very_very_very_long_relationship_name.title' => 'EP C'
134}, {
135 prefetch => 'cds_very_very_very_long_relationship_name'
136});
137
138lives_and {
139 is $query->first->cds_very_very_very_long_relationship_name->cdid, 1
140} 'query with rel name over 30 chars survived and worked';
141
9900b569 142# test join with row count ambiguity
d2a3958e 143
d2a3958e 144my $track = $schema->resultset('Track')->create({ trackid => 1, cd => 1,
9900b569 145 position => 1, title => 'Track1' });
3ff5b740 146my $tjoin = $schema->resultset('Track')->search({ 'me.title' => 'Track1'},
2660b14e 147 { join => 'cd',
148 rows => 2 }
149);
150
d2a3958e 151ok(my $row = $tjoin->next);
152
153is($row->title, 'Track1', "ambiguous column ok");
2660b14e 154
286f32b3 155# check count distinct with multiple columns
3ff5b740 156my $other_track = $schema->resultset('Track')->create({ trackid => 2, cd => 1, position => 1, title => 'Track2' });
11d68671 157
3ff5b740 158my $tcount = $schema->resultset('Track')->search(
11d68671 159 {},
160 {
161 select => [ qw/position title/ ],
162 distinct => 1,
163 }
164);
f12f0d97 165is($tcount->count, 2, 'multiple column COUNT DISTINCT ok');
11d68671 166
167$tcount = $schema->resultset('Track')->search(
168 {},
169 {
170 columns => [ qw/position title/ ],
171 distinct => 1,
172 }
173);
f12f0d97 174is($tcount->count, 2, 'multiple column COUNT DISTINCT ok');
286f32b3 175
11d68671 176$tcount = $schema->resultset('Track')->search(
177 {},
e6dd7b42 178 {
11d68671 179 group_by => [ qw/position title/ ]
180 }
181);
f12f0d97 182is($tcount->count, 2, 'multiple column COUNT DISTINCT using column syntax ok');
2660b14e 183
0567538f 184# test LIMIT support
185for (1..6) {
3ff5b740 186 $schema->resultset('Artist')->create({ name => 'Artist ' . $_ });
0567538f 187}
3ff5b740 188my $it = $schema->resultset('Artist')->search( {},
0567538f 189 { rows => 3,
cb464582 190 offset => 3,
0567538f 191 order_by => 'artistid' }
192);
193is( $it->count, 3, "LIMIT count ok" );
194is( $it->next->name, "Artist 2", "iterator->next ok" );
195$it->next;
196$it->next;
197is( $it->next, undef, "next past end of resultset ok" );
198
e8e971f2 199{
200 my $rs = $schema->resultset('Track')->search( undef, { columns=>[qw/trackid position/], group_by=> [ qw/trackid position/ ] , rows => 2, offset=>1 });
201 my @results = $rs->all;
202 is( scalar @results, 1, "Group by with limit OK" );
203}
204
ccd6f984 205# test auto increment using sequences WITHOUT triggers
39b8d119 206for (1..5) {
207 my $st = $schema->resultset('SequenceTest')->create({ name => 'foo' });
208 is($st->pkid1, $_, "Oracle Auto-PK without trigger: First primary key");
209 is($st->pkid2, $_ + 9, "Oracle Auto-PK without trigger: Second primary key");
210 is($st->nonpkid, $_ + 19, "Oracle Auto-PK without trigger: Non-primary key");
211}
212my $st = $schema->resultset('SequenceTest')->create({ name => 'foo', pkid1 => 55 });
213is($st->pkid1, 55, "Oracle Auto-PK without trigger: First primary key set manually");
ccd6f984 214
8068691e 215SKIP: {
216 skip 'buggy BLOB support in DBD::Oracle 1.23', 8
217 if $DBD::Oracle::VERSION == 1.23;
218
5db2758d 219 my %binstr = ( 'small' => join('', map { chr($_) } ( 1 .. 127 )) );
220 $binstr{'large'} = $binstr{'small'} x 1024;
221
222 my $maxloblen = length $binstr{'large'};
223 note "Localizing LongReadLen to $maxloblen to avoid truncation of test data";
224 local $dbh->{'LongReadLen'} = $maxloblen;
225
226 my $rs = $schema->resultset('BindType');
227 my $id = 0;
228
229 foreach my $type (qw( blob clob )) {
230 foreach my $size (qw( small large )) {
231 $id++;
232
0821ae59 233 lives_ok { $rs->create( { 'id' => $id, $type => $binstr{$size} } ) }
5db2758d 234 "inserted $size $type without dying";
0821ae59 235 ok($rs->find($id)->$type eq $binstr{$size}, "verified inserted $size $type" );
5db2758d 236 }
237 }
238}
239
86cc4156 240done_testing;
241
0567538f 242# clean up our mess
3ff5b740 243END {
fe0d48d3 244 if($schema && ($dbh = $schema->storage->dbh)) {
3ff5b740 245 $dbh->do("DROP SEQUENCE artist_seq");
e6dd7b42 246 $dbh->do("DROP SEQUENCE cd_seq");
39b8d119 247 $dbh->do("DROP SEQUENCE pkid1_seq");
248 $dbh->do("DROP SEQUENCE pkid2_seq");
249 $dbh->do("DROP SEQUENCE nonpkid_seq");
3ff5b740 250 $dbh->do("DROP TABLE artist");
39b8d119 251 $dbh->do("DROP TABLE sequence_test");
3ff5b740 252 $dbh->do("DROP TABLE cd");
253 $dbh->do("DROP TABLE track");
5db2758d 254 $dbh->do("DROP TABLE bindtype_test");
3ff5b740 255 }
256}
0567538f 257