More refactoring, prefetch
[dbsrgits/DBIx-Class.git] / t / 16joins.t
CommitLineData
73856587 1use strict;
2use Test::More;
3
4BEGIN {
5 eval "use DBD::SQLite";
6 plan $@
7 ? ( skip_all => 'needs DBD::SQLite for testing' )
c7ce65e6 8 : ( tests => 17 );
73856587 9}
10
11use lib qw(t/lib);
12
13use_ok('DBICTest');
14
15# test the abstract join => SQL generator
16my $sa = new DBIC::SQL::Abstract;
17
18my @j = (
19 { child => 'person' },
20 [ { father => 'person' }, { 'father.person_id' => 'child.father_id' }, ],
21 [ { mother => 'person' }, { 'mother.person_id' => 'child.mother_id' } ],
22);
96cdbbab 23my $match = 'person child JOIN person father ON ( father.person_id = '
24 . 'child.father_id ) JOIN person mother ON ( mother.person_id '
73856587 25 . '= child.mother_id )'
26 ;
27is( $sa->_recurse_from(@j), $match, 'join 1 ok' );
28
29my @j2 = (
30 { mother => 'person' },
31 [ [ { child => 'person' },
32 [ { father => 'person' },
33 { 'father.person_id' => 'child.father_id' }
34 ]
35 ],
36 { 'mother.person_id' => 'child.mother_id' }
37 ],
38);
96cdbbab 39$match = 'person mother JOIN (person child JOIN person father ON ('
73856587 40 . ' father.person_id = child.father_id )) ON ( mother.person_id = '
41 . 'child.mother_id )'
42 ;
43is( $sa->_recurse_from(@j2), $match, 'join 2 ok' );
44
45my @j3 = (
46 { child => 'person' },
47 [ { father => 'person', -join_type => 'inner' }, { 'father.person_id' => 'child.father_id' }, ],
48 [ { mother => 'person', -join_type => 'inner' }, { 'mother.person_id' => 'child.mother_id' } ],
49);
96cdbbab 50my $match = 'person child INNER JOIN person father ON ( father.person_id = '
51 . 'child.father_id ) INNER JOIN person mother ON ( mother.person_id '
73856587 52 . '= child.mother_id )'
53 ;
54
55is( $sa->_recurse_from(@j3), $match, 'join 3 (inner join) ok');
fef5d100 56
57my $rs = DBICTest::CD->search(
58 { 'year' => 2001, 'artist.name' => 'Caterwauler McCrae' },
c7ce65e6 59 { from => [ { 'me' => 'cd' },
fef5d100 60 [
61 { artist => 'artist' },
c7ce65e6 62 { 'me.artist' => 'artist.artistid' }
fef5d100 63 ] ] }
64 );
65
66cmp_ok( $rs->count, '==', 1, "Single record in resultset");
67
68is($rs->first->title, 'Forkful of bees', 'Correct record returned');
69
70$rs = DBICTest::CD->search(
71 { 'year' => 2001, 'artist.name' => 'Caterwauler McCrae' },
72 { join => 'artist' });
73
74cmp_ok( $rs->count, '==', 1, "Single record in resultset");
75
76is($rs->first->title, 'Forkful of bees', 'Correct record returned');
77
78$rs = DBICTest::CD->search(
79 { 'artist.name' => 'We Are Goth',
80 'liner_notes.notes' => 'Kill Yourself!' },
81 { join => [ qw/artist liner_notes/ ] });
82
83cmp_ok( $rs->count, '==', 1, "Single record in resultset");
84
85is($rs->first->title, 'Come Be Depressed With Us', 'Correct record returned');
86
87$rs = DBICTest::Artist->search(
88 { 'liner_notes.notes' => 'Kill Yourself!' },
89 { join => { 'cds' => 'liner_notes' } });
90
91cmp_ok( $rs->count, '==', 1, "Single record in resultset");
92
93is($rs->first->name, 'We Are Goth', 'Correct record returned');
c7ce65e6 94
95DBICTest::Schema::CD->add_relationship(
96 artist => 'DBICTest::Schema::Artist',
97 { 'foreign.artistid' => 'self.artist' },
98 { accessor => 'filter' },
99);
100
101DBICTest::Schema::CD->add_relationship(
102 liner_notes => 'DBICTest::Schema::LinerNotes',
103 { 'foreign.liner_id' => 'self.cdid' },
104 { join_type => 'LEFT', accessor => 'single' });
105
106
107$rs = DBICTest::CD->search(
108 { 'artist.name' => 'Caterwauler McCrae' },
109 { prefetch => [ qw/artist liner_notes/ ],
110 order_by => 'me.cdid' });
111
112cmp_ok($rs->count, '==', 3, 'Correct number of records returned');
113
114my @cd = $rs->all;
115
116is($cd[0]->title, 'Spoonful of bees', 'First record returned ok');
117
118ok(!exists $cd[0]->{_relationship_data}{liner_notes}, 'No prefetch for NULL LEFT JOIN');
119
120is($cd[1]->{_relationship_data}{liner_notes}->notes, 'Buy Whiskey!', 'Prefetch for present LEFT JOIN');
121
122is($cd[2]->{_inflated_column}{artist}->name, 'Caterwauler McCrae', 'Prefetch on parent object ok');