Merge 'trunk' into 'sybase_support'
[dbsrgits/DBIx-Class.git] / t / 746sybase.t
CommitLineData
a964a928 1use strict;
d867eeda 2use warnings;
3no warnings 'uninitialized';
a964a928 4
5use Test::More;
e0b2344f 6use Test::Exception;
a964a928 7use lib qw(t/lib);
8use DBICTest;
2baff5da 9
10require DBIx::Class::Storage::DBI::Sybase;
11require DBIx::Class::Storage::DBI::Sybase::NoBindVars;
a964a928 12
13my ($dsn, $user, $pass) = @ENV{map { "DBICTEST_SYBASE_${_}" } qw/DSN USER PASS/};
14
689819e1 15my $TESTS = 51 + 2;
5703eb14 16
d867eeda 17if (not ($dsn && $user)) {
18 plan skip_all =>
19 'Set $ENV{DBICTEST_SYBASE_DSN}, _USER and _PASS to run this test' .
20 "\nWarning: This test drops and creates the tables " .
21 "'artist', 'money_test' and 'bindtype_test'";
22} else {
23 plan tests => $TESTS*2 + 1;
24}
25
26my @storage_types = (
27 'DBI::Sybase',
28 'DBI::Sybase::NoBindVars',
29);
30my $schema;
31my $storage_idx = -1;
32
33sub get_schema {
34 DBICTest::Schema->connect($dsn, $user, $pass, {
35 on_connect_call => [
36 [ blob_setup => log_on_update => 1 ], # this is a safer option
37 ],
38 });
39}
40
41my $ping_count = 0;
42{
43 my $ping = DBIx::Class::Storage::DBI::Sybase->can('_ping');
44 *DBIx::Class::Storage::DBI::Sybase::_ping = sub {
45 $ping_count++;
46 goto $ping;
47 };
48}
49
50for my $storage_type (@storage_types) {
51 $storage_idx++;
52
53 unless ($storage_type eq 'DBI::Sybase') { # autodetect
54 DBICTest::Schema->storage_type("::$storage_type");
55 }
61cfaef7 56
d867eeda 57 $schema = get_schema();
a964a928 58
d867eeda 59 $schema->storage->ensure_connected;
a964a928 60
d867eeda 61 if ($storage_idx == 0 &&
62 $schema->storage->isa('DBIx::Class::Storage::DBI::Sybase::NoBindVars')) {
63# no placeholders in this version of Sybase or DBD::Sybase (or using FreeTDS)
64 my $tb = Test::More->builder;
65 $tb->skip('no placeholders') for 1..$TESTS;
66 next;
67 }
5703eb14 68
d867eeda 69 isa_ok( $schema->storage, "DBIx::Class::Storage::$storage_type" );
6b1f5ef7 70
d867eeda 71 $schema->storage->_dbh->disconnect;
72 lives_ok (sub { $schema->storage->dbh }, 'reconnect works');
64f4e691 73
d867eeda 74 $schema->storage->dbh_do (sub {
75 my ($storage, $dbh) = @_;
76 eval { $dbh->do("DROP TABLE artist") };
77 $dbh->do(<<'SQL');
a964a928 78CREATE TABLE artist (
d867eeda 79 artistid INT IDENTITY PRIMARY KEY,
a964a928 80 name VARCHAR(100),
81 rank INT DEFAULT 13 NOT NULL,
d867eeda 82 charfield CHAR(10) NULL
a964a928 83)
26283ee3 84SQL
d867eeda 85 });
a964a928 86
d867eeda 87 my %seen_id;
a964a928 88
d867eeda 89# so we start unconnected
90 $schema->storage->disconnect;
fcc2ec11 91
26283ee3 92# test primary key handling
d867eeda 93 my $new = $schema->resultset('Artist')->create({ name => 'foo' });
94 ok($new->artistid > 0, "Auto-PK worked");
fcc2ec11 95
d867eeda 96 $seen_id{$new->artistid}++;
fcc2ec11 97
d867eeda 98# check redispatch to storage-specific insert when auto-detected storage
99 if ($storage_type eq 'DBI::Sybase') {
100 DBICTest::Schema->storage_type('::DBI');
101 $schema = get_schema();
102 }
103
104 $new = $schema->resultset('Artist')->create({ name => 'Artist 1' });
105 is ( $seen_id{$new->artistid}, undef, 'id for Artist 1 is unique' );
106 $seen_id{$new->artistid}++;
107
108# inserts happen in a txn, so we make sure it still works inside a txn too
109 $schema->txn_begin;
110
111 for (2..6) {
a964a928 112 $new = $schema->resultset('Artist')->create({ name => 'Artist ' . $_ });
113 is ( $seen_id{$new->artistid}, undef, "id for Artist $_ is unique" );
114 $seen_id{$new->artistid}++;
d867eeda 115 }
a964a928 116
d867eeda 117 $schema->txn_commit;
a964a928 118
d867eeda 119# test simple count
120 is ($schema->resultset('Artist')->count, 7, 'count(*) of whole table ok');
121
122# test LIMIT support
123 my $it = $schema->resultset('Artist')->search({
124 artistid => { '>' => 0 }
125 }, {
a0348159 126 rows => 3,
a0348159 127 order_by => 'artistid',
d867eeda 128 });
af9e4a5e 129
d867eeda 130 is( $it->count, 3, "LIMIT count ok" );
e19677ad 131
d867eeda 132 is( $it->next->name, "foo", "iterator->next ok" );
133 $it->next;
134 is( $it->next->name, "Artist 2", "iterator->next ok" );
135 is( $it->next, undef, "next past end of resultset ok" );
136
137# now try with offset
138 $it = $schema->resultset('Artist')->search({}, {
139 rows => 3,
140 offset => 3,
141 order_by => 'artistid',
142 });
143
144 is( $it->count, 3, "LIMIT with offset count ok" );
145
146 is( $it->next->name, "Artist 3", "iterator->next ok" );
147 $it->next;
148 is( $it->next->name, "Artist 5", "iterator->next ok" );
149 is( $it->next, undef, "next past end of resultset ok" );
150
151# now try a grouped count
152 $schema->resultset('Artist')->create({ name => 'Artist 6' })
153 for (1..6);
154
155 $it = $schema->resultset('Artist')->search({}, {
156 group_by => 'name'
157 });
158
159 is( $it->count, 7, 'COUNT of GROUP_BY ok' );
160
2baff5da 161# do an IDENTITY_INSERT
d867eeda 162 {
163 no warnings 'redefine';
164
165 my @debug_out;
166 local $schema->storage->{debug} = 1;
167 local $schema->storage->debugobj->{callback} = sub {
168 push @debug_out, $_[1];
169 };
170
171 my $txn_used = 0;
172 my $txn_commit = \&DBIx::Class::Storage::DBI::txn_commit;
173 local *DBIx::Class::Storage::DBI::txn_commit = sub {
174 $txn_used = 1;
175 goto &$txn_commit;
176 };
177
178 $schema->resultset('Artist')
179 ->create({ artistid => 999, name => 'mtfnpy' });
180
2baff5da 181 ok((grep /IDENTITY_INSERT/i, @debug_out), 'IDENTITY_INSERT used');
d867eeda 182
183 SKIP: {
184 skip 'not testing lack of txn on IDENTITY_INSERT with NoBindVars', 1
185 if $storage_type =~ /NoBindVars/i;
186
187 is $txn_used, 0, 'no txn on insert with IDENTITY_INSERT';
188 }
189 }
190
2baff5da 191# do an IDENTITY_UPDATE
192 {
193 my @debug_out;
194 local $schema->storage->{debug} = 1;
195 local $schema->storage->debugobj->{callback} = sub {
196 push @debug_out, $_[1];
197 };
198
199 lives_and {
200 $schema->resultset('Artist')
201 ->find(999)->update({ artistid => 555 });
202 ok((grep /IDENTITY_UPDATE/i, @debug_out));
203 } 'IDENTITY_UPDATE used';
204 $ping_count-- if $@;
205 }
d867eeda 206
207 my $bulk_rs = $schema->resultset('Artist')->search({
208 name => { -like => 'bulk artist %' }
209 });
210
689819e1 211# test insert_bulk using populate, this should always pass whether or not it
212# does anything Sybase specific or not. Just here to aid debugging.
2baff5da 213 SKIP: {
214 skip 'insert_bulk not supported', 4
215 unless $schema->storage->_can_insert_bulk;
e06ad5d5 216
2baff5da 217 lives_ok {
218 $schema->resultset('Artist')->populate([
219 {
220 name => 'bulk artist 1',
221 charfield => 'foo',
222 },
223 {
224 name => 'bulk artist 2',
225 charfield => 'foo',
226 },
227 {
228 name => 'bulk artist 3',
229 charfield => 'foo',
230 },
231 ]);
232 } 'insert_bulk via populate';
233
234 is $bulk_rs->count, 3, 'correct number inserted via insert_bulk';
235
236 is ((grep $_->charfield eq 'foo', $bulk_rs->all), 3,
237 'column set correctly via insert_bulk');
238
239 my %bulk_ids;
240 @bulk_ids{map $_->artistid, $bulk_rs->all} = ();
241
242 is ((scalar keys %bulk_ids), 3,
243 'identities generated correctly in insert_bulk');
244
245 $bulk_rs->delete;
246 }
e06ad5d5 247
d867eeda 248# now test insert_bulk with IDENTITY_INSERT
2baff5da 249 SKIP: {
250 skip 'insert_bulk not supported', 3
251 unless $schema->storage->_can_insert_bulk;
e19677ad 252
2baff5da 253 lives_ok {
254 $schema->resultset('Artist')->populate([
255 {
256 artistid => 2001,
257 name => 'bulk artist 1',
258 charfield => 'foo',
259 },
260 {
261 artistid => 2002,
262 name => 'bulk artist 2',
263 charfield => 'foo',
264 },
265 {
266 artistid => 2003,
267 name => 'bulk artist 3',
268 charfield => 'foo',
269 },
270 ]);
271 } 'insert_bulk with IDENTITY_INSERT via populate';
272
273 is $bulk_rs->count, 3,
274 'correct number inserted via insert_bulk with IDENTITY_INSERT';
275
276 is ((grep $_->charfield eq 'foo', $bulk_rs->all), 3,
277 'column set correctly via insert_bulk with IDENTITY_INSERT');
278
279 $bulk_rs->delete;
280 }
d867eeda 281
282# test correlated subquery
283 my $subq = $schema->resultset('Artist')->search({ artistid => { '>' => 3 } })
284 ->get_column('artistid')
285 ->as_query;
286 my $subq_rs = $schema->resultset('Artist')->search({
287 artistid => { -in => $subq }
288 });
289 is $subq_rs->count, 11, 'correlated subquery';
290
291# mostly stolen from the blob stuff Nniuq wrote for t/73oracle.t
292 SKIP: {
689819e1 293 skip 'TEXT/IMAGE support does not work with FreeTDS', 15
d867eeda 294 if $schema->storage->using_freetds;
295
296 my $dbh = $schema->storage->_dbh;
297 {
298 local $SIG{__WARN__} = sub {};
299 eval { $dbh->do('DROP TABLE bindtype_test') };
300
301 $dbh->do(qq[
302 CREATE TABLE bindtype_test
303 (
304 id INT IDENTITY PRIMARY KEY,
305 bytea INT NULL,
306 blob IMAGE NULL,
307 clob TEXT NULL
308 )
309 ],{ RaiseError => 1, PrintError => 0 });
310 }
311
312 my %binstr = ( 'small' => join('', map { chr($_) } ( 1 .. 127 )) );
313 $binstr{'large'} = $binstr{'small'} x 1024;
314
315 my $maxloblen = length $binstr{'large'};
316
317 if (not $schema->storage->using_freetds) {
318 $dbh->{'LongReadLen'} = $maxloblen * 2;
319 } else {
320 $dbh->do("set textsize ".($maxloblen * 2));
321 }
322
323 my $rs = $schema->resultset('BindType');
324 my $last_id;
325
326 foreach my $type (qw(blob clob)) {
327 foreach my $size (qw(small large)) {
328 no warnings 'uninitialized';
329
330 my $created = eval { $rs->create( { $type => $binstr{$size} } ) };
331 ok(!$@, "inserted $size $type without dying");
332 diag $@ if $@;
333
334 $last_id = $created->id if $created;
335
336 my $got = eval {
337 $rs->find($last_id)->$type
338 };
339 diag $@ if $@;
340 ok($got eq $binstr{$size}, "verified inserted $size $type");
341 }
342 }
343
344 # blob insert with explicit PK
345 # also a good opportunity to test IDENTITY_INSERT
d867eeda 346
689819e1 347 $rs->delete;
348
d867eeda 349 my $created = eval { $rs->create( { id => 1, blob => $binstr{large} } ) };
350 ok(!$@, "inserted large blob without dying with manual PK");
351 diag $@ if $@;
352
353 my $got = eval {
354 $rs->find(1)->blob
355 };
356 diag $@ if $@;
357 ok($got eq $binstr{large}, "verified inserted large blob with manual PK");
358
359 # try a blob update
360 my $new_str = $binstr{large} . 'mtfnpy';
361
362 # check redispatch to storage-specific update when auto-detected storage
363 if ($storage_type eq 'DBI::Sybase') {
364 DBICTest::Schema->storage_type('::DBI');
365 $schema = get_schema();
366 }
367
368 eval { $rs->search({ id => 1 })->update({ blob => $new_str }) };
369 ok !$@, 'updated blob successfully';
370 diag $@ if $@;
371 $got = eval {
372 $rs->find(1)->blob
373 };
374 diag $@ if $@;
375 ok($got eq $new_str, "verified updated blob");
376
2baff5da 377 # try a blob update with IDENTITY_UPDATE
378 lives_and {
379 $new_str = $binstr{large} . 'hlagh';
380 $rs->find(1)->update({ id => 999, blob => $new_str });
381 ok($rs->find(999)->blob eq $new_str);
382 } 'verified updated blob with IDENTITY_UPDATE';
7ef97d26 383
d867eeda 384 ## try multi-row blob update
385 # first insert some blobs
2baff5da 386 $rs->delete;
d867eeda 387 $rs->create({ blob => $binstr{large} }) for (1..3);
388 $new_str = $binstr{large} . 'foo';
389 $rs->update({ blob => $new_str });
390 is((grep $_->blob eq $new_str, $rs->all), 3, 'multi-row blob update');
2baff5da 391
392 # make sure impossible blob update throws
393 throws_ok {
394 $rs->update({ clob => 'foo' });
395 $rs->create({ clob => 'bar' });
396 $rs->search({ clob => 'foo' })->update({ clob => 'bar' });
397 } qr/impossible/, 'impossible blob update throws';
d867eeda 398 }
399
400# test MONEY column support
401 $schema->storage->dbh_do (sub {
402 my ($storage, $dbh) = @_;
403 eval { $dbh->do("DROP TABLE money_test") };
404 $dbh->do(<<'SQL');
405CREATE TABLE money_test (
406 id INT IDENTITY PRIMARY KEY,
407 amount MONEY NULL
408)
409SQL
410 });
411
412# test insert transaction when there's an active cursor
2baff5da 413 {
d867eeda 414 my $artist_rs = $schema->resultset('Artist');
415 $artist_rs->first;
416 lives_ok {
417 my $row = $schema->resultset('Money')->create({ amount => 100 });
418 $row->delete;
419 } 'inserted a row with an active cursor';
420 $ping_count-- if $@; # dbh_do calls ->connected
421 }
422
423# test insert in an outer transaction when there's an active cursor
424 TODO: {
425 local $TODO = 'this should work once we have eager cursors';
426
427# clear state, or we get a deadlock on $row->delete
428# XXX figure out why this happens
429 $schema->storage->disconnect;
430
431 lives_ok {
432 $schema->txn_do(sub {
433 my $artist_rs = $schema->resultset('Artist');
434 $artist_rs->first;
435 my $row = $schema->resultset('Money')->create({ amount => 100 });
436 $row->delete;
437 });
438 } 'inserted a row with an active cursor in outer txn';
439 $ping_count-- if $@; # dbh_do calls ->connected
440 }
441
442# Now test money values.
443 my $rs = $schema->resultset('Money');
444
445 my $row;
446 lives_ok {
447 $row = $rs->create({ amount => 100 });
448 } 'inserted a money value';
449
450 is eval { $rs->find($row->id)->amount }, 100, 'money value round-trip';
451
452 lives_ok {
453 $row->update({ amount => 200 });
454 } 'updated a money value';
455
456 is eval { $rs->find($row->id)->amount },
457 200, 'updated money value round-trip';
458
459 lives_ok {
460 $row->update({ amount => undef });
461 } 'updated a money value to NULL';
462
463 my $null_amount = eval { $rs->find($row->id)->amount };
464 ok(
465 (($null_amount == undef) && (not $@)),
466 'updated money value to NULL round-trip'
467 );
468 diag $@ if $@;
469}
470
471is $ping_count, 0, 'no pings';
f1358489 472
a964a928 473# clean up our mess
474END {
d867eeda 475 if (my $dbh = eval { $schema->storage->_dbh }) {
476 eval { $dbh->do("DROP TABLE $_") }
477 for qw/artist bindtype_test money_test/;
478 }
a964a928 479}