Ordered subqueries do not work in mssql after all
[dbsrgits/DBIx-Class.git] / t / 746mssql.t
1 use strict;
2 use warnings;
3
4 use Test::More;
5 use Test::Exception;
6 use lib qw(t/lib);
7 use DBICTest;
8 use DBIC::SqlMakerTest;
9
10 my ($dsn, $user, $pass) = @ENV{map { "DBICTEST_MSSQL_ODBC_${_}" } qw/DSN USER PASS/};
11
12 plan skip_all => 'Set $ENV{DBICTEST_MSSQL_ODBC_DSN}, _USER and _PASS to run this test'
13   unless ($dsn && $user);
14
15 DBICTest::Schema->load_classes('ArtistGUID');
16 my $schema = DBICTest::Schema->connect($dsn, $user, $pass);
17
18 {
19   no warnings 'redefine';
20   my $connect_count = 0;
21   my $orig_connect = \&DBI::connect;
22   local *DBI::connect = sub { $connect_count++; goto &$orig_connect };
23
24   $schema->storage->ensure_connected;
25
26   is( $connect_count, 1, 'only one connection made');
27 }
28
29 isa_ok( $schema->storage, 'DBIx::Class::Storage::DBI::ODBC::Microsoft_SQL_Server' );
30
31 {
32   my $schema2 = $schema->connect ($schema->storage->connect_info);
33   ok (! $schema2->storage->connected, 'a re-connected cloned schema starts unconnected');
34 }
35
36 $schema->storage->dbh_do (sub {
37     my ($storage, $dbh) = @_;
38     eval { $dbh->do("DROP TABLE artist") };
39     $dbh->do(<<'SQL');
40 CREATE TABLE artist (
41    artistid INT IDENTITY NOT NULL,
42    name VARCHAR(100),
43    rank INT NOT NULL DEFAULT '13',
44    charfield CHAR(10) NULL,
45    primary key(artistid)
46 )
47 SQL
48 });
49
50 my %seen_id;
51
52 my @opts = (
53   { on_connect_call => 'use_dynamic_cursors' },
54   {},
55 );
56 my $new;
57
58 # test Auto-PK with different options
59 for my $opts (@opts) {
60   SKIP: {
61     $schema = DBICTest::Schema->connect($dsn, $user, $pass, $opts);
62
63     eval {
64       $schema->storage->ensure_connected
65     };
66     if ($@ =~ /dynamic cursors/) {
67       skip
68 'Dynamic Cursors not functional, tds_version 8.0 or greater required if using'.
69 ' FreeTDS', 1;
70     }
71
72     $schema->resultset('Artist')->search({ name => 'foo' })->delete;
73
74     $new = $schema->resultset('Artist')->create({ name => 'foo' });
75
76     ok($new->artistid > 0, "Auto-PK worked");
77   }
78 }
79
80 $seen_id{$new->artistid}++;
81
82 # test LIMIT support
83 for (1..6) {
84     $new = $schema->resultset('Artist')->create({ name => 'Artist ' . $_ });
85     is ( $seen_id{$new->artistid}, undef, "id for Artist $_ is unique" );
86     $seen_id{$new->artistid}++;
87 }
88
89 my $it = $schema->resultset('Artist')->search( {}, {
90     rows => 3,
91     order_by => 'artistid',
92 });
93
94 is( $it->count, 3, "LIMIT count ok" );
95 is( $it->next->name, "foo", "iterator->next ok" );
96 $it->next;
97 is( $it->next->name, "Artist 2", "iterator->next ok" );
98 is( $it->next, undef, "next past end of resultset ok" );
99
100 # test GUID columns
101
102 $schema->storage->dbh_do (sub {
103     my ($storage, $dbh) = @_;
104     eval { $dbh->do("DROP TABLE artist") };
105     $dbh->do(<<'SQL');
106 CREATE TABLE artist (
107    artistid UNIQUEIDENTIFIER NOT NULL,
108    name VARCHAR(100),
109    rank INT NOT NULL DEFAULT '13',
110    charfield CHAR(10) NULL,
111    a_guid UNIQUEIDENTIFIER,
112    primary key(artistid)
113 )
114 SQL
115 });
116
117 # start disconnected to make sure insert works on an un-reblessed storage
118 $schema = DBICTest::Schema->connect($dsn, $user, $pass);
119
120 my $row;
121 lives_ok {
122   $row = $schema->resultset('ArtistGUID')->create({ name => 'mtfnpy' })
123 } 'created a row with a GUID';
124
125 ok(
126   eval { $row->artistid },
127   'row has GUID PK col populated',
128 );
129 diag $@ if $@;
130
131 ok(
132   eval { $row->a_guid },
133   'row has a GUID col with auto_nextval populated',
134 );
135 diag $@ if $@;
136
137 my $row_from_db = $schema->resultset('ArtistGUID')
138   ->search({ name => 'mtfnpy' })->first;
139
140 is $row_from_db->artistid, $row->artistid,
141   'PK GUID round trip';
142
143 is $row_from_db->a_guid, $row->a_guid,
144   'NON-PK GUID round trip';
145
146 # test MONEY type
147 $schema->storage->dbh_do (sub {
148     my ($storage, $dbh) = @_;
149     eval { $dbh->do("DROP TABLE money_test") };
150     $dbh->do(<<'SQL');
151 CREATE TABLE money_test (
152    id INT IDENTITY PRIMARY KEY,
153    amount MONEY NULL
154 )
155 SQL
156 });
157
158 my $rs = $schema->resultset('Money');
159
160 lives_ok {
161   $row = $rs->create({ amount => 100 });
162 } 'inserted a money value';
163
164 cmp_ok $rs->find($row->id)->amount, '==', 100, 'money value round-trip';
165
166 lives_ok {
167   $row->update({ amount => 200 });
168 } 'updated a money value';
169
170 cmp_ok $rs->find($row->id)->amount, '==', 200,
171   'updated money value round-trip';
172
173 lives_ok {
174   $row->update({ amount => undef });
175 } 'updated a money value to NULL';
176
177 is $rs->find($row->id)->amount, undef,'updated money value to NULL round-trip';
178
179 $schema->storage->dbh_do (sub {
180     my ($storage, $dbh) = @_;
181     eval { $dbh->do("DROP TABLE owners") };
182     eval { $dbh->do("DROP TABLE books") };
183     $dbh->do(<<'SQL');
184 CREATE TABLE books (
185    id INT IDENTITY (1, 1) NOT NULL,
186    source VARCHAR(100),
187    owner INT,
188    title VARCHAR(10),
189    price INT NULL
190 )
191
192 CREATE TABLE owners (
193    id INT IDENTITY (1, 1) NOT NULL,
194    name VARCHAR(100),
195 )
196 SQL
197
198 });
199
200 lives_ok ( sub {
201   # start a new connection, make sure rebless works
202   my $schema = DBICTest::Schema->connect($dsn, $user, $pass);
203   $schema->populate ('Owners', [
204     [qw/id  name  /],
205     [qw/1   wiggle/],
206     [qw/2   woggle/],
207     [qw/3   boggle/],
208     [qw/4   fRIOUX/],
209     [qw/5   fRUE/],
210     [qw/6   fREW/],
211     [qw/7   fROOH/],
212     [qw/8   fISMBoC/],
213     [qw/9   station/],
214     [qw/10   mirror/],
215     [qw/11   dimly/],
216     [qw/12   face_to_face/],
217     [qw/13   icarus/],
218     [qw/14   dream/],
219     [qw/15   dyrstyggyr/],
220   ]);
221 }, 'populate with PKs supplied ok' );
222
223
224 lives_ok (sub {
225   # start a new connection, make sure rebless works
226   # test an insert with a supplied identity, followed by one without
227   my $schema = DBICTest::Schema->connect($dsn, $user, $pass);
228   for (2, 1) {
229     my $id = $_ * 20 ;
230     $schema->resultset ('Owners')->create ({ id => $id, name => "troglodoogle $id" });
231     $schema->resultset ('Owners')->create ({ name => "troglodoogle " . ($id + 1) });
232   }
233 }, 'create with/without PKs ok' );
234
235 is ($schema->resultset ('Owners')->count, 19, 'owner rows really in db' );
236
237 lives_ok ( sub {
238   # start a new connection, make sure rebless works
239   my $schema = DBICTest::Schema->connect($dsn, $user, $pass);
240   $schema->populate ('BooksInLibrary', [
241     [qw/source  owner title   /],
242     [qw/Library 1     secrets0/],
243     [qw/Library 1     secrets1/],
244     [qw/Eatery  1     secrets2/],
245     [qw/Library 2     secrets3/],
246     [qw/Library 3     secrets4/],
247     [qw/Eatery  3     secrets5/],
248     [qw/Library 4     secrets6/],
249     [qw/Library 5     secrets7/],
250     [qw/Eatery  5     secrets8/],
251     [qw/Library 6     secrets9/],
252     [qw/Library 7     secrets10/],
253     [qw/Eatery  7     secrets11/],
254     [qw/Library 8     secrets12/],
255   ]);
256 }, 'populate without PKs supplied ok' );
257
258 # make sure ordered subselects work
259 {
260   my $owners = $schema->resultset ('Owners')->search ({}, { order_by => 'name', offset => 2, rows => 3 });
261
262   my $al = $owners->current_source_alias;
263   my $sealed_owners = $owners->result_source->resultset->search (
264     {},
265     {
266       alias => $al,
267       from => [{
268         -alias => $al,
269         -source_handle => $owners->result_source->handle,
270         $al => $owners->as_query,
271       }],
272     },
273   );
274
275   is_deeply (
276     [ map { $_->name } ($sealed_owners->all) ],
277     [ map { $_->name } ($owners->all) ],
278     'Sort preserved from within a subquery',
279   );
280
281
282   my $corelated_owners = $owners->result_source->resultset->search (
283     {
284       id => { -in => $owners->get_column('id')->as_query },
285     },
286     {
287       order_by => 'name'
288     },
289   );
290
291   is_deeply (
292     [ map { $_->name } ($corelated_owners->all) ],
293     [ map { $_->name } ($owners->all) ],
294     'Sort preserved from within a corelated subquery',
295   );
296 }
297
298 TODO: {
299   local $TODO = "This porbably will never work, but it isn't critical either afaik";
300
301   my $book_owner_ids = $schema->resultset ('BooksInLibrary')
302                                ->search ({}, { join => 'owner', distinct => 1, order_by => 'owner.name' })
303                                 ->get_column ('owner');
304
305   my $book_owners = $schema->resultset ('Owners')->search ({
306     id => { -in => $book_owner_ids->as_query }
307   });
308
309   is_deeply (
310     [ map { $_->id } ($book_owners->all) ],
311     [ $book_owner_ids->all ],
312     'Sort is preserved across IN subqueries',
313   );
314 }
315
316 # make sure right-join-side single-prefetch ordering limit works
317 {
318   my $rs = $schema->resultset ('BooksInLibrary')->search (
319     {
320       'owner.name' => { '!=', 'woggle' },
321     },
322     {
323       prefetch => 'owner',
324       order_by => 'owner.name',
325     }
326   );
327   # this is the order in which they should come from the above query
328   my @owner_names = qw/boggle fISMBoC fREW fRIOUX fROOH fRUE wiggle wiggle/;
329
330   is ($rs->all, 8, 'Correct amount of objects from right-sorted joined resultset');
331   is_deeply (
332     [map { $_->owner->name } ($rs->all) ],
333     \@owner_names,
334     'Rows were properly ordered'
335   );
336
337   my $limited_rs = $rs->search ({}, {rows => 7, offset => 2});
338   is ($limited_rs->count, 6, 'Correct count of limited right-sorted joined resultset');
339   is ($limited_rs->count_rs->next, 6, 'Correct count_rs of limited right-sorted joined resultset');
340
341   my $queries;
342   $schema->storage->debugcb(sub { $queries++; });
343   $schema->storage->debug(1);
344
345   is_deeply (
346     [map { $_->owner->name } ($limited_rs->all) ],
347     [@owner_names[2 .. 7]],
348     'Limited rows were properly ordered'
349   );
350   is ($queries, 1, 'Only one query with prefetch');
351
352   $schema->storage->debugcb(undef);
353   $schema->storage->debug(0);
354
355
356   is_deeply (
357     [map { $_->name } ($limited_rs->search_related ('owner')->all) ],
358     [@owner_names[2 .. 7]],
359     'Rows are still properly ordered after search_related'
360   );
361 }
362
363
364 #
365 # try a prefetch on tables with identically named columns
366 #
367
368 # set quote char - make sure things work while quoted
369 $schema->storage->_sql_maker->{quote_char} = [qw/[ ]/];
370 $schema->storage->_sql_maker->{name_sep} = '.';
371
372 {
373   # try a ->has_many direction
374   my $owners = $schema->resultset ('Owners')->search (
375     {
376       'books.id' => { '!=', undef },
377       'me.name' => { '!=', 'somebogusstring' },
378     },
379     {
380       prefetch => 'books',
381       order_by => { -asc => \['name + ?', [ test => 'xxx' ]] }, # test bindvar propagation
382       rows     => 3,  # 8 results total
383     },
384   );
385
386   my ($sql, @bind) = @${$owners->page(3)->as_query};
387   is_deeply (
388     \@bind,
389     [ ([ 'me.name' => 'somebogusstring' ], [ test => 'xxx' ]) x 2 ],  # double because of the prefetch subq
390   );
391
392   is ($owners->page(1)->all, 3, 'has_many prefetch returns correct number of rows');
393   is ($owners->page(1)->count, 3, 'has-many prefetch returns correct count');
394
395   is ($owners->page(3)->all, 2, 'has_many prefetch returns correct number of rows');
396   is ($owners->page(3)->count, 2, 'has-many prefetch returns correct count');
397   is ($owners->page(3)->count_rs->next, 2, 'has-many prefetch returns correct count_rs');
398
399
400   # try a ->belongs_to direction (no select collapse, group_by should work)
401   my $books = $schema->resultset ('BooksInLibrary')->search (
402     {
403       'owner.name' => [qw/wiggle woggle/],
404     },
405     {
406       distinct => 1,
407       having => \['1 = ?', [ test => 1 ] ], #test having propagation
408       prefetch => 'owner',
409       rows     => 2,  # 3 results total
410       order_by => { -desc => 'owner' },
411     },
412   );
413
414   ($sql, @bind) = @${$books->page(3)->as_query};
415   is_deeply (
416     \@bind,
417     [
418       # inner
419       [ 'owner.name' => 'wiggle' ], [ 'owner.name' => 'woggle' ], [ source => 'Library' ], [ test => '1' ],
420       # outer
421       [ 'owner.name' => 'wiggle' ], [ 'owner.name' => 'woggle' ], [ source => 'Library' ],
422     ],
423   );
424
425   is ($books->page(1)->all, 2, 'Prefetched grouped search returns correct number of rows');
426   is ($books->page(1)->count, 2, 'Prefetched grouped search returns correct count');
427
428   is ($books->page(2)->all, 1, 'Prefetched grouped search returns correct number of rows');
429   is ($books->page(2)->count, 1, 'Prefetched grouped search returns correct count');
430   is ($books->page(2)->count_rs->next, 1, 'Prefetched grouped search returns correct count_rs');
431 }
432
433 done_testing;
434
435 # clean up our mess
436 END {
437   if (my $dbh = eval { $schema->storage->_dbh }) {
438     eval { $dbh->do("DROP TABLE $_") }
439       for qw/artist money_test books owners/;
440   }
441 }
442 # vim:sw=2 sts=2