3 no warnings 'uninitialized';
10 require DBIx::Class::Storage::DBI::Sybase;
11 require DBIx::Class::Storage::DBI::Sybase::NoBindVars;
13 my ($dsn, $user, $pass) = @ENV{map { "DBICTEST_SYBASE_${_}" } qw/DSN USER PASS/};
17 if (not ($dsn && $user)) {
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'";
23 plan tests => $TESTS*2 + 1;
28 'DBI::Sybase::NoBindVars',
34 DBICTest::Schema->connect($dsn, $user, $pass, {
36 [ blob_setup => log_on_update => 1 ], # this is a safer option
43 my $ping = DBIx::Class::Storage::DBI::Sybase->can('_ping');
44 *DBIx::Class::Storage::DBI::Sybase::_ping = sub {
50 for my $storage_type (@storage_types) {
53 unless ($storage_type eq 'DBI::Sybase') { # autodetect
54 DBICTest::Schema->storage_type("::$storage_type");
57 $schema = get_schema();
59 $schema->storage->ensure_connected;
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;
69 isa_ok( $schema->storage, "DBIx::Class::Storage::$storage_type" );
71 $schema->storage->_dbh->disconnect;
72 lives_ok (sub { $schema->storage->dbh }, 'reconnect works');
74 $schema->storage->dbh_do (sub {
75 my ($storage, $dbh) = @_;
76 eval { $dbh->do("DROP TABLE artist") };
79 artistid INT IDENTITY PRIMARY KEY,
81 rank INT DEFAULT 13 NOT NULL,
82 charfield CHAR(10) NULL
89 # so we start unconnected
90 $schema->storage->disconnect;
92 # test primary key handling
93 my $new = $schema->resultset('Artist')->create({ name => 'foo' });
94 ok($new->artistid > 0, "Auto-PK worked");
96 $seen_id{$new->artistid}++;
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();
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}++;
108 # inserts happen in a txn, so we make sure it still works inside a txn too
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}++;
120 is ($schema->resultset('Artist')->count, 7, 'count(*) of whole table ok');
123 my $it = $schema->resultset('Artist')->search({
124 artistid => { '>' => 0 }
127 order_by => 'artistid',
130 is( $it->count, 3, "LIMIT count ok" );
132 is( $it->next->name, "foo", "iterator->next ok" );
134 is( $it->next->name, "Artist 2", "iterator->next ok" );
135 is( $it->next, undef, "next past end of resultset ok" );
137 # now try with offset
138 $it = $schema->resultset('Artist')->search({}, {
141 order_by => 'artistid',
144 is( $it->count, 3, "LIMIT with offset count ok" );
146 is( $it->next->name, "Artist 3", "iterator->next ok" );
148 is( $it->next->name, "Artist 5", "iterator->next ok" );
149 is( $it->next, undef, "next past end of resultset ok" );
151 # now try a grouped count
152 $schema->resultset('Artist')->create({ name => 'Artist 6' })
155 $it = $schema->resultset('Artist')->search({}, {
159 is( $it->count, 7, 'COUNT of GROUP_BY ok' );
161 # do an IDENTITY_INSERT
163 no warnings 'redefine';
166 local $schema->storage->{debug} = 1;
167 local $schema->storage->debugobj->{callback} = sub {
168 push @debug_out, $_[1];
172 my $txn_commit = \&DBIx::Class::Storage::DBI::txn_commit;
173 local *DBIx::Class::Storage::DBI::txn_commit = sub {
178 $schema->resultset('Artist')
179 ->create({ artistid => 999, name => 'mtfnpy' });
181 ok((grep /IDENTITY_INSERT/i, @debug_out), 'IDENTITY_INSERT used');
184 skip 'not testing lack of txn on IDENTITY_INSERT with NoBindVars', 1
185 if $storage_type =~ /NoBindVars/i;
187 is $txn_used, 0, 'no txn on insert with IDENTITY_INSERT';
191 # do an IDENTITY_UPDATE
194 local $schema->storage->{debug} = 1;
195 local $schema->storage->debugobj->{callback} = sub {
196 push @debug_out, $_[1];
200 $schema->resultset('Artist')
201 ->find(999)->update({ artistid => 555 });
202 ok((grep /IDENTITY_UPDATE/i, @debug_out));
203 } 'IDENTITY_UPDATE used';
207 my $bulk_rs = $schema->resultset('Artist')->search({
208 name => { -like => 'bulk artist %' }
211 # test insert_bulk using populate.
213 skip 'insert_bulk not supported', 4
214 unless $storage_type !~ /NoBindVars/i;
217 $schema->resultset('Artist')->populate([
219 name => 'bulk artist 1',
223 name => 'bulk artist 2',
227 name => 'bulk artist 3',
231 } 'insert_bulk via populate';
233 is $bulk_rs->count, 3, 'correct number inserted via insert_bulk';
235 is ((grep $_->charfield eq 'foo', $bulk_rs->all), 3,
236 'column set correctly via insert_bulk');
239 @bulk_ids{map $_->artistid, $bulk_rs->all} = ();
241 is ((scalar keys %bulk_ids), 3,
242 'identities generated correctly in insert_bulk');
247 # make sure insert_bulk works a second time on the same connection
249 skip 'insert_bulk not supported', 3
250 unless $storage_type !~ /NoBindVars/i;
253 $schema->resultset('Artist')->populate([
255 name => 'bulk artist 1',
259 name => 'bulk artist 2',
263 name => 'bulk artist 3',
267 } 'insert_bulk via populate called a second time';
269 is $bulk_rs->count, 3,
270 'correct number inserted via insert_bulk';
272 is ((grep $_->charfield eq 'bar', $bulk_rs->all), 3,
273 'column set correctly via insert_bulk');
278 # test invalid insert_bulk (missing required column)
280 # There should be a rollback, reconnect and the next valid insert_bulk should
283 $schema->resultset('Artist')->populate([
288 } qr/no value or default|does not allow null|placeholders/i,
289 # The second pattern is the error from fallback to regular array insert on
290 # incompatible charset.
291 # The third is for ::NoBindVars with no syb_has_blk.
292 'insert_bulk with missing required column throws error';
294 # now test insert_bulk with IDENTITY_INSERT
296 skip 'insert_bulk not supported', 3
297 unless $storage_type !~ /NoBindVars/i;
300 $schema->resultset('Artist')->populate([
303 name => 'bulk artist 1',
308 name => 'bulk artist 2',
313 name => 'bulk artist 3',
317 } 'insert_bulk with IDENTITY_INSERT via populate';
319 is $bulk_rs->count, 3,
320 'correct number inserted via insert_bulk with IDENTITY_INSERT';
322 is ((grep $_->charfield eq 'foo', $bulk_rs->all), 3,
323 'column set correctly via insert_bulk with IDENTITY_INSERT');
328 # test correlated subquery
329 my $subq = $schema->resultset('Artist')->search({ artistid => { '>' => 3 } })
330 ->get_column('artistid')
332 my $subq_rs = $schema->resultset('Artist')->search({
333 artistid => { -in => $subq }
335 is $subq_rs->count, 11, 'correlated subquery';
337 # mostly stolen from the blob stuff Nniuq wrote for t/73oracle.t
339 skip 'TEXT/IMAGE support does not work with FreeTDS', 22
340 if $schema->storage->using_freetds;
342 my $dbh = $schema->storage->_dbh;
344 local $SIG{__WARN__} = sub {};
345 eval { $dbh->do('DROP TABLE bindtype_test') };
348 CREATE TABLE bindtype_test
350 id INT IDENTITY PRIMARY KEY,
355 ],{ RaiseError => 1, PrintError => 0 });
358 my %binstr = ( 'small' => join('', map { chr($_) } ( 1 .. 127 )) );
359 $binstr{'large'} = $binstr{'small'} x 1024;
361 my $maxloblen = length $binstr{'large'};
363 if (not $schema->storage->using_freetds) {
364 $dbh->{'LongReadLen'} = $maxloblen * 2;
366 $dbh->do("set textsize ".($maxloblen * 2));
369 my $rs = $schema->resultset('BindType');
372 foreach my $type (qw(blob clob)) {
373 foreach my $size (qw(small large)) {
374 no warnings 'uninitialized';
378 $created = $rs->create( { $type => $binstr{$size} } )
379 } "inserted $size $type without dying";
381 $last_id = $created->id if $created;
384 ok($rs->find($last_id)->$type eq $binstr{$size})
385 } "verified inserted $size $type";
391 # blob insert with explicit PK
392 # also a good opportunity to test IDENTITY_INSERT
394 $rs->create( { id => 1, blob => $binstr{large} } )
395 } 'inserted large blob without dying with manual PK';
398 ok($rs->find(1)->blob eq $binstr{large})
399 } 'verified inserted large blob with manual PK';
402 my $new_str = $binstr{large} . 'mtfnpy';
404 # check redispatch to storage-specific update when auto-detected storage
405 if ($storage_type eq 'DBI::Sybase') {
406 DBICTest::Schema->storage_type('::DBI');
407 $schema = get_schema();
411 $rs->search({ id => 1 })->update({ blob => $new_str })
412 } 'updated blob successfully';
415 ok($rs->find(1)->blob eq $new_str)
416 } 'verified updated blob';
418 # try a blob update with IDENTITY_UPDATE
420 $new_str = $binstr{large} . 'hlagh';
421 $rs->find(1)->update({ id => 999, blob => $new_str });
422 ok($rs->find(999)->blob eq $new_str);
423 } 'verified updated blob with IDENTITY_UPDATE';
425 ## try multi-row blob update
426 # first insert some blobs
427 $new_str = $binstr{large} . 'foo';
430 $rs->create({ blob => $binstr{large} }) for (1..2);
431 $rs->update({ blob => $new_str });
432 is((grep $_->blob eq $new_str, $rs->all), 2);
433 } 'multi-row blob update';
437 # now try insert_bulk with blobs and only blobs
438 $new_str = $binstr{large} . 'bar';
443 blob => $binstr{large},
448 blob => $binstr{large},
452 } 'insert_bulk with blobs does not die';
454 is((grep $_->blob eq $binstr{large}, $rs->all), 2,
455 'IMAGE column set correctly via insert_bulk');
457 is((grep $_->clob eq $new_str, $rs->all), 2,
458 'TEXT column set correctly via insert_bulk');
460 # now try insert_bulk with blobs and a non-blob which also happens to be an
463 skip 'no insert_bulk without placeholders', 4
464 if $storage_type =~ /NoBindVars/i;
467 $new_str = $binstr{large} . 'bar';
473 blob => $binstr{large},
479 blob => $binstr{large},
483 } 'insert_bulk with blobs and explicit identity does NOT die';
485 is((grep $_->blob eq $binstr{large}, $rs->all), 2,
486 'IMAGE column set correctly via insert_bulk with identity');
488 is((grep $_->clob eq $new_str, $rs->all), 2,
489 'TEXT column set correctly via insert_bulk with identity');
491 is_deeply [ map $_->id, $rs->all ], [ 1,2 ],
492 'explicit identities set correctly via insert_bulk with blobs';
497 $rs->create({ blob => $binstr{large} }) for (1..2);
498 $rs->update({ blob => undef });
499 is((grep !defined($_->blob), $rs->all), 2);
500 } 'blob update to NULL';
503 # test MONEY column support (and some other misc. stuff)
504 $schema->storage->dbh_do (sub {
505 my ($storage, $dbh) = @_;
506 eval { $dbh->do("DROP TABLE money_test") };
508 CREATE TABLE money_test (
509 id INT IDENTITY PRIMARY KEY,
510 amount MONEY DEFAULT $999.99 NULL
515 my $rs = $schema->resultset('Money');
517 # test insert with defaults
520 is((grep $_->amount == 999.99, $rs->all), 1);
521 } 'insert with all defaults works';
524 # test insert transaction when there's an active cursor
526 my $artist_rs = $schema->resultset('Artist');
529 my $row = $schema->resultset('Money')->create({ amount => 100 });
531 } 'inserted a row with an active cursor';
532 $ping_count-- if $@; # dbh_do calls ->connected
535 # test insert in an outer transaction when there's an active cursor
537 local $TODO = 'this should work once we have eager cursors';
539 # clear state, or we get a deadlock on $row->delete
540 # XXX figure out why this happens
541 $schema->storage->disconnect;
544 $schema->txn_do(sub {
545 my $artist_rs = $schema->resultset('Artist');
547 my $row = $schema->resultset('Money')->create({ amount => 100 });
550 } 'inserted a row with an active cursor in outer txn';
551 $ping_count-- if $@; # dbh_do calls ->connected
554 # Now test money values.
557 $row = $rs->create({ amount => 100 });
558 } 'inserted a money value';
560 is eval { $rs->find($row->id)->amount }, 100, 'money value round-trip';
563 $row->update({ amount => 200 });
564 } 'updated a money value';
566 is eval { $rs->find($row->id)->amount },
567 200, 'updated money value round-trip';
570 $row->update({ amount => undef });
571 } 'updated a money value to NULL';
573 my $null_amount = eval { $rs->find($row->id)->amount };
575 (($null_amount == undef) && (not $@)),
576 'updated money value to NULL round-trip'
581 is $ping_count, 0, 'no pings';
585 if (my $dbh = eval { $schema->storage->_dbh }) {
586 eval { $dbh->do("DROP TABLE $_") }
587 for qw/artist bindtype_test money_test/;