X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F90join_torture.t;h=d2fcd97f245d67d4a0dfb0b41347be9b98c91b81;hb=91dff55a2b9d806bb7019d345262298cd76c18c5;hp=b09e9f84e8ef3926fa08f2a319f5ad7719ad7e36;hpb=48c9af026b923ad5d18542ae9a0a5f7ccae5ea35;p=dbsrgits%2FDBIx-Class.git diff --git a/t/90join_torture.t b/t/90join_torture.t index b09e9f8..d2fcd97 100644 --- a/t/90join_torture.t +++ b/t/90join_torture.t @@ -4,10 +4,10 @@ use warnings; use Test::More; use lib qw(t/lib); use DBICTest; - +use Data::Dumper; my $schema = DBICTest->init_schema(); -plan tests => 11; +plan tests => 19; my @rs1a_results = $schema->resultset("Artist")->search_related('cds', {title => 'Forkful of bees'}, {order_by => 'title'}); is($rs1a_results[0]->title, 'Forkful of bees', "bare field conditions okay after search related"); @@ -21,9 +21,10 @@ my @artists2 = $rs2->search({ 'producer.name' => 'Matt S Trout' }); my @cds = $artists2[0]->cds; cmp_ok(scalar @cds, '==', 1, "condition based on inherited join okay"); -# this is wrong, should accept me.title really +#this is wrong, should accept me.title really my $rs3 = $rs2->search_related('cds'); -cmp_ok($rs3->count, '==', 9, "Nine artists returned"); +cmp_ok(scalar($rs3->all), '==', 27, "All cds for artist returned"); +cmp_ok($rs3->count, '==', 27, "All cds for artist returned via count"); my $rs4 = $schema->resultset("CD")->search({ 'artist.artistid' => '1' }, { join => ['tracks', 'artist'], prefetch => 'artist' }); my @rs4_results = $rs4->all; @@ -45,17 +46,53 @@ my $cd = $cds->search({'me.title' => 'Forkful of bees'}, { prefetch => 'tracks' my @tracks = $cd->tracks->all; is(scalar(@tracks), 3, 'right number of prefetched tracks after has many'); -# causes ambig col error due to order_by +#causes ambig col error due to order_by #my $tracks_rs = $cds->search_related('tracks', { 'tracks.position' => '2', 'disc.title' => 'Forkful of bees' }); #my $first_tracks_rs = $tracks_rs->first; my $related_rs = $schema->resultset("Artist")->search({ name => 'Caterwauler McCrae' })->search_related('cds', { year => '2001'})->search_related('tracks', { 'position' => '2' }); is($related_rs->first->trackid, '5', 'search related on search related okay'); -# causes ambig col error due to order_by +#causes ambig col error due to order_by #$related_rs->search({'cd.year' => '2001'}, {join => ['cd', 'cd']})->all; my $title = $schema->resultset("Artist")->search_related('twokeys')->search_related('cd')->search({'tracks.position' => '2'}, {join => 'tracks', order_by => 'tracks.trackid'})->next->title; is($title, 'Forkful of bees', 'search relateds with order by okay'); +my $prod_rs = $schema->resultset("CD")->find(1)->producers_sorted; +my $prod_rs2 = $prod_rs->search({ name => 'Matt S Trout' }); +my $prod_first = $prod_rs2->first; +is($prod_first->id, '1', 'somewhat pointless search on rel with order_by on it okay'); + +my $prod_map_rs = $schema->resultset("Artist")->find(1)->cds->search_related('cd_to_producer', {}, { join => 'producer', prefetch => 'producer' }); +ok($prod_map_rs->next->producer, 'search related with prefetch okay'); + +my $stupid = $schema->resultset("Artist")->search_related('artist_undirected_maps', {}, { prefetch => 'artist1' })->search_related('mapped_artists')->search_related('cds', {'cds.cdid' => '2'}, { prefetch => 'tracks' }); + +my $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; +is($cd_final->cdid, '2', 'bonkers search_related-with-join-midway okay'); + +# should end up with cds and cds_2 joined +my $merge_rs_1 = $schema->resultset("Artist")->search({ 'cds_2.cdid' => '2' }, { join => ['cds', 'cds'] }); +is(scalar(@{$merge_rs_1->{attrs}->{join}}), 2, 'both joins kept'); +ok($merge_rs_1->next, 'query on double joined rel runs okay'); + +# should only end up with cds joined +my $merge_rs_2 = $schema->resultset("Artist")->search({ }, { join => 'cds' })->search({ 'cds.cdid' => '2' }, { join => 'cds' }); +is(scalar(@{$merge_rs_2->{attrs}->{join}}), 1, 'only one join kept when inherited'); +my $merge_rs_2_cd = $merge_rs_2->next; + +eval { + + my @rs_with_prefetch = $schema->resultset('TreeLike') + ->search( + {'me.id' => 1}, + { + prefetch => [ 'parent', { 'children' => 'parent' } ], + }); + +}; + +ok(!$@, "pathological prefetch ok"); + 1;