Lose the literal sql bits - castaway is right it's silly to support those
[dbsrgits/DBIx-Class.git] / t / prefetch / grouped.t
1 use strict;
2 use warnings;
3 use Test::More;
4
5 use lib qw(t/lib);
6 use DBICTest;
7 use DBIC::SqlMakerTest;
8
9 #plan tests => 6;
10 plan 'no_plan';
11
12 my $schema = DBICTest->init_schema();
13
14 my $cd_rs = $schema->resultset('CD')->search (
15   { 'tracks.cd' => { '!=', undef } },
16   { prefetch => 'tracks' },
17 );
18
19 # Database sanity check
20 is($cd_rs->count, 5, 'CDs with tracks count');
21 for ($cd_rs->all) {
22   is ($_->tracks->count, 3, '3 tracks for CD' . $_->id );
23 }
24
25 # Test a belongs_to prefetch of a has_many
26 {
27   my $track_rs = $schema->resultset ('Track')->search (
28     { 'me.cd' => { -in => [ $cd_rs->get_column ('cdid')->all ] } },
29     {
30       # the select/as is deliberately silly to test both funcs and refs below
31       select => [
32         'me.cd',
33         { count => 'me.trackid' },
34       ],
35       as => [qw/
36         cd
37         track_count
38       /],
39       group_by => [qw/me.cd/],
40       prefetch => 'cd',
41     },
42   );
43
44   is($track_rs->count, 5, 'Prefetched count with groupby');
45   is($track_rs->all, 5, 'Prefetched objects with groupby');
46
47   {
48     my $query_cnt = 0;
49     $schema->storage->debugcb ( sub { $query_cnt++ } );
50
51     $track_rs->reset;
52     while (my $collapsed_track = $track_rs->next) {
53
54       my $cdid = $collapsed_track->get_column('cd');
55       is($collapsed_track->get_column('track_count'), 3, "Correct count of tracks for CD $cdid" );
56       ok($collapsed_track->cd->title, "Prefetched title for CD $cdid" );
57     }
58
59     is ($query_cnt, 0, 'No queries on prefetched titles');
60     $schema->storage->debugcb (undef);
61   }
62
63   # Test sql by hand, as the sqlite db will simply paper over
64   # improper group/select combinations
65   #
66   # the exploded IN needs fixing below, coming in another branch
67   #
68   is_same_sql_bind (
69     $track_rs->count_rs->as_query,
70     '(
71       SELECT COUNT( * )
72         FROM (
73           SELECT me.cd
74             FROM track me
75             JOIN cd cd ON cd.cdid = me.cd
76           WHERE ( me.cd IN ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? ) )
77           GROUP BY me.cd
78         )
79       count_subq
80     )',
81     [ map { [ 'me.cd' => $_] } ($cd_rs->get_column ('cdid')->all) ],
82     'count() query generated expected SQL',
83   );
84
85   # the double-count is deliberate
86   is_same_sql_bind (
87     $track_rs->as_query,
88     '(
89       SELECT me.cd, me.track_count, cd.cdid, cd.artist, cd.title, cd.year, cd.genreid, cd.single_track
90         FROM (
91           SELECT me.cd, COUNT (me.trackid) AS track_count,
92             FROM track me
93           WHERE ( cd IN ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? ) )
94           GROUP BY me.cd
95           ) as me
96         JOIN cd cd ON cd.cdid = me.cd
97       WHERE ( me.cd IN ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? ) )
98     )',
99     [ map { [ 'me.cd' => $_] } ($cd_rs->get_column ('cdid')->all) ],
100     'next() query generated expected SQL',
101   );
102
103
104   # add an extra track to one of the cds, and then make sure we can get it on top
105   # (check if limit works)
106   my $top_cd = $cd_rs->slice (1,1)->next;
107   $top_cd->create_related ('tracks', {
108     title => 'over the top',
109   });
110
111   my $top_cd_collapsed_track = $track_rs->search ({}, {
112     rows => 2,
113     order_by => [
114       { -desc => 'track_count' },
115     ],
116   });
117
118   is ($top_cd_collapsed_track->count, 2);
119
120   is (
121     $top_cd->title,
122     $top_cd_collapsed_track->first->cd->title,
123     'Correct collapsed track with prefetched CD returned on top'
124   );
125 }
126
127 # test a has_many/might_have prefetch at the same level
128 # double-count for now, until we figure out how to do this cleanly
129 # with a function
130 # Note that one of the CDs now has 4 tracks instead of 3
131 {
132   my $most_tracks_rs = $cd_rs->search ({}, {
133     prefetch => 'liner_notes',  # tracks are alredy prefetched
134     select => ['me.cdid', { count => 'tracks.trackid' } ],
135     as => [qw/cdid track_count/],
136     group_by => 'me.cdid',
137     order_by => { -desc => 'track_count' },
138     rows => 2,
139   });
140
141   is_same_sql_bind (
142     $most_tracks_rs->count_rs->as_query,
143     '(
144       SELECT COUNT( * )
145         FROM (
146           SELECT me.cdid
147             FROM cd me
148             LEFT JOIN track tracks ON tracks.cd = me.cdid
149             LEFT JOIN liner_notes liner_notes ON liner_notes.liner_id = me.cdid
150           WHERE ( tracks.cd IS NOT NULL )
151           GROUP BY me.cdid
152           LIMIT 2
153         ) count_subq
154     )',
155     [],
156     'count() query generated expected SQL',
157   );
158
159   is_same_sql_bind (
160     $most_tracks_rs->as_query,
161     '(
162       SELECT me.cdid, track_count, tracks.trackid, tracks.cd, tracks.position, tracks.title, tracks.last_updated_on, tracks.last_updated_at, liner_notes.liner_id, liner_notes.notes
163         FROM (
164           SELECT me.cdid, COUNT( tracks.trackid ) AS track_count
165             FROM cd me
166             LEFT JOIN track tracks ON tracks.cd = me.cdid
167           WHERE ( tracks.cd IS NOT NULL )
168           GROUP BY me.cdid
169           ORDER BY track_count DESC,
170           LIMIT 2
171         ) me
172         LEFT JOIN track tracks ON tracks.cd = me.cdid
173         LEFT JOIN liner_notes liner_notes ON liner_notes.liner_id = me.cdid
174       WHERE ( tracks.cd IS NOT NULL )
175       ORDER BY COUNT track_count DESC, tracks.cd
176     )',
177     [],
178     'next() query generated expected SQL',
179   );
180
181   is ($most_tracks_rs->count, 2, 'Limit works');
182   my $top_cd = $most_tracks_rs->first;
183   is ($top_cd->id, 2, 'Correct cd fetched on top'); # 2 because of the slice(1,1) above
184
185   my $query_cnt = 0;
186   $schema->storage->debugcb ( sub { $query_cnt++ } );
187
188   is ($top_cd->get_column ('track_count'), 4, 'Track count fetched correctly');
189   is ($top_cd->tracks->count, 4, 'Count of prefetched tracks rs still correct');
190   is ($top_cd->tracks->all, 4, 'Number of prefetched track objects still correct');
191   is (
192     $top_cd->liner_notes->notes,
193     'Buy Whiskey!',
194     'Correct liner pre-fetched with top cd',
195   );
196
197   is ($query_cnt, 0, 'No queries executed during prefetched data access');
198   $schema->storage->debugcb (undef);
199 }