fixed a typo in a regexp
[dbsrgits/DBIx-Class.git] / t / 76joins.t
CommitLineData
70350518 1use strict;
2use warnings;
3
4use Test::More;
5use lib qw(t/lib);
6use DBICTest;
7
a47e1233 8my $schema = DBICTest->init_schema();
0567538f 9
4d91ad3f 10my $orig_debug = $schema->storage->debug;
11
0567538f 12use IO::File;
13
14BEGIN {
15 eval "use DBD::SQLite";
16 plan $@
17 ? ( skip_all => 'needs DBD::SQLite for testing' )
10ed6c25 18 : ( tests => 47 );
0567538f 19}
20
58ff4acf 21# figure out if we've got a version of sqlite that is older than 3.2.6, in
22# which case COUNT(DISTINCT()) doesn't work
23my $is_broken_sqlite = 0;
24my ($sqlite_major_ver,$sqlite_minor_ver,$sqlite_patch_ver) =
25 split /\./, $schema->storage->dbh->get_info(18);
26if( $schema->storage->dbh->get_info(17) eq 'SQLite' &&
27 ( ($sqlite_major_ver < 3) ||
28 ($sqlite_major_ver == 3 && $sqlite_minor_ver < 2) ||
29 ($sqlite_major_ver == 3 && $sqlite_minor_ver == 2 && $sqlite_patch_ver < 6) ) ) {
30 $is_broken_sqlite = 1;
31}
485f6e10 32
0567538f 33# test the abstract join => SQL generator
34my $sa = new DBIC::SQL::Abstract;
35
36my @j = (
37 { child => 'person' },
38 [ { father => 'person' }, { 'father.person_id' => 'child.father_id' }, ],
39 [ { mother => 'person' }, { 'mother.person_id' => 'child.mother_id' } ],
40);
41my $match = 'person child JOIN person father ON ( father.person_id = '
42 . 'child.father_id ) JOIN person mother ON ( mother.person_id '
43 . '= child.mother_id )'
44 ;
45is( $sa->_recurse_from(@j), $match, 'join 1 ok' );
46
47my @j2 = (
48 { mother => 'person' },
49 [ [ { child => 'person' },
50 [ { father => 'person' },
51 { 'father.person_id' => 'child.father_id' }
52 ]
53 ],
54 { 'mother.person_id' => 'child.mother_id' }
55 ],
56);
57$match = 'person mother JOIN (person child JOIN person father ON ('
58 . ' father.person_id = child.father_id )) ON ( mother.person_id = '
59 . 'child.mother_id )'
60 ;
61is( $sa->_recurse_from(@j2), $match, 'join 2 ok' );
62
63my @j3 = (
64 { child => 'person' },
65 [ { father => 'person', -join_type => 'inner' }, { 'father.person_id' => 'child.father_id' }, ],
66 [ { mother => 'person', -join_type => 'inner' }, { 'mother.person_id' => 'child.mother_id' } ],
67);
68$match = 'person child INNER JOIN person father ON ( father.person_id = '
69 . 'child.father_id ) INNER JOIN person mother ON ( mother.person_id '
70 . '= child.mother_id )'
71 ;
72
73is( $sa->_recurse_from(@j3), $match, 'join 3 (inner join) ok');
74
ca7b9fdf 75my @j4 = (
76 { mother => 'person' },
77 [ [ { child => 'person', -join_type => 'left' },
78 [ { father => 'person', -join_type => 'right' },
79 { 'father.person_id' => 'child.father_id' }
80 ]
81 ],
82 { 'mother.person_id' => 'child.mother_id' }
83 ],
84);
85$match = 'person mother LEFT JOIN (person child RIGHT JOIN person father ON ('
86 . ' father.person_id = child.father_id )) ON ( mother.person_id = '
87 . 'child.mother_id )'
88 ;
89is( $sa->_recurse_from(@j4), $match, 'join 4 (nested joins + join types) ok');
90
f9db5527 91my $rs = $schema->resultset("CD")->search(
0567538f 92 { 'year' => 2001, 'artist.name' => 'Caterwauler McCrae' },
93 { from => [ { 'me' => 'cd' },
94 [
95 { artist => 'artist' },
96 { 'me.artist' => 'artist.artistid' }
97 ] ] }
98 );
99
ebaefbc2 100cmp_ok( $rs + 0, '==', 1, "Single record in resultset");
0567538f 101
102is($rs->first->title, 'Forkful of bees', 'Correct record returned');
103
f9db5527 104$rs = $schema->resultset("CD")->search(
0567538f 105 { 'year' => 2001, 'artist.name' => 'Caterwauler McCrae' },
106 { join => 'artist' });
107
ebaefbc2 108cmp_ok( $rs + 0, '==', 1, "Single record in resultset");
0567538f 109
110is($rs->first->title, 'Forkful of bees', 'Correct record returned');
111
f9db5527 112$rs = $schema->resultset("CD")->search(
0567538f 113 { 'artist.name' => 'We Are Goth',
114 'liner_notes.notes' => 'Kill Yourself!' },
115 { join => [ qw/artist liner_notes/ ] });
116
ebaefbc2 117cmp_ok( $rs + 0, '==', 1, "Single record in resultset");
0567538f 118
119is($rs->first->title, 'Come Be Depressed With Us', 'Correct record returned');
120
8fe164b9 121# when using join attribute, make sure slice()ing all objects has same count as all()
f9db5527 122$rs = $schema->resultset("CD")->search(
8fe164b9 123 { 'artist' => 1 },
124 { join => [qw/artist/], order_by => 'artist.name' }
125);
126cmp_ok( scalar $rs->all, '==', scalar $rs->slice(0, $rs->count - 1), 'slice() with join has same count as all()' );
127
f9db5527 128$rs = $schema->resultset("Artist")->search(
0567538f 129 { 'liner_notes.notes' => 'Kill Yourself!' },
130 { join => { 'cds' => 'liner_notes' } });
131
132cmp_ok( $rs->count, '==', 1, "Single record in resultset");
133
134is($rs->first->name, 'We Are Goth', 'Correct record returned');
135
f9db5527 136$rs = $schema->resultset("CD")->search(
0567538f 137 { 'artist.name' => 'Caterwauler McCrae' },
138 { prefetch => [ qw/artist liner_notes/ ],
139 order_by => 'me.cdid' });
140
ebaefbc2 141cmp_ok($rs + 0, '==', 3, 'Correct number of records returned');
0567538f 142
d52170d4 143my $queries = 0;
144$schema->storage->debugcb(sub { $queries++ });
145
146$queries = 0;
147$schema->storage->debug(1);
0567538f 148
149my @cd = $rs->all;
150
151is($cd[0]->title, 'Spoonful of bees', 'First record returned ok');
152
7cd300ea 153ok(!defined $cd[0]->liner_notes, 'No prefetch for NULL LEFT join');
0567538f 154
155is($cd[1]->{_relationship_data}{liner_notes}->notes, 'Buy Whiskey!', 'Prefetch for present LEFT JOIN');
156
dd417d06 157is(ref $cd[1]->liner_notes, 'DBICTest::LinerNotes', 'Prefetch returns correct class');
158
0567538f 159is($cd[2]->{_inflated_column}{artist}->name, 'Caterwauler McCrae', 'Prefetch on parent object ok');
160
d52170d4 161is($queries, 1, 'prefetch ran only 1 select statement');
162
4d91ad3f 163$schema->storage->debug($orig_debug);
164$schema->storage->debugobj->callback(undef);
0567538f 165
9b465d00 166# test for partial prefetch via columns attr
d20bb28e 167my $cd = $schema->resultset('CD')->find(1,
168 {
9b465d00 169 columns => [qw/title artist.name/],
0e35aa05 170 join => { 'artist' => {} }
d20bb28e 171 }
172);
173ok(eval { $cd->artist->name eq 'Caterwauler McCrae' }, 'single related column prefetched');
174
b3e8ac9b 175# start test for nested prefetch SELECT count
d52170d4 176$queries = 0;
177$schema->storage->debug(1);
b3e8ac9b 178
179$rs = $schema->resultset('Tag')->search(
180 {},
181 {
182 prefetch => { cd => 'artist' }
183 }
184);
185
186my $tag = $rs->first;
187
188is( $tag->cd->title, 'Spoonful of bees', 'step 1 ok for nested prefetch' );
189
190is( $tag->cd->artist->name, 'Caterwauler McCrae', 'step 2 ok for nested prefetch');
191
192# count the SELECTs
d52170d4 193#$selects++ if /SELECT(?!.*WHERE 1=0.*)/;
194is($queries, 1, 'nested prefetch ran exactly 1 select statement (excluding column_info)');
b3e8ac9b 195
d52170d4 196$queries = 0;
c5b7d799 197
d20bb28e 198$cd = $schema->resultset('CD')->find(1, { prefetch => 'artist' });
c5b7d799 199
200is($cd->{_inflated_column}{artist}->name, 'Caterwauler McCrae', 'artist prefetched correctly on find');
201
d52170d4 202is($queries, 1, 'find with prefetch ran exactly 1 select statement (excluding column_info)');
203
4d91ad3f 204$schema->storage->debug($orig_debug);
205$schema->storage->debugobj->callback(undef);
c5b7d799 206
b3e8ac9b 207$rs = $schema->resultset('Tag')->search(
208 {},
209 {
210 join => { cd => 'artist' },
211 prefetch => { cd => 'artist' }
212 }
213);
214
215cmp_ok( $rs->count, '>=', 0, 'nested prefetch does not duplicate joins' );
216
f9db5527 217my ($artist) = $schema->resultset("Artist")->search({ 'cds.year' => 2001 },
0567538f 218 { order_by => 'artistid DESC', join => 'cds' });
219
220is($artist->name, 'Random Boy Band', "Join search by object ok");
221
f9db5527 222my @cds = $schema->resultset("CD")->search({ 'liner_notes.notes' => 'Buy Merch!' },
0567538f 223 { join => 'liner_notes' });
224
225cmp_ok(scalar @cds, '==', 1, "Single CD retrieved via might_have");
226
227is($cds[0]->title, "Generic Manufactured Singles", "Correct CD retrieved");
228
f9db5527 229my @artists = $schema->resultset("Artist")->search({ 'tags.tag' => 'Shiny' },
0567538f 230 { join => { 'cds' => 'tags' } });
231
232cmp_ok( @artists, '==', 2, "two-join search ok" );
233
15c382be 234$rs = $schema->resultset("CD")->search(
235 {},
236 { group_by => [qw/ title me.cdid /] }
237);
238
485f6e10 239SKIP: {
240 skip "SQLite < 3.2.6 doesn't understand COUNT(DISTINCT())", 1
241 if $is_broken_sqlite;
242 cmp_ok( $rs->count, '==', 5, "count() ok after group_by on main pk" );
243}
15c382be 244
245cmp_ok( scalar $rs->all, '==', 5, "all() returns same count as count() after group_by on main pk" );
246
247$rs = $schema->resultset("CD")->search(
248 {},
249 { join => [qw/ artist /], group_by => [qw/ artist.name /] }
250);
251
485f6e10 252SKIP: {
253 skip "SQLite < 3.2.6 doesn't understand COUNT(DISTINCT())", 1
254 if $is_broken_sqlite;
255 cmp_ok( $rs->count, '==', 3, "count() ok after group_by on related column" );
256}
15c382be 257
8839560b 258$rs = $schema->resultset("Artist")->search(
6991aba3 259 {},
01c73d7b 260 { join => [qw/ cds /], group_by => [qw/ me.name /], having =>{ 'MAX(cds.cdid)'=> \'< 5' } }
6991aba3 261);
262
8839560b 263cmp_ok( $rs->all, '==', 2, "results ok after group_by on related column with a having" );
6991aba3 264
01c73d7b 265$rs = $rs->search( undef, { having =>{ 'count(*)'=> \'> 2' }});
6991aba3 266
8839560b 267cmp_ok( $rs->all, '==', 1, "count() ok after group_by on related column with a having" );
489709af 268
269$rs = $schema->resultset("Artist")->search(
270 { 'cds.title' => 'Spoonful of bees',
271 'cds_2.title' => 'Forkful of bees' },
272 { join => [ 'cds', 'cds' ] });
273
485f6e10 274SKIP: {
275 skip "SQLite < 3.2.6 doesn't understand COUNT(DISTINCT())", 1
276 if $is_broken_sqlite;
277 cmp_ok($rs->count, '==', 1, "single artist returned from multi-join");
278}
279
489709af 280is($rs->next->name, 'Caterwauler McCrae', "Correct artist returned");
281
d52170d4 282$queries = 0;
887ce227 283$schema->storage->debug(1);
284
285my $tree_like =
286 $schema->resultset('TreeLike')->find(4,
287 { join => { parent => { parent => 'parent' } },
288 prefetch => { parent => { parent => 'parent' } } });
289
290is($tree_like->name, 'quux', 'Bottom of tree ok');
291$tree_like = $tree_like->parent;
292is($tree_like->name, 'baz', 'First level up ok');
293$tree_like = $tree_like->parent;
294is($tree_like->name, 'bar', 'Second level up ok');
295$tree_like = $tree_like->parent;
296is($tree_like->name, 'foo', 'Third level up ok');
297
4d91ad3f 298$schema->storage->debug($orig_debug);
299$schema->storage->debugobj->callback(undef);
887ce227 300
301cmp_ok($queries, '==', 1, 'Only one query run');
302
10ed6c25 303$tree_like = $schema->resultset('TreeLike')->search({'me.id' => 1});
af4cd3e5 304$tree_like = $tree_like->search_related('children')->search_related('children')->search_related('children')->first;
7e5b5f6e 305is($tree_like->name, 'quux', 'Tree search_related ok');
306
7b343d8e 307$tree_like = $schema->resultset('TreeLike')->search({ 'children.id' => 2 });
10ed6c25 308$tree_like = $tree_like->search_related('children', undef, { prefetch => { children => 'children' } })->first;
8de797db 309is($tree_like->children->first->children->first->name, 'quux', 'Tree search_related with prefetch ok');
10ed6c25 310
311$tree_like = $schema->resultset('TreeLike')->search(
312 { 'children.id' => 2, 'children_2.id' => 5 },
3583d755 313 { join => [qw/children children/] }
314 )->search_related('children', { 'children_3.id' => 3 }, { prefetch => 'children' }
315 )->first->children->first;
316is($tree_like->name, 'baz', 'Tree with multiple has_many joins ok');
10ed6c25 317
7e5b5f6e 318# test that collapsed joins don't get a _2 appended to the alias
319
320my $sql = '';
321$schema->storage->debugcb(sub { $sql = $_[1] });
322$schema->storage->debug(1);
323
324eval {
325 my $row = $schema->resultset('Artist')->search_related('cds', undef, {
326 join => 'tracks',
327 prefetch => 'tracks',
328 })->search_related('tracks')->first;
329};
330
fb10283e 331like( $sql, qr/^SELECT tracks\.trackid/, "collapsed join didn't add _2 to alias" );
7e5b5f6e 332
4d91ad3f 333$schema->storage->debug($orig_debug);
334$schema->storage->debugobj->callback(undef);