branch cleanage
[dbsrgits/DBIx-Class.git] / t / 90join_torture.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 plan tests => 11;
11
12 my @rs1a_results = $schema->resultset("Artist")->search_related('cds', {title => 'Forkful of bees'}, {order_by => 'title'});
13 is($rs1a_results[0]->title, 'Forkful of bees', "bare field conditions okay after search related");
14 my $rs1 = $schema->resultset("Artist")->search({ 'tags.tag' => 'Blue' }, { join => {'cds' => 'tracks'}, prefetch => {'cds' => 'tags'} });
15 my @artists = $rs1->all;
16 cmp_ok(@artists, '==', 1, "Two artists returned");
17
18 my $rs2 = $rs1->search({ artistid => '1' }, { join => {'cds' => {'cd_to_producer' => 'producer'} } });
19
20 my @artists2 = $rs2->search({ 'producer.name' => 'Matt S Trout' });
21 my @cds = $artists2[0]->cds;
22 cmp_ok(scalar @cds, '==', 1, "condition based on inherited join okay");
23
24 # this is wrong, should accept me.title really
25 my $rs3 = $rs2->search_related('cds');
26 cmp_ok($rs3->count, '==', 9, "Nine artists returned");
27
28 my $rs4 = $schema->resultset("CD")->search({ 'artist.artistid' => '1' }, { join => ['tracks', 'artist'], prefetch => 'artist' });
29 my @rs4_results = $rs4->all;
30
31 is($rs4_results[0]->cdid, 1, "correct artist returned");
32
33 my $rs5 = $rs4->search({'tracks.title' => 'Sticky Honey'});
34 is($rs5->count, 1, "search without using previous joins okay");
35
36 my $record_rs = $schema->resultset("Artist")->search(undef, { join => 'cds' })->search(undef, { prefetch => { 'cds' => 'tracks' }});
37 my $record_jp = $record_rs->next;
38 ok($record_jp, "prefetch on same rel okay");
39
40 my $artist = $schema->resultset("Artist")->find(1);
41 my $cds = $artist->cds;
42 is($cds->find(2)->title, 'Forkful of bees', "find on has many rs okay");
43
44 my $cd = $cds->search({'me.title' => 'Forkful of bees'}, { prefetch => 'tracks' })->first;
45 my @tracks = $cd->tracks->all;
46 is(scalar(@tracks), 3, 'right number of prefetched tracks after has many');
47
48 # causes ambig col error due to order_by
49 #my $tracks_rs = $cds->search_related('tracks', { 'tracks.position' => '2', 'disc.title' => 'Forkful of bees' });
50 #my $first_tracks_rs = $tracks_rs->first;
51
52 my $related_rs = $schema->resultset("Artist")->search({ name => 'Caterwauler McCrae' })->search_related('cds', { year => '2001'})->search_related('tracks', { 'position' => '2' });
53 is($related_rs->first->trackid, '5', 'search related on search related okay');
54
55 # causes ambig col error due to order_by
56 #$related_rs->search({'cd.year' => '2001'}, {join => ['cd', 'cd']})->all;
57
58 my $title = $schema->resultset("Artist")->search_related('twokeys')->search_related('cd')->search({'tracks.position' => '2'}, {join => 'tracks', order_by => 'tracks.trackid'})->next->title;
59 is($title, 'Forkful of bees', 'search relateds with order by okay');
60
61 1;