Fix typo.. *test test test*!
[dbsrgits/DBIx-Class.git] / t / 90join_torture.t
CommitLineData
ae515736 1use strict;
2use warnings;
3
4use Test::More;
5use lib qw(t/lib);
6use DBICTest;
7
8my $schema = DBICTest->init_schema();
9
4e460493 10plan tests => 14;
00a80124 11
12my @rs1a_results = $schema->resultset("Artist")->search_related('cds', {title => 'Forkful of bees'}, {order_by => 'title'});
13is($rs1a_results[0]->title, 'Forkful of bees', "bare field conditions okay after search related");
ae515736 14my $rs1 = $schema->resultset("Artist")->search({ 'tags.tag' => 'Blue' }, { join => {'cds' => 'tracks'}, prefetch => {'cds' => 'tags'} });
15my @artists = $rs1->all;
16cmp_ok(@artists, '==', 1, "Two artists returned");
17
18my $rs2 = $rs1->search({ artistid => '1' }, { join => {'cds' => {'cd_to_producer' => 'producer'} } });
b253a82b 19
20my @artists2 = $rs2->search({ 'producer.name' => 'Matt S Trout' });
21my @cds = $artists2[0]->cds;
22cmp_ok(scalar @cds, '==', 1, "condition based on inherited join okay");
23
4e460493 24#this is wrong, should accept me.title really
cd40c868 25my $rs3 = $rs2->search_related('cds');
26cmp_ok($rs3->count, '==', 9, "Nine artists returned");
ae515736 27
28my $rs4 = $schema->resultset("CD")->search({ 'artist.artistid' => '1' }, { join => ['tracks', 'artist'], prefetch => 'artist' });
29my @rs4_results = $rs4->all;
30
ae515736 31is($rs4_results[0]->cdid, 1, "correct artist returned");
32
33my $rs5 = $rs4->search({'tracks.title' => 'Sticky Honey'});
34is($rs5->count, 1, "search without using previous joins okay");
35
08a39415 36my $record_rs = $schema->resultset("Artist")->search(undef, { join => 'cds' })->search(undef, { prefetch => { 'cds' => 'tracks' }});
37my $record_jp = $record_rs->next;
38ok($record_jp, "prefetch on same rel okay");
39
b7439887 40my $artist = $schema->resultset("Artist")->find(1);
41my $cds = $artist->cds;
42is($cds->find(2)->title, 'Forkful of bees', "find on has many rs okay");
43
44my $cd = $cds->search({'me.title' => 'Forkful of bees'}, { prefetch => 'tracks' })->first;
45my @tracks = $cd->tracks->all;
46is(scalar(@tracks), 3, 'right number of prefetched tracks after has many');
47
4e460493 48#causes ambig col error due to order_by
b7439887 49#my $tracks_rs = $cds->search_related('tracks', { 'tracks.position' => '2', 'disc.title' => 'Forkful of bees' });
50#my $first_tracks_rs = $tracks_rs->first;
08a39415 51
48c9af02 52my $related_rs = $schema->resultset("Artist")->search({ name => 'Caterwauler McCrae' })->search_related('cds', { year => '2001'})->search_related('tracks', { 'position' => '2' });
53is($related_rs->first->trackid, '5', 'search related on search related okay');
54
4e460493 55#causes ambig col error due to order_by
48c9af02 56#$related_rs->search({'cd.year' => '2001'}, {join => ['cd', 'cd']})->all;
57
58my $title = $schema->resultset("Artist")->search_related('twokeys')->search_related('cd')->search({'tracks.position' => '2'}, {join => 'tracks', order_by => 'tracks.trackid'})->next->title;
59is($title, 'Forkful of bees', 'search relateds with order by okay');
cd40c868 60
4e460493 61my $prod_rs = $schema->resultset("CD")->find(1)->producers_sorted;
62my $prod_rs2 = $prod_rs->search({ name => 'Matt S Trout' });
63my $prod_first = $prod_rs2->first;
64is($prod_first->id, '1', 'somewhat pointless search on rel with order_by on it okay');
d0609d74 65
66my $prod_map_rs = $schema->resultset("Artist")->find(1)->cds->search_related('cd_to_producer', {}, { join => 'producer', prefetch => 'producer' });
10481a5d 67ok($prod_map_rs->next->producer, 'search related with prefetch okay');
d0609d74 68
4e460493 69my $stupid = $schema->resultset("Artist")->search_related('artist_undirected_maps', {}, { prefetch => 'artist1' })->search_related('mapped_artists')->search_related('cds', {'cds.cdid' => '2'}, { prefetch => 'tracks' });
70#use Data::Dumper; warn Dumper($stupid->{attrs});
d0609d74 71
4e460493 72my $cd_final = $schema->resultset("Artist")->search_related('artist_undirected_maps', {}, { prefetch => 'artist1' })->search_related('mapped_artists')->search_related('cds', {'cds.cdid' => '2'}, { prefetch => 'tracks' })->first;
73is($cd_final->cdid, '2', 'bonkers search_related-with-join-midway okay');
d0609d74 74
ae515736 751;