Intermezzo checkin
[dbsrgits/DBIx-Class.git] / t / 77prefetch.t
CommitLineData
96e7f9ec 1use strict;
2use warnings;
3
4use Test::More;
1b374bf3 5use Test::Exception;
96e7f9ec 6use lib qw(t/lib);
7use DBICTest;
8use Data::Dumper;
9
10my $schema = DBICTest->init_schema();
11
12my $orig_debug = $schema->storage->debug;
13
14use IO::File;
15
16BEGIN {
17 eval "use DBD::SQLite";
18 plan $@
19 ? ( skip_all => 'needs DBD::SQLite for testing' )
9c3f63e9 20 : ( tests => 74 );
96e7f9ec 21}
22
23# figure out if we've got a version of sqlite that is older than 3.2.6, in
24# which case COUNT(DISTINCT()) doesn't work
25my $is_broken_sqlite = 0;
26my ($sqlite_major_ver,$sqlite_minor_ver,$sqlite_patch_ver) =
27 split /\./, $schema->storage->dbh->get_info(18);
28if( $schema->storage->dbh->get_info(17) eq 'SQLite' &&
29 ( ($sqlite_major_ver < 3) ||
30 ($sqlite_major_ver == 3 && $sqlite_minor_ver < 2) ||
31 ($sqlite_major_ver == 3 && $sqlite_minor_ver == 2 && $sqlite_patch_ver < 6) ) ) {
32 $is_broken_sqlite = 1;
33}
34
96e7f9ec 35my $queries = 0;
36$schema->storage->debugcb(sub { $queries++; });
37$schema->storage->debug(1);
38
39my @cd = $rs->all;
40
41is($cd[0]->title, 'Spoonful of bees', 'First record returned ok');
42
43ok(!defined $cd[0]->liner_notes, 'No prefetch for NULL LEFT join');
44
45is($cd[1]->{_relationship_data}{liner_notes}->notes, 'Buy Whiskey!', 'Prefetch for present LEFT JOIN');
46
47is(ref $cd[1]->liner_notes, 'DBICTest::LinerNotes', 'Prefetch returns correct class');
48
49is($cd[2]->{_inflated_column}{artist}->name, 'Caterwauler McCrae', 'Prefetch on parent object ok');
50
51is($queries, 1, 'prefetch ran only 1 select statement');
52
53$schema->storage->debug($orig_debug);
54$schema->storage->debugobj->callback(undef);
55
56# test for partial prefetch via columns attr
57my $cd = $schema->resultset('CD')->find(1,
58 {
370f2ba2 59 columns => [qw/title artist artist.name/],
96e7f9ec 60 join => { 'artist' => {} }
61 }
62);
63ok(eval { $cd->artist->name eq 'Caterwauler McCrae' }, 'single related column prefetched');
64
65# start test for nested prefetch SELECT count
66$queries = 0;
67$schema->storage->debugcb(sub { $queries++ });
68$schema->storage->debug(1);
69
70$rs = $schema->resultset('Tag')->search(
71 {},
72 {
73 prefetch => { cd => 'artist' }
74 }
75);
76
77my $tag = $rs->first;
78
79is( $tag->cd->title, 'Spoonful of bees', 'step 1 ok for nested prefetch' );
80
81is( $tag->cd->artist->name, 'Caterwauler McCrae', 'step 2 ok for nested prefetch');
82
83# count the SELECTs
84#$selects++ if /SELECT(?!.*WHERE 1=0.*)/;
85is($queries, 1, 'nested prefetch ran exactly 1 select statement (excluding column_info)');
86
87$queries = 0;
88
89is($tag->search_related('cd')->search_related('artist')->first->name,
90 'Caterwauler McCrae',
91 'chained belongs_to->belongs_to search_related ok');
92
93is($queries, 0, 'chained search_related after belontgs_to->belongs_to prefetch ran no queries');
94
95$queries = 0;
96
97$cd = $schema->resultset('CD')->find(1, { prefetch => 'artist' });
98
99is($cd->{_inflated_column}{artist}->name, 'Caterwauler McCrae', 'artist prefetched correctly on find');
100
101is($queries, 1, 'find with prefetch ran exactly 1 select statement (excluding column_info)');
102
103$queries = 0;
104
105$schema->storage->debugcb(sub { $queries++; });
106
107$cd = $schema->resultset('CD')->find(1, { prefetch => { cd_to_producer => 'producer' } });
108
109is($cd->producers->first->name, 'Matt S Trout', 'many_to_many accessor ok');
110
111is($queries, 1, 'many_to_many accessor with nested prefetch ran exactly 1 query');
112
113$queries = 0;
114
115my $producers = $cd->search_related('cd_to_producer')->search_related('producer');
116
117is($producers->first->name, 'Matt S Trout', 'chained many_to_many search_related ok');
118
119is($queries, 0, 'chained search_related after many_to_many prefetch ran no queries');
120
121$schema->storage->debug($orig_debug);
122$schema->storage->debugobj->callback(undef);
123
124$rs = $schema->resultset('Tag')->search(
125 {},
126 {
127 join => { cd => 'artist' },
128 prefetch => { cd => 'artist' }
129 }
130);
131
132cmp_ok( $rs->count, '>=', 0, 'nested prefetch does not duplicate joins' );
133
134my ($artist) = $schema->resultset("Artist")->search({ 'cds.year' => 2001 },
135 { order_by => 'artistid DESC', join => 'cds' });
136
137is($artist->name, 'Random Boy Band', "Join search by object ok");
138
139my @cds = $schema->resultset("CD")->search({ 'liner_notes.notes' => 'Buy Merch!' },
140 { join => 'liner_notes' });
141
142cmp_ok(scalar @cds, '==', 1, "Single CD retrieved via might_have");
143
144is($cds[0]->title, "Generic Manufactured Singles", "Correct CD retrieved");
145
146my @artists = $schema->resultset("Artist")->search({ 'tags.tag' => 'Shiny' },
147 { join => { 'cds' => 'tags' } });
148
149cmp_ok( @artists, '==', 2, "two-join search ok" );
150
151$rs = $schema->resultset("CD")->search(
152 {},
153 { group_by => [qw/ title me.cdid /] }
154);
155
156SKIP: {
157 skip "SQLite < 3.2.6 doesn't understand COUNT(DISTINCT())", 1
158 if $is_broken_sqlite;
159 cmp_ok( $rs->count, '==', 5, "count() ok after group_by on main pk" );
160}
161
162cmp_ok( scalar $rs->all, '==', 5, "all() returns same count as count() after group_by on main pk" );
163
164$rs = $schema->resultset("CD")->search(
165 {},
166 { join => [qw/ artist /], group_by => [qw/ artist.name /] }
167);
168
169SKIP: {
170 skip "SQLite < 3.2.6 doesn't understand COUNT(DISTINCT())", 1
171 if $is_broken_sqlite;
172 cmp_ok( $rs->count, '==', 3, "count() ok after group_by on related column" );
173}
174
175$rs = $schema->resultset("Artist")->search(
176 {},
177 { join => [qw/ cds /], group_by => [qw/ me.name /], having =>{ 'MAX(cds.cdid)'=> \'< 5' } }
178);
179
180cmp_ok( $rs->all, '==', 2, "results ok after group_by on related column with a having" );
181
182$rs = $rs->search( undef, { having =>{ 'count(*)'=> \'> 2' }});
183
184cmp_ok( $rs->all, '==', 1, "count() ok after group_by on related column with a having" );
185
186$rs = $schema->resultset("Artist")->search(
187 { 'cds.title' => 'Spoonful of bees',
188 'cds_2.title' => 'Forkful of bees' },
189 { join => [ 'cds', 'cds' ] });
190
191SKIP: {
192 skip "SQLite < 3.2.6 doesn't understand COUNT(DISTINCT())", 1
193 if $is_broken_sqlite;
194 cmp_ok($rs->count, '==', 1, "single artist returned from multi-join");
195}
196
197is($rs->next->name, 'Caterwauler McCrae', "Correct artist returned");
198
199$cd = $schema->resultset('Artist')->first->create_related('cds',
200 {
201 title => 'Unproduced Single',
202 year => 2007
203});
204
205my $left_join = $schema->resultset('CD')->search(
206 { 'me.cdid' => $cd->cdid },
207 { prefetch => { cd_to_producer => 'producer' } }
208);
209
210cmp_ok($left_join, '==', 1, 'prefetch with no join record present');
211
212$queries = 0;
213$schema->storage->debugcb(sub { $queries++ });
214$schema->storage->debug(1);
215
216my $tree_like =
8871d4ad 217 $schema->resultset('TreeLike')->find(5,
96e7f9ec 218 { join => { parent => { parent => 'parent' } },
219 prefetch => { parent => { parent => 'parent' } } });
220
221is($tree_like->name, 'quux', 'Bottom of tree ok');
222$tree_like = $tree_like->parent;
223is($tree_like->name, 'baz', 'First level up ok');
224$tree_like = $tree_like->parent;
225is($tree_like->name, 'bar', 'Second level up ok');
226$tree_like = $tree_like->parent;
227is($tree_like->name, 'foo', 'Third level up ok');
228
229$schema->storage->debug($orig_debug);
230$schema->storage->debugobj->callback(undef);
231
232cmp_ok($queries, '==', 1, 'Only one query run');
233
8871d4ad 234$tree_like = $schema->resultset('TreeLike')->search({'me.id' => 2});
96e7f9ec 235$tree_like = $tree_like->search_related('children')->search_related('children')->search_related('children')->first;
236is($tree_like->name, 'quux', 'Tree search_related ok');
237
238$tree_like = $schema->resultset('TreeLike')->search_related('children',
8871d4ad 239 { 'children.id' => 3, 'children_2.id' => 4 },
96e7f9ec 240 { prefetch => { children => 'children' } }
241 )->first;
242is(eval { $tree_like->children->first->children->first->name }, 'quux',
243 'Tree search_related with prefetch ok');
244
245$tree_like = eval { $schema->resultset('TreeLike')->search(
8871d4ad 246 { 'children.id' => 3, 'children_2.id' => 6 },
96e7f9ec 247 { join => [qw/children children/] }
8871d4ad 248 )->search_related('children', { 'children_4.id' => 7 }, { prefetch => 'children' }
96e7f9ec 249 )->first->children->first; };
250is(eval { $tree_like->name }, 'fong', 'Tree with multiple has_many joins ok');
251
252# test that collapsed joins don't get a _2 appended to the alias
253
254my $sql = '';
255$schema->storage->debugcb(sub { $sql = $_[1] });
256$schema->storage->debug(1);
257
258eval {
259 my $row = $schema->resultset('Artist')->search_related('cds', undef, {
260 join => 'tracks',
261 prefetch => 'tracks',
262 })->search_related('tracks')->first;
263};
264
265like( $sql, qr/^SELECT tracks_2\.trackid/, "join not collapsed for search_related" );
266
267$schema->storage->debug($orig_debug);
268$schema->storage->debugobj->callback(undef);
269
270$rs = $schema->resultset('Artist');
271$rs->create({ artistid => 4, name => 'Unknown singer-songwriter' });
272$rs->create({ artistid => 5, name => 'Emo 4ever' });
273@artists = $rs->search(undef, { prefetch => 'cds', order_by => 'artistid' });
274is(scalar @artists, 5, 'has_many prefetch with adjacent empty rows ok');
275
276# -------------
277#
278# Tests for multilevel has_many prefetch
279
280# artist resultsets - with and without prefetch
281my $art_rs = $schema->resultset('Artist');
282my $art_rs_pr = $art_rs->search(
283 {},
284 {
285 join => [ { cds => ['tracks'] } ],
286 prefetch => [ { cds => ['tracks'] } ],
287 cache => 1 # last test needs this
288 }
289);
290
291# This test does the same operation twice - once on a
292# set of items fetched from the db with no prefetch of has_many rels
293# The second prefetches 2 levels of has_many
294# We check things are the same by comparing the name or title
295# we build everything into a hash structure and compare the one
296# from each rs to see what differs
297
298sub make_hash_struc {
299 my $rs = shift;
300
301 my $struc = {};
302 foreach my $art ( $rs->all ) {
303 foreach my $cd ( $art->cds ) {
304 foreach my $track ( $cd->tracks ) {
305 $struc->{ $art->name }{ $cd->title }{ $track->title }++;
306 }
307 }
308 }
309 return $struc;
310}
311
312$queries = 0;
313$schema->storage->debugcb(sub { $queries++ });
314$schema->storage->debug(1);
315
316my $prefetch_result = make_hash_struc($art_rs_pr);
317
318is($queries, 1, 'nested prefetch across has_many->has_many ran exactly 1 query');
319
320my $nonpre_result = make_hash_struc($art_rs);
321
322is_deeply( $prefetch_result, $nonpre_result,
323 'Compare 2 level prefetch result to non-prefetch result' );
324
325$queries = 0;
326
327is($art_rs_pr->search_related('cds')->search_related('tracks')->first->title,
328 'Fowlin',
329 'chained has_many->has_many search_related ok'
330 );
331
332is($queries, 0, 'chained search_related after has_many->has_many prefetch ran no queries');
b2df8400 333