3 no warnings 'uninitialized';
7 use DBIx::Class::Optional::Dependencies ();
11 plan skip_all => 'Test needs ' . DBIx::Class::Optional::Dependencies->req_missing_for ('test_rdbms_ase')
12 unless DBIx::Class::Optional::Dependencies->req_ok_for ('test_rdbms_ase');
14 my ($dsn, $user, $pass) = @ENV{map { "DBICTEST_SYBASE_${_}" } qw/DSN USER PASS/};
18 if (not ($dsn && $user)) {
20 'Set $ENV{DBICTEST_SYBASE_DSN}, _USER and _PASS to run this test' .
21 "\nWarning: This test drops and creates the tables " .
22 "'artist', 'money_test' and 'bindtype_test'";
24 plan tests => $TESTS*2 + 1;
29 'DBI::Sybase::ASE::NoBindVars',
31 eval "require DBIx::Class::Storage::$_;" for @storage_types;
37 DBICTest::Schema->connect($dsn, $user, $pass, {
39 [ blob_setup => log_on_update => 1 ], # this is a safer option
46 my $ping = DBIx::Class::Storage::DBI::Sybase::ASE->can('_ping');
47 *DBIx::Class::Storage::DBI::Sybase::ASE::_ping = sub {
53 for my $storage_type (@storage_types) {
56 unless ($storage_type eq 'DBI::Sybase::ASE') { # autodetect
57 DBICTest::Schema->storage_type("::$storage_type");
60 $schema = get_schema();
62 $schema->storage->ensure_connected;
64 if ($storage_idx == 0 &&
65 $schema->storage->isa('DBIx::Class::Storage::DBI::Sybase::ASE::NoBindVars')) {
66 # no placeholders in this version of Sybase or DBD::Sybase (or using FreeTDS)
67 my $tb = Test::More->builder;
68 $tb->skip('no placeholders') for 1..$TESTS;
72 isa_ok( $schema->storage, "DBIx::Class::Storage::$storage_type" );
74 $schema->storage->_dbh->disconnect;
75 lives_ok (sub { $schema->storage->dbh }, 'reconnect works');
77 $schema->storage->dbh_do (sub {
78 my ($storage, $dbh) = @_;
79 eval { $dbh->do("DROP TABLE artist") };
82 artistid INT IDENTITY PRIMARY KEY,
84 rank INT DEFAULT 13 NOT NULL,
85 charfield CHAR(10) NULL
92 # so we start unconnected
93 $schema->storage->disconnect;
95 # test primary key handling
96 my $new = $schema->resultset('Artist')->create({ name => 'foo' });
97 ok($new->artistid > 0, "Auto-PK worked");
99 $seen_id{$new->artistid}++;
101 # check redispatch to storage-specific insert when auto-detected storage
102 if ($storage_type eq 'DBI::Sybase::ASE') {
103 DBICTest::Schema->storage_type('::DBI');
104 $schema = get_schema();
107 $new = $schema->resultset('Artist')->create({ name => 'Artist 1' });
108 is ( $seen_id{$new->artistid}, undef, 'id for Artist 1 is unique' );
109 $seen_id{$new->artistid}++;
111 # inserts happen in a txn, so we make sure it still works inside a txn too
115 $new = $schema->resultset('Artist')->create({ name => 'Artist ' . $_ });
116 is ( $seen_id{$new->artistid}, undef, "id for Artist $_ is unique" );
117 $seen_id{$new->artistid}++;
123 is ($schema->resultset('Artist')->count, 7, 'count(*) of whole table ok');
126 my $it = $schema->resultset('Artist')->search({
127 artistid => { '>' => 0 }
130 order_by => 'artistid',
133 is( $it->count, 3, "LIMIT count ok" );
135 is( $it->next->name, "foo", "iterator->next ok" );
137 is( $it->next->name, "Artist 2", "iterator->next ok" );
138 is( $it->next, undef, "next past end of resultset ok" );
140 # now try with offset
141 $it = $schema->resultset('Artist')->search({}, {
144 order_by => 'artistid',
147 is( $it->count, 3, "LIMIT with offset count ok" );
149 is( $it->next->name, "Artist 3", "iterator->next ok" );
151 is( $it->next->name, "Artist 5", "iterator->next ok" );
152 is( $it->next, undef, "next past end of resultset ok" );
154 # now try a grouped count
155 $schema->resultset('Artist')->create({ name => 'Artist 6' })
158 $it = $schema->resultset('Artist')->search({}, {
162 is( $it->count, 7, 'COUNT of GROUP_BY ok' );
164 # do an IDENTITY_INSERT
166 no warnings 'redefine';
169 local $schema->storage->{debug} = 1;
170 local $schema->storage->debugobj->{callback} = sub {
171 push @debug_out, $_[1];
175 my $txn_commit = \&DBIx::Class::Storage::DBI::txn_commit;
176 local *DBIx::Class::Storage::DBI::txn_commit = sub {
181 $schema->resultset('Artist')
182 ->create({ artistid => 999, name => 'mtfnpy' });
184 ok((grep /IDENTITY_INSERT/i, @debug_out), 'IDENTITY_INSERT used');
187 skip 'not testing lack of txn on IDENTITY_INSERT with NoBindVars', 1
188 if $storage_type =~ /NoBindVars/i;
190 is $txn_used, 0, 'no txn on insert with IDENTITY_INSERT';
194 # do an IDENTITY_UPDATE
197 local $schema->storage->{debug} = 1;
198 local $schema->storage->debugobj->{callback} = sub {
199 push @debug_out, $_[1];
203 $schema->resultset('Artist')
204 ->find(999)->update({ artistid => 555 });
205 ok((grep /IDENTITY_UPDATE/i, @debug_out));
206 } 'IDENTITY_UPDATE used';
210 my $bulk_rs = $schema->resultset('Artist')->search({
211 name => { -like => 'bulk artist %' }
214 # test insert_bulk using populate.
216 skip 'insert_bulk not supported', 4
217 unless $storage_type !~ /NoBindVars/i;
220 $schema->resultset('Artist')->populate([
222 name => 'bulk artist 1',
226 name => 'bulk artist 2',
230 name => 'bulk artist 3',
234 } 'insert_bulk via populate';
236 is $bulk_rs->count, 3, 'correct number inserted via insert_bulk';
238 is ((grep $_->charfield eq 'foo', $bulk_rs->all), 3,
239 'column set correctly via insert_bulk');
242 @bulk_ids{map $_->artistid, $bulk_rs->all} = ();
244 is ((scalar keys %bulk_ids), 3,
245 'identities generated correctly in insert_bulk');
250 # make sure insert_bulk works a second time on the same connection
252 skip 'insert_bulk not supported', 3
253 unless $storage_type !~ /NoBindVars/i;
256 $schema->resultset('Artist')->populate([
258 name => 'bulk artist 1',
262 name => 'bulk artist 2',
266 name => 'bulk artist 3',
270 } 'insert_bulk via populate called a second time';
272 is $bulk_rs->count, 3,
273 'correct number inserted via insert_bulk';
275 is ((grep $_->charfield eq 'bar', $bulk_rs->all), 3,
276 'column set correctly via insert_bulk');
281 # test invalid insert_bulk (missing required column)
283 # There should be a rollback, reconnect and the next valid insert_bulk should
286 $schema->resultset('Artist')->populate([
291 } qr/no value or default|does not allow null|placeholders/i,
292 # The second pattern is the error from fallback to regular array insert on
293 # incompatible charset.
294 # The third is for ::NoBindVars with no syb_has_blk.
295 'insert_bulk with missing required column throws error';
297 # now test insert_bulk with IDENTITY_INSERT
299 skip 'insert_bulk not supported', 3
300 unless $storage_type !~ /NoBindVars/i;
303 $schema->resultset('Artist')->populate([
306 name => 'bulk artist 1',
311 name => 'bulk artist 2',
316 name => 'bulk artist 3',
320 } 'insert_bulk with IDENTITY_INSERT via populate';
322 is $bulk_rs->count, 3,
323 'correct number inserted via insert_bulk with IDENTITY_INSERT';
325 is ((grep $_->charfield eq 'foo', $bulk_rs->all), 3,
326 'column set correctly via insert_bulk with IDENTITY_INSERT');
331 # test correlated subquery
332 my $subq = $schema->resultset('Artist')->search({ artistid => { '>' => 3 } })
333 ->get_column('artistid')
335 my $subq_rs = $schema->resultset('Artist')->search({
336 artistid => { -in => $subq }
338 is $subq_rs->count, 11, 'correlated subquery';
340 # mostly stolen from the blob stuff Nniuq wrote for t/73oracle.t
342 skip 'TEXT/IMAGE support does not work with FreeTDS', 22
343 if $schema->storage->using_freetds;
345 my $dbh = $schema->storage->_dbh;
347 local $SIG{__WARN__} = sub {};
348 eval { $dbh->do('DROP TABLE bindtype_test') };
351 CREATE TABLE bindtype_test
353 id INT IDENTITY PRIMARY KEY,
359 ],{ RaiseError => 1, PrintError => 0 });
362 my %binstr = ( 'small' => join('', map { chr($_) } ( 1 .. 127 )) );
363 $binstr{'large'} = $binstr{'small'} x 1024;
365 my $maxloblen = length $binstr{'large'};
367 if (not $schema->storage->using_freetds) {
368 $dbh->{'LongReadLen'} = $maxloblen * 2;
370 $dbh->do("set textsize ".($maxloblen * 2));
373 my $rs = $schema->resultset('BindType');
376 foreach my $type (qw(blob clob)) {
377 foreach my $size (qw(small large)) {
378 no warnings 'uninitialized';
382 $created = $rs->create( { $type => $binstr{$size} } )
383 } "inserted $size $type without dying";
385 $last_id = $created->id if $created;
388 ok($rs->find($last_id)->$type eq $binstr{$size})
389 } "verified inserted $size $type";
395 # blob insert with explicit PK
396 # also a good opportunity to test IDENTITY_INSERT
398 $rs->create( { id => 1, blob => $binstr{large} } )
399 } 'inserted large blob without dying with manual PK';
402 ok($rs->find(1)->blob eq $binstr{large})
403 } 'verified inserted large blob with manual PK';
406 my $new_str = $binstr{large} . 'mtfnpy';
408 # check redispatch to storage-specific update when auto-detected storage
409 if ($storage_type eq 'DBI::Sybase::ASE') {
410 DBICTest::Schema->storage_type('::DBI');
411 $schema = get_schema();
415 $rs->search({ id => 1 })->update({ blob => $new_str })
416 } 'updated blob successfully';
419 ok($rs->find(1)->blob eq $new_str)
420 } 'verified updated blob';
422 # try a blob update with IDENTITY_UPDATE
424 $new_str = $binstr{large} . 'hlagh';
425 $rs->find(1)->update({ id => 999, blob => $new_str });
426 ok($rs->find(999)->blob eq $new_str);
427 } 'verified updated blob with IDENTITY_UPDATE';
429 ## try multi-row blob update
430 # first insert some blobs
431 $new_str = $binstr{large} . 'foo';
434 $rs->create({ blob => $binstr{large} }) for (1..2);
435 $rs->update({ blob => $new_str });
436 is((grep $_->blob eq $new_str, $rs->all), 2);
437 } 'multi-row blob update';
441 # now try insert_bulk with blobs and only blobs
442 $new_str = $binstr{large} . 'bar';
446 blob => $binstr{large},
450 blob => $binstr{large},
454 } 'insert_bulk with blobs does not die';
456 is((grep $_->blob eq $binstr{large}, $rs->all), 2,
457 'IMAGE column set correctly via insert_bulk');
459 is((grep $_->clob eq $new_str, $rs->all), 2,
460 'TEXT column set correctly via insert_bulk');
462 # now try insert_bulk with blobs and a non-blob which also happens to be an
465 skip 'no insert_bulk without placeholders', 4
466 if $storage_type =~ /NoBindVars/i;
469 $new_str = $binstr{large} . 'bar';
475 blob => $binstr{large},
482 blob => $binstr{large},
487 } 'insert_bulk with blobs and explicit identity does NOT die';
489 is((grep $_->blob eq $binstr{large}, $rs->all), 2,
490 'IMAGE column set correctly via insert_bulk with identity');
492 is((grep $_->clob eq $new_str, $rs->all), 2,
493 'TEXT column set correctly via insert_bulk with identity');
495 is_deeply [ map $_->id, $rs->all ], [ 1,2 ],
496 'explicit identities set correctly via insert_bulk with blobs';
501 $rs->create({ blob => $binstr{large} }) for (1..2);
502 $rs->update({ blob => undef });
503 is((grep !defined($_->blob), $rs->all), 2);
504 } 'blob update to NULL';
507 # test MONEY column support (and some other misc. stuff)
508 $schema->storage->dbh_do (sub {
509 my ($storage, $dbh) = @_;
510 eval { $dbh->do("DROP TABLE money_test") };
512 CREATE TABLE money_test (
513 id INT IDENTITY PRIMARY KEY,
514 amount MONEY DEFAULT $999.99 NULL
519 my $rs = $schema->resultset('Money');
521 # test insert with defaults
524 is((grep $_->amount == 999.99, $rs->all), 1);
525 } 'insert with all defaults works';
528 # test insert transaction when there's an active cursor
530 my $artist_rs = $schema->resultset('Artist');
533 my $row = $schema->resultset('Money')->create({ amount => 100 });
535 } 'inserted a row with an active cursor';
536 $ping_count-- if $@; # dbh_do calls ->connected
539 # test insert in an outer transaction when there's an active cursor
541 local $TODO = 'this should work once we have eager cursors';
543 # clear state, or we get a deadlock on $row->delete
544 # XXX figure out why this happens
545 $schema->storage->disconnect;
548 $schema->txn_do(sub {
549 my $artist_rs = $schema->resultset('Artist');
551 my $row = $schema->resultset('Money')->create({ amount => 100 });
554 } 'inserted a row with an active cursor in outer txn';
555 $ping_count-- if $@; # dbh_do calls ->connected
558 # Now test money values.
561 $row = $rs->create({ amount => 100 });
562 } 'inserted a money value';
564 cmp_ok eval { $rs->find($row->id)->amount }, '==', 100,
565 'money value round-trip';
568 $row->update({ amount => 200 });
569 } 'updated a money value';
571 cmp_ok eval { $rs->find($row->id)->amount }, '==', 200,
572 'updated money value round-trip';
575 $row->update({ amount => undef });
576 } 'updated a money value to NULL';
579 my $null_amount = $rs->find($row->id)->amount;
580 is $null_amount, undef;
581 } 'updated money value to NULL round-trip';
583 # Test computed columns and timestamps
584 $schema->storage->dbh_do (sub {
585 my ($storage, $dbh) = @_;
586 eval { $dbh->do("DROP TABLE computed_column_test") };
588 CREATE TABLE computed_column_test (
589 id INT IDENTITY PRIMARY KEY,
590 a_computed_column AS getdate(),
591 a_timestamp timestamp,
592 charfield VARCHAR(20) DEFAULT 'foo'
597 require DBICTest::Schema::ComputedColumn;
598 $schema->register_class(
599 ComputedColumn => 'DBICTest::Schema::ComputedColumn'
602 ok (($rs = $schema->resultset('ComputedColumn')),
603 'got rs for ComputedColumn');
605 lives_ok { $row = $rs->create({}) }
606 'empty insert for a table with computed columns survived';
609 $row->update({ charfield => 'bar' })
610 } 'update of a table with computed columns survived';
613 is $ping_count, 0, 'no pings';
617 if (my $dbh = eval { $schema->storage->_dbh }) {
618 eval { $dbh->do("DROP TABLE $_") }
619 for qw/artist bindtype_test money_test computed_column_test/;