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