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');
49 $schema->storage->_dbh->disconnect;
52 $schema->storage->dbh_do(sub { $_[1]->do('select 1') })
57 { opts => { on_connect_call => 'use_mars' } },
58 use_dynamic_cursors =>
59 { opts => { on_connect_call => 'use_dynamic_cursors' },
60 required => $schema->storage->_using_freetds ? 0 : 1,
63 { opts => { on_connect_call => 'use_server_cursors' } },
65 { opts => {}, required => 1 },
68 for my $opts_name (keys %opts) {
70 my $opts = $opts{$opts_name}{opts};
71 $schema = DBICTest::Schema->connect($dsn, $user, $pass, $opts);
74 $schema->storage->ensure_connected
77 if ($opts{$opts_name}{required}) {
78 BAIL_OUT "on_connect_call option '$opts_name' is not functional: $_";
82 "on_connect_call option '$opts_name' not functional in this configuration: $_",
88 $schema->storage->dbh_do (sub {
89 my ($storage, $dbh) = @_;
90 eval { $dbh->do("DROP TABLE artist") };
93 artistid INT IDENTITY NOT NULL,
95 rank INT NOT NULL DEFAULT '13',
96 charfield CHAR(10) NULL,
103 $schema->resultset('Artist')->search({ name => 'foo' })->delete;
105 my $new = $schema->resultset('Artist')->create({ name => 'foo' });
107 ok(($new->artistid||0) > 0, "Auto-PK worked for $opts_name");
109 # Test multiple active statements
111 skip 'not a multiple active statements configuration', 1
112 if $opts_name eq 'plain';
114 $schema->storage->ensure_connected;
118 no warnings 'redefine';
119 local *DBI::connect = sub { die "NO RECONNECTS!!!" };
121 my $artist_rs = $schema->resultset('Artist');
125 $artist_rs->create({ name => "Artist$_" }) for (1..3);
127 my $forward = $artist_rs->search({},
128 { order_by => { -asc => 'artistid' } });
129 my $backward = $artist_rs->search({},
130 { order_by => { -desc => 'artistid' } });
133 [qw/Artist1 Artist3/], [qw/Artist2 Artist2/], [qw/Artist3 Artist1/]
137 while (my $forward_row = $forward->next) {
138 my $backward_row = $backward->next;
139 push @result, [$forward_row->name, $backward_row->name];
142 is_deeply \@result, \@map, "multiple active statements in $opts_name";
146 is($artist_rs->count, 0, '$dbh still viable');
147 } "Multiple active statements survive $opts_name";
153 $schema->storage->dbh_do (sub {
154 my ($storage, $dbh) = @_;
155 eval { $dbh->do("DROP TABLE owners") };
156 eval { $dbh->do("DROP TABLE books") };
159 id INT IDENTITY (1, 1) NOT NULL,
166 CREATE TABLE owners (
167 id INT IDENTITY (1, 1) NOT NULL,
174 # start a new connection, make sure rebless works
175 my $schema = DBICTest::Schema->connect($dsn, $user, $pass, $opts);
176 $schema->populate ('Owners', [
189 [qw/12 face_to_face/],
194 }, 'populate with PKs supplied ok' );
198 # start a new connection, make sure rebless works
199 # test an insert with a supplied identity, followed by one without
200 my $schema = DBICTest::Schema->connect($dsn, $user, $pass, $opts);
203 $schema->resultset ('Owners')->create ({ id => $id, name => "troglodoogle $id" });
204 $schema->resultset ('Owners')->create ({ name => "troglodoogle " . ($id + 1) });
206 }, 'create with/without PKs ok' );
208 is ($schema->resultset ('Owners')->count, 19, 'owner rows really in db' );
211 # start a new connection, make sure rebless works
212 my $schema = DBICTest::Schema->connect($dsn, $user, $pass, $opts);
213 $schema->populate ('BooksInLibrary', [
214 [qw/source owner title /],
215 [qw/Library 1 secrets0/],
216 [qw/Library 1 secrets1/],
217 [qw/Eatery 1 secrets2/],
218 [qw/Library 2 secrets3/],
219 [qw/Library 3 secrets4/],
220 [qw/Eatery 3 secrets5/],
221 [qw/Library 4 secrets6/],
222 [qw/Library 5 secrets7/],
223 [qw/Eatery 5 secrets8/],
224 [qw/Library 6 secrets9/],
225 [qw/Library 7 secrets10/],
226 [qw/Eatery 7 secrets11/],
227 [qw/Library 8 secrets12/],
229 }, 'populate without PKs supplied ok' );
232 # test simple, complex LIMIT and limited prefetch support, with both dialects and quote combinations (if possible)
235 ($schema->storage->_server_info->{normalized_dbms_version} || 0 ) >= 9
240 for my $quoted (0, 1) {
242 $schema = DBICTest::Schema->connect($dsn, $user, $pass, {
243 limit_dialect => $dialect,
246 ? ( quote_char => [ qw/ [ ] / ], name_sep => '.' )
251 my $test_type = "Dialect:$dialect Quoted:$quoted";
253 # basic limit support
255 my $art_rs = $schema->resultset ('Artist');
257 $art_rs->create({ name => 'Artist ' . $_ }) for (1..6);
259 my $it = $schema->resultset('Artist')->search( {}, {
262 order_by => 'artistid',
265 is( $it->count, 3, "$test_type: LIMIT count ok" );
267 local $TODO = "Top-limit does not work when your limit ends up past the resultset"
268 if $dialect eq 'Top';
270 is( $it->next->name, 'Artist 4', "$test_type: iterator->next ok" );
272 is( $it->next->name, 'Artist 6', "$test_type: iterator->next ok" );
273 is( $it->next, undef, "$test_type: next past end of resultset ok" );
276 # plain ordered subqueries throw
278 $schema->resultset('Owners')->search ({}, { order_by => 'name' })->as_query
279 }, qr/ordered subselect encountered/, "$test_type: Ordered Subselect detection throws ok");
281 # make sure ordered subselects *somewhat* work
283 my $owners = $schema->resultset ('Owners')->search ({}, { order_by => 'name', offset => 2, rows => 3, unsafe_subselect_ok => 1 });
284 my $sealed_owners = $owners->as_subselect_rs;
287 [ map { $_->name } ($sealed_owners->all) ],
288 [ map { $_->name } ($owners->all) ],
289 "$test_type: Sort preserved from within a subquery",
293 # still even with lost order of IN, we should be getting correct
296 my $owners = $schema->resultset ('Owners')->search ({}, { order_by => 'name', offset => 2, rows => 3, unsafe_subselect_ok => 1 });
297 my $corelated_owners = $owners->result_source->resultset->search (
299 id => { -in => $owners->get_column('id')->as_query },
302 order_by => 'name' #reorder because of what is shown above
307 join ("\x00", map { $_->name } ($corelated_owners->all) ),
308 join ("\x00", map { $_->name } ($owners->all) ),
309 "$test_type: With an outer order_by, everything still matches",
313 # make sure right-join-side single-prefetch ordering limit works
315 my $rs = $schema->resultset ('BooksInLibrary')->search (
317 'owner.name' => { '!=', 'woggle' },
321 order_by => 'owner.name',
324 # this is the order in which they should come from the above query
325 my @owner_names = qw/boggle fISMBoC fREW fRIOUX fROOH fRUE wiggle wiggle/;
327 is ($rs->all, 8, "$test_type: Correct amount of objects from right-sorted joined resultset");
329 [map { $_->owner->name } ($rs->all) ],
331 "$test_type: Prefetched rows were properly ordered"
334 my $limited_rs = $rs->search ({}, {rows => 6, offset => 2, unsafe_subselect_ok => 1});
335 is ($limited_rs->count, 6, "$test_type: Correct count of limited right-sorted joined resultset");
336 is ($limited_rs->count_rs->next, 6, "$test_type: Correct count_rs of limited right-sorted joined resultset");
339 my $orig_debug = $schema->storage->debug;
340 $schema->storage->debugcb(sub { $queries++; });
341 $schema->storage->debug(1);
344 [map { $_->owner->name } ($limited_rs->all) ],
345 [@owner_names[2 .. 7]],
346 "$test_type: Prefetch-limited rows were properly ordered"
348 is ($queries, 1, "$test_type: Only one query with prefetch");
350 $schema->storage->debugcb(undef);
351 $schema->storage->debug($orig_debug);
354 [map { $_->name } ($limited_rs->search_related ('owner')->all) ],
355 [@owner_names[2 .. 7]],
356 "$test_type: Rows are still properly ordered after search_related",
360 # try a ->has_many direction with duplicates
361 my $owners = $schema->resultset ('Owners')->search (
363 'books.id' => { '!=', undef },
364 'me.name' => { '!=', 'somebogusstring' },
368 order_by => [ { -asc => \['name + ?', [ test => 'xxx' ]] }, 'me.id' ], # test bindvar propagation
369 group_by => [ map { "me.$_" } $schema->source('Owners')->columns ], # the literal order_by requires an explicit group_by
370 rows => 3, # 8 results total
371 unsafe_subselect_ok => 1,
375 my ($sql, @bind) = @${$owners->page(3)->as_query};
376 # not testing the SQL as it is quite different between top/rno
380 [ { dbic_colname => 'test' }
382 [ { sqlt_datatype => 'varchar', sqlt_size => 100, dbic_colname => 'me.name' }
383 => 'somebogusstring' ],
386 ? [ { dbic_colname => 'test' } => 'xxx' ] # the extra re-order bind
387 : ([ $OFFSET => 7 ], [ $TOTAL => 9 ]) # parameterised RNO
390 [ { sqlt_datatype => 'varchar', sqlt_size => 100, dbic_colname => 'me.name' }
391 => 'somebogusstring' ],
392 [ { dbic_colname => 'test' }
397 is ($owners->page(1)->all, 3, "$test_type: has_many prefetch returns correct number of rows");
398 is ($owners->page(1)->count, 3, "$test_type: has-many prefetch returns correct count");
400 is ($owners->page(3)->count, 2, "$test_type: has-many prefetch returns correct count");
402 local $TODO = "Top-limit does not work when your limit ends up past the resultset"
403 if $dialect eq 'Top';
404 is ($owners->page(3)->all, 2, "$test_type: has_many prefetch returns correct number of rows");
405 is ($owners->page(3)->count_rs->next, 2, "$test_type: has-many prefetch returns correct count_rs");
409 # try a ->belongs_to direction (no select collapse, group_by should work)
410 my $books = $schema->resultset ('BooksInLibrary')->search (
412 'owner.name' => [qw/wiggle woggle/],
416 having => \['1 = ?', [ test => 1 ] ], #test having propagation
418 rows => 2, # 3 results total
419 order_by => [{ -desc => 'me.owner' }, 'me.id'],
420 unsafe_subselect_ok => 1,
424 ($sql, @bind) = @${$books->page(3)->as_query};
425 # not testing the SQL as it is quite different between top/rno
430 [ { sqlt_datatype => 'varchar', sqlt_size => 100, dbic_colname => 'owner.name' }
432 [ { sqlt_datatype => 'varchar', sqlt_size => 100, dbic_colname => 'owner.name' }
434 [ { sqlt_datatype => 'varchar', sqlt_size => 100, dbic_colname => 'source' }
436 [ { dbic_colname => 'test' }
440 $dialect ne 'Top' ? ( [ $OFFSET => 5 ], [ $TOTAL => 6 ] ) : (),
442 [ { sqlt_datatype => 'varchar', sqlt_size => 100, dbic_colname => 'owner.name' }
444 [ { sqlt_datatype => 'varchar', sqlt_size => 100, dbic_colname => 'owner.name' }
446 [ { sqlt_datatype => 'varchar', sqlt_size => 100, dbic_colname => 'source' }
451 is ($books->page(1)->all, 2, "$test_type: Prefetched grouped search returns correct number of rows");
452 is ($books->page(1)->count, 2, "$test_type: Prefetched grouped search returns correct count");
454 is ($books->page(2)->count, 1, "$test_type: Prefetched grouped search returns correct count");
456 local $TODO = "Top-limit does not work when your limit ends up past the resultset"
457 if $dialect eq 'Top';
458 is ($books->page(2)->all, 1, "$test_type: Prefetched grouped search returns correct number of rows");
459 is ($books->page(2)->count_rs->next, 1, "$test_type: Prefetched grouped search returns correct count_rs");
467 $schema->storage->dbh_do (sub {
468 my ($storage, $dbh) = @_;
469 eval { $dbh->do("DROP TABLE artist_guid") };
471 CREATE TABLE artist_guid (
472 artistid UNIQUEIDENTIFIER NOT NULL,
474 rank INT NOT NULL DEFAULT '13',
475 charfield CHAR(10) NULL,
476 a_guid UNIQUEIDENTIFIER,
477 primary key(artistid)
482 # start disconnected to make sure insert works on an un-reblessed storage
483 $schema = DBICTest::Schema->connect($dsn, $user, $pass, $opts);
487 $row = $schema->resultset('ArtistGUID')->create({ name => 'mtfnpy' })
488 } 'created a row with a GUID';
491 eval { $row->artistid },
492 'row has GUID PK col populated',
497 eval { $row->a_guid },
498 'row has a GUID col with auto_nextval populated',
502 my $row_from_db = $schema->resultset('ArtistGUID')
503 ->search({ name => 'mtfnpy' })->first;
505 is $row_from_db->artistid, $row->artistid,
506 'PK GUID round trip';
508 is $row_from_db->a_guid, $row->a_guid,
509 'NON-PK GUID round trip';
514 $schema->storage->dbh_do (sub {
515 my ($storage, $dbh) = @_;
516 eval { $dbh->do("DROP TABLE money_test") };
518 CREATE TABLE money_test (
519 id INT IDENTITY PRIMARY KEY,
526 my $freetds_and_dynamic_cursors = 1
527 if $opts_name eq 'use_dynamic_cursors' &&
528 $schema->storage->_using_freetds;
531 'these tests fail on freetds with dynamic cursors for some reason'
532 if $freetds_and_dynamic_cursors;
533 local $ENV{DBIC_NULLABLE_KEY_NOWARN} = 1
534 if $freetds_and_dynamic_cursors;
536 my $rs = $schema->resultset('Money');
540 $row = $rs->create({ amount => 100 });
541 } 'inserted a money value';
543 cmp_ok ((try { $rs->find($row->id)->amount })||0, '==', 100,
544 'money value round-trip');
547 $row->update({ amount => 200 });
548 } 'updated a money value';
550 cmp_ok ((try { $rs->find($row->id)->amount })||0, '==', 200,
551 'updated money value round-trip');
554 $row->update({ amount => undef });
555 } 'updated a money value to NULL';
557 is try { $rs->find($row->id)->amount }, undef,
558 'updated money value to NULL round-trip';
568 if (my $dbh = eval { $schema->storage->_dbh }) {
569 eval { $dbh->do("DROP TABLE $_") }
570 for qw/artist artist_guid money_test books owners/;