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