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