More test hackage
[dbsrgits/DBIx-Class.git] / t / run / 16joins.tl
CommitLineData
0567538f 1sub run_tests {
1edaf6fe 2my $schema = shift;
0567538f 3
4use IO::File;
5
6BEGIN {
7 eval "use DBD::SQLite";
8 plan $@
9 ? ( skip_all => 'needs DBD::SQLite for testing' )
8fe164b9 10 : ( tests => 23 );
0567538f 11}
12
13# test the abstract join => SQL generator
14my $sa = new DBIC::SQL::Abstract;
15
16my @j = (
17 { child => 'person' },
18 [ { father => 'person' }, { 'father.person_id' => 'child.father_id' }, ],
19 [ { mother => 'person' }, { 'mother.person_id' => 'child.mother_id' } ],
20);
21my $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 ;
25is( $sa->_recurse_from(@j), $match, 'join 1 ok' );
26
27my @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 ;
41is( $sa->_recurse_from(@j2), $match, 'join 2 ok' );
42
43my @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
53is( $sa->_recurse_from(@j3), $match, 'join 3 (inner join) ok');
54
1edaf6fe 55my $rs = $schema->class("CD")->search(
0567538f 56 { 'year' => 2001, 'artist.name' => 'Caterwauler McCrae' },
57 { from => [ { 'me' => 'cd' },
58 [
59 { artist => 'artist' },
60 { 'me.artist' => 'artist.artistid' }
61 ] ] }
62 );
63
64cmp_ok( $rs->count, '==', 1, "Single record in resultset");
65
66is($rs->first->title, 'Forkful of bees', 'Correct record returned');
67
1edaf6fe 68$rs = $schema->class("CD")->search(
0567538f 69 { 'year' => 2001, 'artist.name' => 'Caterwauler McCrae' },
70 { join => 'artist' });
71
72cmp_ok( $rs->count, '==', 1, "Single record in resultset");
73
74is($rs->first->title, 'Forkful of bees', 'Correct record returned');
75
1edaf6fe 76$rs = $schema->class("CD")->search(
0567538f 77 { 'artist.name' => 'We Are Goth',
78 'liner_notes.notes' => 'Kill Yourself!' },
79 { join => [ qw/artist liner_notes/ ] });
80
81cmp_ok( $rs->count, '==', 1, "Single record in resultset");
82
83is($rs->first->title, 'Come Be Depressed With Us', 'Correct record returned');
84
8fe164b9 85# when using join attribute, make sure slice()ing all objects has same count as all()
1edaf6fe 86$rs = $schema->class("CD")->search(
8fe164b9 87 { 'artist' => 1 },
88 { join => [qw/artist/], order_by => 'artist.name' }
89);
90cmp_ok( scalar $rs->all, '==', scalar $rs->slice(0, $rs->count - 1), 'slice() with join has same count as all()' );
91
1edaf6fe 92$rs = $schema->class("Artist")->search(
0567538f 93 { 'liner_notes.notes' => 'Kill Yourself!' },
94 { join => { 'cds' => 'liner_notes' } });
95
96cmp_ok( $rs->count, '==', 1, "Single record in resultset");
97
98is($rs->first->name, 'We Are Goth', 'Correct record returned');
99
1edaf6fe 100$rs = $schema->class("CD")->search(
0567538f 101 { 'artist.name' => 'Caterwauler McCrae' },
102 { prefetch => [ qw/artist liner_notes/ ],
103 order_by => 'me.cdid' });
104
105cmp_ok($rs->count, '==', 3, 'Correct number of records returned');
106
107# start test for prefetch SELECT count
108unlink 't/var/dbic.trace' if -e 't/var/dbic.trace';
109DBI->trace(1, 't/var/dbic.trace');
110
111my @cd = $rs->all;
112
113is($cd[0]->title, 'Spoonful of bees', 'First record returned ok');
114
7cd300ea 115ok(!defined $cd[0]->liner_notes, 'No prefetch for NULL LEFT join');
0567538f 116
117is($cd[1]->{_relationship_data}{liner_notes}->notes, 'Buy Whiskey!', 'Prefetch for present LEFT JOIN');
118
dd417d06 119is(ref $cd[1]->liner_notes, 'DBICTest::LinerNotes', 'Prefetch returns correct class');
120
0567538f 121is($cd[2]->{_inflated_column}{artist}->name, 'Caterwauler McCrae', 'Prefetch on parent object ok');
122
123# count the SELECTs
124DBI->trace(0);
125my $selects = 0;
126my $trace = IO::File->new('t/var/dbic.trace', '<')
127 or die "Unable to read trace file";
128while (<$trace>) {
129 $selects++ if /SELECT/;
130}
131$trace->close;
132unlink 't/var/dbic.trace';
133is($selects, 1, 'prefetch ran only 1 select statement');
134
1edaf6fe 135my ($artist) = $schema->class("Artist")->search({ 'cds.year' => 2001 },
0567538f 136 { order_by => 'artistid DESC', join => 'cds' });
137
138is($artist->name, 'Random Boy Band', "Join search by object ok");
139
1edaf6fe 140my @cds = $schema->class("CD")->search({ 'liner_notes.notes' => 'Buy Merch!' },
0567538f 141 { join => 'liner_notes' });
142
143cmp_ok(scalar @cds, '==', 1, "Single CD retrieved via might_have");
144
145is($cds[0]->title, "Generic Manufactured Singles", "Correct CD retrieved");
146
1edaf6fe 147my @artists = $schema->class("Artist")->search({ 'tags.tag' => 'Shiny' },
0567538f 148 { join => { 'cds' => 'tags' } });
149
150cmp_ok( @artists, '==', 2, "two-join search ok" );
151
152}
153
1541;