3 no warnings 'uninitialized';
9 use DBIx::Class::Storage::DBI::Sybase;
10 use DBIx::Class::Storage::DBI::Sybase::NoBindVars;
12 my ($dsn, $user, $pass) = @ENV{map { "DBICTEST_SYBASE_${_}" } qw/DSN USER PASS/};
16 if (not ($dsn && $user)) {
18 'Set $ENV{DBICTEST_SYBASE_DSN}, _USER and _PASS to run this test' .
19 "\nWarning: This test drops and creates the tables " .
20 "'artist', 'money_test' and 'bindtype_test'";
22 plan tests => $TESTS*2 + 1;
27 'DBI::Sybase::NoBindVars',
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->can('_ping');
43 *DBIx::Class::Storage::DBI::Sybase::_ping = sub {
49 for my $storage_type (@storage_types) {
52 unless ($storage_type eq 'DBI::Sybase') { # 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::NoBindVars')) {
62 # no placeholders in this version of Sybase or DBD::Sybase (or using FreeTDS)
63 my $tb = Test::More->builder;
64 $tb->skip('no placeholders') for 1..$TESTS;
68 isa_ok( $schema->storage, "DBIx::Class::Storage::$storage_type" );
70 $schema->storage->_dbh->disconnect;
71 lives_ok (sub { $schema->storage->dbh }, 'reconnect works');
73 $schema->storage->dbh_do (sub {
74 my ($storage, $dbh) = @_;
75 eval { $dbh->do("DROP TABLE artist") };
78 artistid INT IDENTITY PRIMARY KEY,
80 rank INT DEFAULT 13 NOT NULL,
81 charfield CHAR(10) NULL
88 # so we start unconnected
89 $schema->storage->disconnect;
91 # test primary key handling
92 my $new = $schema->resultset('Artist')->create({ name => 'foo' });
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') {
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 (which should happen with no txn when using
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');
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 # test insert_bulk using populate, this should always pass whether or not it
192 # does anything Sybase specific or not. Just here to aid debugging.
194 $schema->resultset('Artist')->populate([
196 name => 'bulk artist 1',
200 name => 'bulk artist 2',
204 name => 'bulk artist 3',
208 } 'insert_bulk via populate';
210 my $bulk_rs = $schema->resultset('Artist')->search({
211 name => { -like => 'bulk artist %' }
214 is $bulk_rs->count, 3, 'correct number inserted via insert_bulk';
216 is ((grep $_->charfield eq 'foo', $bulk_rs->all), 3,
217 'column set correctly via insert_bulk');
220 @bulk_ids{map $_->artistid, $bulk_rs->all} = ();
222 is ((scalar keys %bulk_ids), 3,
223 'identities generated correctly in insert_bulk');
227 # now test insert_bulk with IDENTITY_INSERT
229 $schema->resultset('Artist')->populate([
232 name => 'bulk artist 1',
237 name => 'bulk artist 2',
242 name => 'bulk artist 3',
246 } 'insert_bulk with IDENTITY_INSERT via populate';
248 is $bulk_rs->count, 3,
249 'correct number inserted via insert_bulk with IDENTITY_INSERT';
251 is ((grep $_->charfield eq 'foo', $bulk_rs->all), 3,
252 'column set correctly via insert_bulk with IDENTITY_INSERT');
256 # test correlated subquery
257 my $subq = $schema->resultset('Artist')->search({ artistid => { '>' => 3 } })
258 ->get_column('artistid')
260 my $subq_rs = $schema->resultset('Artist')->search({
261 artistid => { -in => $subq }
263 is $subq_rs->count, 11, 'correlated subquery';
265 # mostly stolen from the blob stuff Nniuq wrote for t/73oracle.t
267 skip 'TEXT/IMAGE support does not work with FreeTDS', 13
268 if $schema->storage->using_freetds;
270 my $dbh = $schema->storage->_dbh;
272 local $SIG{__WARN__} = sub {};
273 eval { $dbh->do('DROP TABLE bindtype_test') };
276 CREATE TABLE bindtype_test
278 id INT IDENTITY PRIMARY KEY,
283 ],{ RaiseError => 1, PrintError => 0 });
286 my %binstr = ( 'small' => join('', map { chr($_) } ( 1 .. 127 )) );
287 $binstr{'large'} = $binstr{'small'} x 1024;
289 my $maxloblen = length $binstr{'large'};
291 if (not $schema->storage->using_freetds) {
292 $dbh->{'LongReadLen'} = $maxloblen * 2;
294 $dbh->do("set textsize ".($maxloblen * 2));
297 my $rs = $schema->resultset('BindType');
300 foreach my $type (qw(blob clob)) {
301 foreach my $size (qw(small large)) {
302 no warnings 'uninitialized';
304 my $created = eval { $rs->create( { $type => $binstr{$size} } ) };
305 ok(!$@, "inserted $size $type without dying");
308 $last_id = $created->id if $created;
311 $rs->find($last_id)->$type
314 ok($got eq $binstr{$size}, "verified inserted $size $type");
318 # blob insert with explicit PK
319 # also a good opportunity to test IDENTITY_INSERT
321 local $SIG{__WARN__} = sub {};
322 eval { $dbh->do('DROP TABLE bindtype_test') };
325 CREATE TABLE bindtype_test
327 id INT IDENTITY PRIMARY KEY,
332 ],{ RaiseError => 1, PrintError => 0 });
334 my $created = eval { $rs->create( { id => 1, blob => $binstr{large} } ) };
335 ok(!$@, "inserted large blob without dying with manual PK");
342 ok($got eq $binstr{large}, "verified inserted large blob with manual PK");
345 my $new_str = $binstr{large} . 'mtfnpy';
347 # check redispatch to storage-specific update when auto-detected storage
348 if ($storage_type eq 'DBI::Sybase') {
349 DBICTest::Schema->storage_type('::DBI');
350 $schema = get_schema();
353 eval { $rs->search({ id => 1 })->update({ blob => $new_str }) };
354 ok !$@, 'updated blob successfully';
360 ok($got eq $new_str, "verified updated blob");
362 ## try multi-row blob update
363 # first insert some blobs
364 $rs->find(1)->delete;
365 $rs->create({ blob => $binstr{large} }) for (1..3);
366 $new_str = $binstr{large} . 'foo';
367 $rs->update({ blob => $new_str });
368 is((grep $_->blob eq $new_str, $rs->all), 3, 'multi-row blob update');
371 # test MONEY column support
372 $schema->storage->dbh_do (sub {
373 my ($storage, $dbh) = @_;
374 eval { $dbh->do("DROP TABLE money_test") };
376 CREATE TABLE money_test (
377 id INT IDENTITY PRIMARY KEY,
383 # test insert transaction when there's an active cursor
385 skip 'not testing insert with active cursor if using ::NoBindVars', 1
386 if $storage_type =~ /NoBindVars/i;
388 my $artist_rs = $schema->resultset('Artist');
391 my $row = $schema->resultset('Money')->create({ amount => 100 });
393 } 'inserted a row with an active cursor';
394 $ping_count-- if $@; # dbh_do calls ->connected
397 # test insert in an outer transaction when there's an active cursor
399 local $TODO = 'this should work once we have eager cursors';
401 # clear state, or we get a deadlock on $row->delete
402 # XXX figure out why this happens
403 $schema->storage->disconnect;
406 $schema->txn_do(sub {
407 my $artist_rs = $schema->resultset('Artist');
409 my $row = $schema->resultset('Money')->create({ amount => 100 });
412 } 'inserted a row with an active cursor in outer txn';
413 $ping_count-- if $@; # dbh_do calls ->connected
416 # Now test money values.
417 my $rs = $schema->resultset('Money');
421 $row = $rs->create({ amount => 100 });
422 } 'inserted a money value';
424 is eval { $rs->find($row->id)->amount }, 100, 'money value round-trip';
427 $row->update({ amount => 200 });
428 } 'updated a money value';
430 is eval { $rs->find($row->id)->amount },
431 200, 'updated money value round-trip';
434 $row->update({ amount => undef });
435 } 'updated a money value to NULL';
437 my $null_amount = eval { $rs->find($row->id)->amount };
439 (($null_amount == undef) && (not $@)),
440 'updated money value to NULL round-trip'
445 is $ping_count, 0, 'no pings';
449 if (my $dbh = eval { $schema->storage->_dbh }) {
450 eval { $dbh->do("DROP TABLE $_") }
451 for qw/artist bindtype_test money_test/;