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