Restore ability to handle underdefined root (t/prefetch/incomplete.t)
[dbsrgits/DBIx-Class.git] / t / prefetch / manual.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
9 my $schema = DBICTest->init_schema(no_populate => 1);
10
11 $schema->resultset('Artist')->create({ name => 'JMJ', cds => [{
12   title => 'Magnetic Fields',
13   year => 1981,
14   genre => { name => 'electro' },
15   tracks => [
16     { title => 'm1' },
17     { title => 'm2' },
18     { title => 'm3' },
19     { title => 'm4' },
20   ],
21 } ] });
22
23 $schema->resultset('CD')->create({
24   title => 'Equinoxe',
25   year => 1978,
26   artist => { name => 'JMJ' },
27   genre => { name => 'electro' },
28   tracks => [
29     { title => 'e1' },
30     { title => 'e2' },
31     { title => 'e3' },
32   ],
33   single_track => {
34     title => 'o1',
35     cd => {
36       title => 'Oxygene',
37       year => 1976,
38       artist => { name => 'JMJ' },
39       tracks => [
40         { title => 'o2', position => 2},  # the position should not be here, bug in MC
41       ],
42     },
43   },
44 });
45
46 my $rs = $schema->resultset ('CD')->search ({}, {
47   join => [ 'tracks', { single_track => { cd => { artist => { cds => 'tracks' } } } }  ],
48   collapse => 1,
49   columns => [
50     { 'year'                                    => 'me.year' },               # non-unique
51     { 'genreid'                                 => 'me.genreid' },            # nullable
52     { 'tracks.title'                            => 'tracks.title' },          # non-unique (no me.id)
53     { 'single_track.cd.artist.cds.cdid'         => 'cds.cdid' },              # to give uniquiness to ...tracks.title below
54     { 'single_track.cd.artist.artistid'         => 'artist.artistid' },       # uniqufies entire parental chain
55     { 'single_track.cd.artist.cds.year'         => 'cds.year' },              # non-unique
56     { 'single_track.cd.artist.cds.genreid'      => 'cds.genreid' },           # nullable
57     { 'single_track.cd.artist.cds.tracks.title' => 'tracks_2.title' },        # unique when combined with ...cds.cdid above
58     { 'latest_cd'                     => \ "(SELECT MAX(year) FROM cd)" },    # random function
59     { 'title'                                   => 'me.title' },              # uniquiness for me
60     { 'artist'                                  => 'me.artist' },             # uniquiness for me
61   ],
62   order_by => [{ -desc => 'cds.year' }, { -desc => 'me.title'} ],
63 });
64
65 my $hri_rs = $rs->search({}, { result_class => 'DBIx::Class::ResultClass::HashRefInflator' });
66
67 is_deeply (
68   [$hri_rs->all],
69   [
70     {
71       artist => 1,
72       genreid => 1,
73       latest_cd => 1981,
74       single_track => {
75         cd => {
76           artist => {
77             artistid => 1,
78             cds => [
79               {
80                 cdid => 1,
81                 genreid => 1,
82                 tracks => [
83                   {
84                     title => "m1"
85                   },
86                   {
87                     title => "m2"
88                   },
89                   {
90                     title => "m3"
91                   },
92                   {
93                     title => "m4"
94                   }
95                 ],
96                 year => 1981
97               },
98               {
99                 cdid => 3,
100                 genreid => 1,
101                 tracks => [
102                   {
103                     title => "e1"
104                   },
105                   {
106                     title => "e2"
107                   },
108                   {
109                     title => "e3"
110                   }
111                 ],
112                 year => 1978
113               },
114               {
115                 cdid => 2,
116                 genreid => undef,
117                 tracks => [
118                   {
119                     title => "o1"
120                   },
121                   {
122                     title => "o2"
123                   }
124                 ],
125                 year => 1976
126               }
127             ]
128           }
129         }
130       },
131       title => "Equinoxe",
132       tracks => [
133         {
134           title => "e1"
135         },
136         {
137           title => "e2"
138         },
139         {
140           title => "e3"
141         }
142       ],
143       year => 1978
144     },
145     {
146       artist => 1,
147       genreid => undef,
148       latest_cd => 1981,
149       single_track => undef,
150       title => "Oxygene",
151       tracks => [
152         {
153           title => "o1"
154         },
155         {
156           title => "o2"
157         }
158       ],
159       year => 1976
160     },
161     {
162       artist => 1,
163       genreid => 1,
164       latest_cd => 1981,
165       single_track => undef,
166       title => "Magnetic Fields",
167       tracks => [
168         {
169           title => "m1"
170         },
171         {
172           title => "m2"
173         },
174         {
175           title => "m3"
176         },
177         {
178           title => "m4"
179         }
180       ],
181       year => 1981
182     },
183   ],
184   'W00T, manual prefetch with collapse works'
185 );
186
187 TODO: {
188   my $row = $rs->next;
189   local $TODO = 'Something is wrong with filter type rels, they throw on incomplete objects >.<';
190
191   lives_ok {
192     is_deeply (
193       { $row->single_track->get_columns },
194       {},
195       'empty intermediate object ok',
196     )
197   } 'no exception';
198 }
199
200 is ($rs->cursor->next, undef, 'cursor exhausted');
201
202
203 TODO: {
204 local $TODO = 'this does not work at all, need to promote rsattrs to an object on its own';
205 # make sure has_many column redirection does not do weird stuff when collapse is requested
206 for my $pref_args (
207   { prefetch => 'cds'},
208   { collapse => 1 }
209 ) {
210   for my $col_and_join_args (
211     { '+columns' => { 'cd_title' => 'cds_2.title' }, join => [ 'cds', 'cds' ] },
212     { '+columns' => { 'cd_title' => 'cds.title' }, join => 'cds', }
213   ) {
214
215     my $weird_rs = $schema->resultset('Artist')->search({}, {
216       %$col_and_join_args, %$pref_args,
217     });
218
219     for (qw/next all first/) {
220       throws_ok { $weird_rs->$_ } qr/not yet determined exception text/;
221     }
222   }
223 }
224 }
225
226 # multi-has_many with underdefined root, with rather random order
227 $rs = $schema->resultset ('CD')->search ({}, {
228   join => [ 'tracks', { single_track => { cd => { artist => { cds => 'tracks' } } } }  ],
229   collapse => 1,
230   columns => [
231     { 'single_track.trackid'                    => 'single_track.trackid' },  # definitive link to root from 1:1:1:1:M:M chain
232     { 'year'                                    => 'me.year' },               # non-unique
233     { 'tracks.cd'                               => 'tracks.cd' },             # \ together both uniqueness for second multirel
234     { 'tracks.title'                            => 'tracks.title' },          # / and definitive link back to root
235     { 'single_track.cd.artist.cds.cdid'         => 'cds.cdid' },              # to give uniquiness to ...tracks.title below
236     { 'single_track.cd.artist.cds.year'         => 'cds.year' },              # non-unique
237     { 'single_track.cd.artist.artistid'         => 'artist.artistid' },       # uniqufies entire parental chain
238     { 'single_track.cd.artist.cds.genreid'      => 'cds.genreid' },           # nullable
239     { 'single_track.cd.artist.cds.tracks.title' => 'tracks_2.title' },        # unique when combined with ...cds.cdid above
240   ],
241 });
242
243 for (1..3) {
244   $rs->create({ artist => 1, year => 1977, title => "fuzzy_$_" });
245 }
246
247 my $rs_random = $rs->search({}, { order_by => \ 'RANDOM()' });
248 is ($rs_random->count, 6, 'row count matches');
249
250 if ($ENV{TEST_VERBOSE}) {
251  my @lines = (
252     [ "What are we actually trying to collapse (Select/As, tests below will see a *DIFFERENT* random order):" ],
253     [ map { my $s = $_; $s =~ s/single_track\./sngl_tr./; $s } @{$rs_random->{_attrs}{select} } ],
254     $rs_random->{_attrs}{as},
255     [ "-" x 159 ],
256     $rs_random->cursor->all,
257   );
258
259   diag join ' # ', map { sprintf '% 15s', (defined $_ ? $_ : 'NULL') } @$_
260     for @lines;
261 }
262
263 my $queries = 0;
264 $schema->storage->debugcb(sub { $queries++ });
265 my $orig_debug = $schema->storage->debug;
266 $schema->storage->debug (1);
267
268 for my $use_next (0, 1) {
269   my @random_cds;
270   if ($use_next) {
271     while (my $o = $rs_random->next) {
272       push @random_cds, $o;
273     }
274   }
275   else {
276     @random_cds = $rs_random->all;
277   }
278
279   is (@random_cds, 6, 'object count matches');
280
281   for my $cd (@random_cds) {
282     if ($cd->year == 1977) {
283       is( scalar $cd->tracks, 0, 'no tracks on 1977 cd' );
284       is( $cd->single_track, undef, 'no single_track on 1977 cd' );
285     }
286     elsif ($cd->year == 1976) {
287       is( scalar $cd->tracks, 2, 'Two tracks on 1976 cd' );
288       like( $_->title, qr/^o\d/, "correct title" )
289         for $cd->tracks;
290       is( $cd->single_track, undef, 'no single_track on 1976 cd' );
291     }
292     elsif ($cd->year == 1981) {
293       is( scalar $cd->tracks, 4, 'Four tracks on 1981 cd' );
294       like( $_->title, qr/^m\d/, "correct title" )
295         for $cd->tracks;
296       is( $cd->single_track, undef, 'no single_track on 1981 cd' );
297     }
298     elsif ($cd->year == 1978) {
299       is( scalar $cd->tracks, 3, 'Three tracks on 1978 cd' );
300       like( $_->title, qr/^e\d/, "correct title" )
301         for $cd->tracks;
302       ok( defined $cd->single_track, 'single track prefetched on 1987 cd' );
303       # FIXME - crap! skipping prefetch also doesn't work, next commit
304       #is( $cd->single_track->cd->artist->id, 1, 'Single_track->cd->artist prefetched on 1978 cd' );
305       #is( scalar $cd->single_track->cd->artist->cds, 6, '6 cds prefetched on artist' );
306     }
307   }
308 }
309
310 $schema->storage->debugcb(undef);
311 $schema->storage->debug($orig_debug);
312 is ($queries, 2, "Only two queries for rwo prefetch calls total");
313
314 # can't is_deeply a random set - need *some* order
315 my @hris = sort { $a->{year} cmp $b->{year} } @{$rs->search({}, {
316   order_by => [ 'tracks_2.title', 'tracks.title', 'cds.cdid', \ 'RANDOM()' ],
317 })->all_hri};
318 is (@hris, 6, 'hri count matches' );
319
320 is_deeply (\@hris, [
321   {
322     single_track => undef,
323     tracks => [
324       {
325         cd => 2,
326         title => "o1"
327       },
328       {
329         cd => 2,
330         title => "o2"
331       }
332     ],
333     year => 1976
334   },
335   {
336     single_track => undef,
337     tracks => [],
338     year => 1977
339   },
340   {
341     single_track => undef,
342     tracks => [],
343     year => 1977
344   },
345   {
346     single_track => undef,
347     tracks => [],
348     year => 1977
349   },
350   {
351     single_track => {
352       cd => {
353         artist => {
354           artistid => 1,
355           cds => [
356             {
357               cdid => 4,
358               genreid => undef,
359               tracks => [],
360               year => 1977
361             },
362             {
363               cdid => 5,
364               genreid => undef,
365               tracks => [],
366               year => 1977
367             },
368             {
369               cdid => 6,
370               genreid => undef,
371               tracks => [],
372               year => 1977
373             },
374             {
375               cdid => 3,
376               genreid => 1,
377               tracks => [
378                 {
379                   title => "e1"
380                 },
381                 {
382                   title => "e2"
383                 },
384                 {
385                   title => "e3"
386                 }
387               ],
388               year => 1978
389             },
390             {
391               cdid => 1,
392               genreid => 1,
393               tracks => [
394                 {
395                   title => "m1"
396                 },
397                 {
398                   title => "m2"
399                 },
400                 {
401                   title => "m3"
402                 },
403                 {
404                   title => "m4"
405                 }
406               ],
407               year => 1981
408             },
409             {
410               cdid => 2,
411               genreid => undef,
412               tracks => [
413                 {
414                   title => "o1"
415                 },
416                 {
417                   title => "o2"
418                 }
419               ],
420               year => 1976
421             }
422           ]
423         }
424       },
425       trackid => 6
426     },
427     tracks => [
428       {
429         cd => 3,
430         title => "e1"
431       },
432       {
433         cd => 3,
434         title => "e2"
435       },
436       {
437         cd => 3,
438         title => "e3"
439       },
440     ],
441     year => 1978
442   },
443   {
444     single_track => undef,
445     tracks => [
446       {
447         cd => 1,
448         title => "m1"
449       },
450       {
451         cd => 1,
452         title => "m2"
453       },
454       {
455         cd => 1,
456         title => "m3"
457       },
458       {
459         cd => 1,
460         title => "m4"
461       },
462     ],
463     year => 1981
464   },
465 ], 'W00T, multi-has_many manual underdefined root prefetch with collapse works');
466
467 done_testing;