7 use DBIx::Class::SQLMaker::LimitDialects;
8 use DBIx::Class::Optional::Dependencies ();
11 use DBIC::SqlMakerTest;
13 plan skip_all => 'Test needs ' . DBIx::Class::Optional::Dependencies->req_missing_for ('test_rdbms_mssql_odbc')
14 unless DBIx::Class::Optional::Dependencies->req_ok_for ('test_rdbms_mssql_odbc');
16 my $OFFSET = DBIx::Class::SQLMaker::LimitDialects->__offset_bindtype;
17 my $TOTAL = DBIx::Class::SQLMaker::LimitDialects->__total_bindtype;
19 my ($dsn, $user, $pass) = @ENV{map { "DBICTEST_MSSQL_ODBC_${_}" } qw/DSN USER PASS/};
21 plan skip_all => 'Set $ENV{DBICTEST_MSSQL_ODBC_DSN}, _USER and _PASS to run this test'
22 unless ($dsn && $user);
25 my $srv_ver = DBICTest::Schema->connect($dsn, $user, $pass)->storage->_server_info->{dbms_version};
26 ok ($srv_ver, 'Got a test server version on fresh schema: ' . ($srv_ver||'???') );
29 DBICTest::Schema->load_classes('ArtistGUID');
30 my $schema = DBICTest::Schema->connect($dsn, $user, $pass);
33 no warnings 'redefine';
34 my $connect_count = 0;
35 my $orig_connect = \&DBI::connect;
36 local *DBI::connect = sub { $connect_count++; goto &$orig_connect };
38 $schema->storage->ensure_connected;
40 is( $connect_count, 1, 'only one connection made');
43 isa_ok( $schema->storage, 'DBIx::Class::Storage::DBI::ODBC::Microsoft_SQL_Server' );
46 my $schema2 = $schema->connect ($schema->storage->connect_info);
47 ok (! $schema2->storage->connected, 'a re-connected cloned schema starts unconnected');
50 $schema->storage->_dbh->disconnect;
53 $schema->storage->dbh_do(sub { $_[1]->do('select 1') })
58 { opts => { on_connect_call => 'use_mars' } },
59 use_dynamic_cursors =>
60 { opts => { on_connect_call => 'use_dynamic_cursors' }, required => 1 },
62 { opts => { on_connect_call => 'use_server_cursors' } },
64 { opts => {}, required => 1 },
67 for my $opts_name (keys %opts) {
69 my $opts = $opts{$opts_name}{opts};
70 $schema = DBICTest::Schema->connect($dsn, $user, $pass, $opts);
73 $schema->storage->ensure_connected
76 if ($opts{$opts_name}{required}) {
77 BAIL_OUT "on_connect_call option '$opts_name' is not functional: $_";
81 "on_connect_call option '$opts_name' not functional in this configuration: $_",
86 $schema->storage->dbh_do (sub {
87 my ($storage, $dbh) = @_;
88 eval { $dbh->do("DROP TABLE artist") };
91 artistid INT IDENTITY NOT NULL,
93 rank INT NOT NULL DEFAULT '13',
94 charfield CHAR(10) NULL,
101 $schema->resultset('Artist')->search({ name => 'foo' })->delete;
103 my $new = $schema->resultset('Artist')->create({ name => 'foo' });
105 ok(($new->artistid||0) > 0, "Auto-PK worked for $opts_name");
107 # Test multiple active statements
109 skip 'not a multiple active statements configuration', 1
110 if $opts_name eq 'plain';
112 my $artist_rs = $schema->resultset('Artist');
116 $artist_rs->create({ name => "Artist$_" }) for (1..3);
118 my $forward = $artist_rs->search({},
119 { order_by => { -asc => 'artistid' } });
120 my $backward = $artist_rs->search({},
121 { order_by => { -desc => 'artistid' } });
124 [qw/Artist1 Artist3/], [qw/Artist2 Artist2/], [qw/Artist3 Artist1/]
128 while (my $forward_row = $forward->next) {
129 my $backward_row = $backward->next;
130 push @result, [$forward_row->name, $backward_row->name];
133 is_deeply \@result, \@map, "multiple active statements in $opts_name";
141 $schema->storage->dbh_do (sub {
142 my ($storage, $dbh) = @_;
143 eval { $dbh->do("DROP TABLE owners") };
144 eval { $dbh->do("DROP TABLE books") };
147 id INT IDENTITY (1, 1) NOT NULL,
154 CREATE TABLE owners (
155 id INT IDENTITY (1, 1) NOT NULL,
162 # start a new connection, make sure rebless works
163 my $schema = DBICTest::Schema->connect($dsn, $user, $pass, $opts);
164 $schema->populate ('Owners', [
177 [qw/12 face_to_face/],
182 }, 'populate with PKs supplied ok' );
186 # start a new connection, make sure rebless works
187 # test an insert with a supplied identity, followed by one without
188 my $schema = DBICTest::Schema->connect($dsn, $user, $pass, $opts);
191 $schema->resultset ('Owners')->create ({ id => $id, name => "troglodoogle $id" });
192 $schema->resultset ('Owners')->create ({ name => "troglodoogle " . ($id + 1) });
194 }, 'create with/without PKs ok' );
196 is ($schema->resultset ('Owners')->count, 19, 'owner rows really in db' );
199 # start a new connection, make sure rebless works
200 my $schema = DBICTest::Schema->connect($dsn, $user, $pass, $opts);
201 $schema->populate ('BooksInLibrary', [
202 [qw/source owner title /],
203 [qw/Library 1 secrets0/],
204 [qw/Library 1 secrets1/],
205 [qw/Eatery 1 secrets2/],
206 [qw/Library 2 secrets3/],
207 [qw/Library 3 secrets4/],
208 [qw/Eatery 3 secrets5/],
209 [qw/Library 4 secrets6/],
210 [qw/Library 5 secrets7/],
211 [qw/Eatery 5 secrets8/],
212 [qw/Library 6 secrets9/],
213 [qw/Library 7 secrets10/],
214 [qw/Eatery 7 secrets11/],
215 [qw/Library 8 secrets12/],
217 }, 'populate without PKs supplied ok' );
220 # test simple, complex LIMIT and limited prefetch support, with both dialects and quote combinations (if possible)
223 ($schema->storage->_server_info->{normalized_dbms_version} || 0 ) >= 9
228 for my $quoted (0, 1) {
230 $schema = DBICTest::Schema->connect($dsn, $user, $pass, {
231 limit_dialect => $dialect,
234 ? ( quote_char => [ qw/ [ ] / ], name_sep => '.' )
239 my $test_type = "Dialect:$dialect Quoted:$quoted";
241 # basic limit support
243 my $art_rs = $schema->resultset ('Artist');
245 $art_rs->create({ name => 'Artist ' . $_ }) for (1..6);
247 my $it = $schema->resultset('Artist')->search( {}, {
250 order_by => 'artistid',
253 is( $it->count, 3, "$test_type: LIMIT count ok" );
255 local $TODO = "Top-limit does not work when your limit ends up past the resultset"
256 if $dialect eq 'Top';
258 is( $it->next->name, 'Artist 4', "$test_type: iterator->next ok" );
260 is( $it->next->name, 'Artist 6', "$test_type: iterator->next ok" );
261 is( $it->next, undef, "$test_type: next past end of resultset ok" );
264 # plain ordered subqueries throw
266 $schema->resultset('Owners')->search ({}, { order_by => 'name' })->as_query
267 }, qr/ordered subselect encountered/, "$test_type: Ordered Subselect detection throws ok");
269 # make sure ordered subselects *somewhat* work
271 my $owners = $schema->resultset ('Owners')->search ({}, { order_by => 'name', offset => 2, rows => 3, unsafe_subselect_ok => 1 });
272 my $sealed_owners = $owners->as_subselect_rs;
275 [ map { $_->name } ($sealed_owners->all) ],
276 [ map { $_->name } ($owners->all) ],
277 "$test_type: Sort preserved from within a subquery",
282 my $book_owner_ids = $schema->resultset ('BooksInLibrary')->search ({}, {
287 order_by => 'owner.name',
288 unsafe_subselect_ok => 1
289 })->get_column ('owner');
291 my @ids = $book_owner_ids->all;
293 is (@ids, 6, 'Limit works');
295 my $book_owners = $schema->resultset ('Owners')->search ({
296 id => { -in => $book_owner_ids->as_query }
300 local $TODO = "Correlated limited IN subqueries will probably never preserve order";
303 [ map { $_->id } ($book_owners->all) ],
304 [ $book_owner_ids->all ],
305 "$test_type: Sort is preserved across IN subqueries",
310 # still even with lost order of IN, we should be getting correct
313 my $owners = $schema->resultset ('Owners')->search ({}, { order_by => 'name', offset => 2, rows => 3, unsafe_subselect_ok => 1 });
314 my $corelated_owners = $owners->result_source->resultset->search (
316 id => { -in => $owners->get_column('id')->as_query },
319 order_by => 'name' #reorder because of what is shown above
324 join ("\x00", map { $_->name } ($corelated_owners->all) ),
325 join ("\x00", map { $_->name } ($owners->all) ),
326 "$test_type: With an outer order_by, everything still matches",
330 # make sure right-join-side single-prefetch ordering limit works
332 my $rs = $schema->resultset ('BooksInLibrary')->search (
334 'owner.name' => { '!=', 'woggle' },
338 order_by => 'owner.name',
341 # this is the order in which they should come from the above query
342 my @owner_names = qw/boggle fISMBoC fREW fRIOUX fROOH fRUE wiggle wiggle/;
344 is ($rs->all, 8, "$test_type: Correct amount of objects from right-sorted joined resultset");
346 [map { $_->owner->name } ($rs->all) ],
348 "$test_type: Prefetched rows were properly ordered"
351 my $limited_rs = $rs->search ({}, {rows => 6, offset => 2, unsafe_subselect_ok => 1});
352 is ($limited_rs->count, 6, "$test_type: Correct count of limited right-sorted joined resultset");
353 is ($limited_rs->count_rs->next, 6, "$test_type: Correct count_rs of limited right-sorted joined resultset");
356 my $orig_debug = $schema->storage->debug;
357 $schema->storage->debugcb(sub { $queries++; });
358 $schema->storage->debug(1);
361 [map { $_->owner->name } ($limited_rs->all) ],
362 [@owner_names[2 .. 7]],
363 "$test_type: Prefetch-limited rows were properly ordered"
365 is ($queries, 1, "$test_type: Only one query with prefetch");
367 $schema->storage->debugcb(undef);
368 $schema->storage->debug($orig_debug);
371 [map { $_->name } ($limited_rs->search_related ('owner')->all) ],
372 [@owner_names[2 .. 7]],
373 "$test_type: Rows are still properly ordered after search_related",
377 # try a ->has_many direction with duplicates
378 my $owners = $schema->resultset ('Owners')->search (
380 'books.id' => { '!=', undef },
381 'me.name' => { '!=', 'somebogusstring' },
385 order_by => { -asc => \['name + ?', [ test => 'xxx' ]] }, # test bindvar propagation
386 group_by => [ map { "me.$_" } $schema->source('Owners')->columns ], # the literal order_by requires an explicit group_by
387 rows => 3, # 8 results total
388 unsafe_subselect_ok => 1,
392 my ($sql, @bind) = @${$owners->page(3)->as_query};
396 ($dialect eq 'Top' ? [ { dbic_colname => 'test' } => 'xxx' ] : ()), # the extra re-order bind
397 [ { sqlt_datatype => 'varchar', sqlt_size => 100, dbic_colname => 'me.name' }
398 => 'somebogusstring' ],
399 [ { dbic_colname => 'test' }
401 ($dialect ne 'Top' ? ( [ $OFFSET => 7 ], [ $TOTAL => 9 ] ) : ()), # parameterised RNO
402 [ { sqlt_datatype => 'varchar', sqlt_size => 100, dbic_colname => 'me.name' }
403 => 'somebogusstring' ],
404 [ { dbic_colname => 'test' }
409 is ($owners->page(1)->all, 3, "$test_type: has_many prefetch returns correct number of rows");
410 is ($owners->page(1)->count, 3, "$test_type: has-many prefetch returns correct count");
412 is ($owners->page(3)->count, 2, "$test_type: has-many prefetch returns correct count");
414 local $TODO = "Top-limit does not work when your limit ends up past the resultset"
415 if $dialect eq 'Top';
416 is ($owners->page(3)->all, 2, "$test_type: has_many prefetch returns correct number of rows");
417 is ($owners->page(3)->count_rs->next, 2, "$test_type: has-many prefetch returns correct count_rs");
421 # try a ->belongs_to direction (no select collapse, group_by should work)
422 my $books = $schema->resultset ('BooksInLibrary')->search (
424 'owner.name' => [qw/wiggle woggle/],
428 having => \['1 = ?', [ test => 1 ] ], #test having propagation
430 rows => 2, # 3 results total
431 order_by => { -desc => 'me.owner' },
432 unsafe_subselect_ok => 1,
436 ($sql, @bind) = @${$books->page(3)->as_query};
441 [ { sqlt_datatype => 'varchar', sqlt_size => 100, dbic_colname => 'owner.name' }
443 [ { sqlt_datatype => 'varchar', sqlt_size => 100, dbic_colname => 'owner.name' }
445 [ { sqlt_datatype => 'varchar', sqlt_size => 100, dbic_colname => 'source' }
447 [ { dbic_colname => 'test' }
451 $dialect ne 'Top' ? ( [ $OFFSET => 5 ], [ $TOTAL => 6 ] ) : (),
453 [ { sqlt_datatype => 'varchar', sqlt_size => 100, dbic_colname => 'owner.name' }
455 [ { sqlt_datatype => 'varchar', sqlt_size => 100, dbic_colname => 'owner.name' }
457 [ { sqlt_datatype => 'varchar', sqlt_size => 100, dbic_colname => 'source' }
462 is ($books->page(1)->all, 2, "$test_type: Prefetched grouped search returns correct number of rows");
463 is ($books->page(1)->count, 2, "$test_type: Prefetched grouped search returns correct count");
465 is ($books->page(2)->count, 1, "$test_type: Prefetched grouped search returns correct count");
467 local $TODO = "Top-limit does not work when your limit ends up past the resultset"
468 if $dialect eq 'Top';
469 is ($books->page(2)->all, 1, "$test_type: Prefetched grouped search returns correct number of rows");
470 is ($books->page(2)->count_rs->next, 1, "$test_type: Prefetched grouped search returns correct count_rs");
478 $schema->storage->dbh_do (sub {
479 my ($storage, $dbh) = @_;
480 eval { $dbh->do("DROP TABLE artist_guid") };
482 CREATE TABLE artist_guid (
483 artistid UNIQUEIDENTIFIER NOT NULL,
485 rank INT NOT NULL DEFAULT '13',
486 charfield CHAR(10) NULL,
487 a_guid UNIQUEIDENTIFIER,
488 primary key(artistid)
493 # start disconnected to make sure insert works on an un-reblessed storage
494 $schema = DBICTest::Schema->connect($dsn, $user, $pass, $opts);
498 $row = $schema->resultset('ArtistGUID')->create({ name => 'mtfnpy' })
499 } 'created a row with a GUID';
502 eval { $row->artistid },
503 'row has GUID PK col populated',
508 eval { $row->a_guid },
509 'row has a GUID col with auto_nextval populated',
513 my $row_from_db = $schema->resultset('ArtistGUID')
514 ->search({ name => 'mtfnpy' })->first;
516 is $row_from_db->artistid, $row->artistid,
517 'PK GUID round trip';
519 is $row_from_db->a_guid, $row->a_guid,
520 'NON-PK GUID round trip';
525 $schema->storage->dbh_do (sub {
526 my ($storage, $dbh) = @_;
527 eval { $dbh->do("DROP TABLE money_test") };
529 CREATE TABLE money_test (
530 id INT IDENTITY PRIMARY KEY,
537 my $freetds_and_dynamic_cursors = 1
538 if $opts_name eq 'use_dynamic_cursors' &&
539 $schema->storage->using_freetds;
542 'these tests fail on freetds with dynamic cursors for some reason'
543 if $freetds_and_dynamic_cursors;
544 local $ENV{DBIC_NULLABLE_KEY_NOWARN} = 1
545 if $freetds_and_dynamic_cursors;
547 my $rs = $schema->resultset('Money');
551 $row = $rs->create({ amount => 100 });
552 } 'inserted a money value';
554 cmp_ok ((try { $rs->find($row->id)->amount })||0, '==', 100,
555 'money value round-trip');
558 $row->update({ amount => 200 });
559 } 'updated a money value';
561 cmp_ok ((try { $rs->find($row->id)->amount })||0, '==', 200,
562 'updated money value round-trip');
565 $row->update({ amount => undef });
566 } 'updated a money value to NULL';
568 is try { $rs->find($row->id)->amount }, undef,
569 'updated money value to NULL round-trip';
579 if (my $dbh = eval { $schema->storage->_dbh }) {
580 eval { $dbh->do("DROP TABLE $_") }
581 for qw/artist artist_guid money_test books owners/;