3 no warnings 'uninitialized';
7 use DBIx::Class::Optional::Dependencies ();
11 my ($dsn, $user, $pass) = @ENV{map { "DBICTEST_SYBASE_${_}" } qw/DSN USER PASS/};
12 if (not ($dsn && $user)) {
13 plan skip_all => join ' ',
14 'Set $ENV{DBICTEST_SYBASE_DSN}, _USER and _PASS to run this test.',
15 'Warning: This test drops and creates the tables:',
16 "'artist', 'money_test' and 'bindtype_test'",
20 plan skip_all => 'Test needs ' . DBIx::Class::Optional::Dependencies->req_missing_for ('test_rdbms_ase')
21 unless DBIx::Class::Optional::Dependencies->req_ok_for ('test_rdbms_ase');
25 'DBI::Sybase::ASE::NoBindVars',
27 eval "require DBIx::Class::Storage::$_;" for @storage_types;
33 DBICTest::Schema->connect($dsn, $user, $pass, {
35 [ blob_setup => log_on_update => 1 ], # this is a safer option
42 my $ping = DBIx::Class::Storage::DBI::Sybase::ASE->can('_ping');
43 *DBIx::Class::Storage::DBI::Sybase::ASE::_ping = sub {
49 for my $storage_type (@storage_types) {
52 unless ($storage_type eq 'DBI::Sybase::ASE') { # autodetect
53 DBICTest::Schema->storage_type("::$storage_type");
56 $schema = get_schema();
58 $schema->storage->ensure_connected;
60 if ($storage_idx == 0 &&
61 $schema->storage->isa('DBIx::Class::Storage::DBI::Sybase::ASE::NoBindVars')) {
62 # no placeholders in this version of Sybase or DBD::Sybase (or using FreeTDS)
63 skip "Skipping entire test for $storage_type - no placeholder support", 1;
67 isa_ok( $schema->storage, "DBIx::Class::Storage::$storage_type" );
69 $schema->storage->_dbh->disconnect;
70 lives_ok (sub { $schema->storage->dbh }, 'reconnect works');
72 $schema->storage->dbh_do (sub {
73 my ($storage, $dbh) = @_;
74 eval { $dbh->do("DROP TABLE artist") };
77 artistid INT IDENTITY PRIMARY KEY,
79 rank INT DEFAULT 13 NOT NULL,
80 charfield CHAR(10) NULL
87 # so we start unconnected
88 $schema->storage->disconnect;
90 # test primary key handling
91 my $new = $schema->resultset('Artist')->create({ name => 'foo' });
92 like $new->artistid, qr/^\d+\z/, 'Auto-PK returned a number';
93 ok($new->artistid > 0, "Auto-PK worked");
95 $seen_id{$new->artistid}++;
97 # check redispatch to storage-specific insert when auto-detected storage
98 if ($storage_type eq 'DBI::Sybase::ASE') {
99 DBICTest::Schema->storage_type('::DBI');
100 $schema = get_schema();
103 $new = $schema->resultset('Artist')->create({ name => 'Artist 1' });
104 is ( $seen_id{$new->artistid}, undef, 'id for Artist 1 is unique' );
105 $seen_id{$new->artistid}++;
107 # inserts happen in a txn, so we make sure it still works inside a txn too
111 $new = $schema->resultset('Artist')->create({ name => 'Artist ' . $_ });
112 is ( $seen_id{$new->artistid}, undef, "id for Artist $_ is unique" );
113 $seen_id{$new->artistid}++;
119 is ($schema->resultset('Artist')->count, 7, 'count(*) of whole table ok');
122 my $it = $schema->resultset('Artist')->search({
123 artistid => { '>' => 0 }
126 order_by => 'artistid',
129 is( $it->count, 3, "LIMIT count ok" );
131 is( $it->next->name, "foo", "iterator->next ok" );
133 is( $it->next->name, "Artist 2", "iterator->next ok" );
134 is( $it->next, undef, "next past end of resultset ok" );
136 # now try with offset
137 $it = $schema->resultset('Artist')->search({}, {
140 order_by => 'artistid',
143 is( $it->count, 3, "LIMIT with offset count ok" );
145 is( $it->next->name, "Artist 3", "iterator->next ok" );
147 is( $it->next->name, "Artist 5", "iterator->next ok" );
148 is( $it->next, undef, "next past end of resultset ok" );
150 # now try a grouped count
151 $schema->resultset('Artist')->create({ name => 'Artist 6' })
154 $it = $schema->resultset('Artist')->search({}, {
158 is( $it->count, 7, 'COUNT of GROUP_BY ok' );
160 # do an IDENTITY_INSERT
162 no warnings 'redefine';
165 local $schema->storage->{debug} = 1;
166 local $schema->storage->debugobj->{callback} = sub {
167 push @debug_out, $_[1];
171 my $txn_commit = \&DBIx::Class::Storage::DBI::txn_commit;
172 local *DBIx::Class::Storage::DBI::txn_commit = sub {
177 $schema->resultset('Artist')
178 ->create({ artistid => 999, name => 'mtfnpy' });
180 ok((grep /IDENTITY_INSERT/i, @debug_out), 'IDENTITY_INSERT used');
183 skip 'not testing lack of txn on IDENTITY_INSERT with NoBindVars', 1
184 if $storage_type =~ /NoBindVars/i;
186 is $txn_used, 0, 'no txn on insert with IDENTITY_INSERT';
190 # do an IDENTITY_UPDATE
193 local $schema->storage->{debug} = 1;
194 local $schema->storage->debugobj->{callback} = sub {
195 push @debug_out, $_[1];
199 $schema->resultset('Artist')
200 ->find(999)->update({ artistid => 555 });
201 ok((grep /IDENTITY_UPDATE/i, @debug_out));
202 } 'IDENTITY_UPDATE used';
206 my $bulk_rs = $schema->resultset('Artist')->search({
207 name => { -like => 'bulk artist %' }
210 # test insert_bulk using populate.
212 skip 'insert_bulk not supported', 4
213 unless $storage_type !~ /NoBindVars/i;
216 $schema->resultset('Artist')->populate([
218 name => 'bulk artist 1',
222 name => 'bulk artist 2',
226 name => 'bulk artist 3',
230 } 'insert_bulk via populate';
232 is $bulk_rs->count, 3, 'correct number inserted via insert_bulk';
234 is ((grep $_->charfield eq 'foo', $bulk_rs->all), 3,
235 'column set correctly via insert_bulk');
238 @bulk_ids{map $_->artistid, $bulk_rs->all} = ();
240 is ((scalar keys %bulk_ids), 3,
241 'identities generated correctly in insert_bulk');
246 # make sure insert_bulk works a second time on the same connection
248 skip 'insert_bulk not supported', 3
249 unless $storage_type !~ /NoBindVars/i;
252 $schema->resultset('Artist')->populate([
254 name => 'bulk artist 1',
258 name => 'bulk artist 2',
262 name => 'bulk artist 3',
266 } 'insert_bulk via populate called a second time';
268 is $bulk_rs->count, 3,
269 'correct number inserted via insert_bulk';
271 is ((grep $_->charfield eq 'bar', $bulk_rs->all), 3,
272 'column set correctly via insert_bulk');
277 # test invalid insert_bulk (missing required column)
279 # There should be a rollback, reconnect and the next valid insert_bulk should
282 $schema->resultset('Artist')->populate([
287 } qr/no value or default|does not allow null|placeholders/i,
288 # The second pattern is the error from fallback to regular array insert on
289 # incompatible charset.
290 # The third is for ::NoBindVars with no syb_has_blk.
291 'insert_bulk with missing required column throws error';
293 # now test insert_bulk with IDENTITY_INSERT
295 skip 'insert_bulk not supported', 3
296 unless $storage_type !~ /NoBindVars/i;
299 $schema->resultset('Artist')->populate([
302 name => 'bulk artist 1',
307 name => 'bulk artist 2',
312 name => 'bulk artist 3',
316 } 'insert_bulk with IDENTITY_INSERT via populate';
318 is $bulk_rs->count, 3,
319 'correct number inserted via insert_bulk with IDENTITY_INSERT';
321 is ((grep $_->charfield eq 'foo', $bulk_rs->all), 3,
322 'column set correctly via insert_bulk with IDENTITY_INSERT');
327 # test correlated subquery
328 my $subq = $schema->resultset('Artist')->search({ artistid => { '>' => 3 } })
329 ->get_column('artistid')
331 my $subq_rs = $schema->resultset('Artist')->search({
332 artistid => { -in => $subq }
334 is $subq_rs->count, 11, 'correlated subquery';
336 # mostly stolen from the blob stuff Nniuq wrote for t/73oracle.t
338 skip 'TEXT/IMAGE support does not work with FreeTDS', 22
339 if $schema->storage->_using_freetds;
341 my $dbh = $schema->storage->_dbh;
343 local $SIG{__WARN__} = sub {};
344 eval { $dbh->do('DROP TABLE bindtype_test') };
347 CREATE TABLE bindtype_test
349 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::ASE') {
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';
442 blob => $binstr{large},
446 blob => $binstr{large},
450 } 'insert_bulk with blobs does not die';
452 is((grep $_->blob eq $binstr{large}, $rs->all), 2,
453 'IMAGE column set correctly via insert_bulk');
455 is((grep $_->clob eq $new_str, $rs->all), 2,
456 'TEXT column set correctly via insert_bulk');
458 # now try insert_bulk with blobs and a non-blob which also happens to be an
461 skip 'no insert_bulk without placeholders', 4
462 if $storage_type =~ /NoBindVars/i;
465 $new_str = $binstr{large} . 'bar';
471 blob => $binstr{large},
478 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 cmp_ok eval { $rs->find($row->id)->amount }, '==', 100,
561 'money value round-trip';
564 $row->update({ amount => 200 });
565 } 'updated a money value';
567 cmp_ok eval { $rs->find($row->id)->amount }, '==', 200,
568 'updated money value round-trip';
571 $row->update({ amount => undef });
572 } 'updated a money value to NULL';
575 my $null_amount = $rs->find($row->id)->amount;
576 is $null_amount, undef;
577 } 'updated money value to NULL round-trip';
579 # Test computed columns and timestamps
580 $schema->storage->dbh_do (sub {
581 my ($storage, $dbh) = @_;
582 eval { $dbh->do("DROP TABLE computed_column_test") };
584 CREATE TABLE computed_column_test (
585 id INT IDENTITY PRIMARY KEY,
586 a_computed_column AS getdate(),
587 a_timestamp timestamp,
588 charfield VARCHAR(20) DEFAULT 'foo'
593 require DBICTest::Schema::ComputedColumn;
594 $schema->register_class(
595 ComputedColumn => 'DBICTest::Schema::ComputedColumn'
598 ok (($rs = $schema->resultset('ComputedColumn')),
599 'got rs for ComputedColumn');
601 lives_ok { $row = $rs->create({}) }
602 'empty insert for a table with computed columns survived';
605 $row->update({ charfield => 'bar' })
606 } 'update of a table with computed columns survived';
609 is $ping_count, 0, 'no pings';
611 # if tests passed and did so under a non-C lang - let's rerun the test
612 if (Test::Builder->new->is_passing and $ENV{LANG} and $ENV{LANG} ne 'C') {
613 my $oldlang = $ENV{LANG};
614 local $ENV{LANG} = 'C';
616 pass ("Your lang is set to $oldlang - retesting with C");
619 my @cmd = map { $_ =~ /(.+)/ } ($^X, __FILE__);
621 # this is cheating, and may even hang here and there (testing on windows passed fine)
622 # will be replaced with Test::SubExec::Noninteractive in due course
624 IPC::Open2::open2(my $out, undef, @cmd);
625 while (my $ln = <$out>) {
630 ok (! $?, "Wstat $? from: @cmd");
637 if (my $dbh = eval { $schema->storage->_dbh }) {
638 eval { $dbh->do("DROP TABLE $_") }
639 for qw/artist bindtype_test money_test computed_column_test/;