X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F90join_torture.t;h=fb745dc4ec9ea4e2190f22bf4c9502d355bb5d31;hb=1f870d5a08fa1794734380d7c8bd6753cdcf8f6d;hp=daf1c649f16144ee9df5f081b890565e82e547b5;hpb=4e4604937e2aa069e49a2fb8f3785d4562e319b3;p=dbsrgits%2FDBIx-Class.git diff --git a/t/90join_torture.t b/t/90join_torture.t index daf1c64..fb745dc 100644 --- a/t/90join_torture.t +++ b/t/90join_torture.t @@ -1,29 +1,53 @@ use strict; -use warnings; +use warnings; use Test::More; +use Test::Exception; use lib qw(t/lib); use DBICTest; - +use DBIC::SqlMakerTest; my $schema = DBICTest->init_schema(); -plan tests => 14; + { + my $rs = $schema->resultset( 'CD' )->search( + { + 'producer.name' => 'blah', + 'producer_2.name' => 'foo', + }, + { + 'join' => [ + { cd_to_producer => 'producer' }, + { cd_to_producer => 'producer' }, + ], + 'prefetch' => [ + 'artist', + { cd_to_producer => 'producer' }, + ], + } + ); + + lives_ok { + my @rows = $rs->all(); + }; + } + 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"); my $rs1 = $schema->resultset("Artist")->search({ 'tags.tag' => 'Blue' }, { join => {'cds' => 'tracks'}, prefetch => {'cds' => 'tags'} }); my @artists = $rs1->all; -cmp_ok(@artists, '==', 1, "Two artists returned"); +cmp_ok(@artists, '==', 2, "Two artists returned"); my $rs2 = $rs1->search({ artistid => '1' }, { join => {'cds' => {'cd_to_producer' => 'producer'} } }); - 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 my $rs3 = $rs2->search_related('cds'); -cmp_ok($rs3->count, '==', 9, "Nine artists returned"); + +cmp_ok(scalar($rs3->all), '==', 15, "All cds for artist returned"); + +cmp_ok($rs3->count, '==', 15, "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; @@ -64,12 +88,70 @@ 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' }); -is($prod_map_rs->next->producer->producerid, '1', 'search related with prefetch okay'); +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' }); -#use Data::Dumper; warn Dumper($stupid->{attrs}); 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'); -1; +# 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; + +lives_ok (sub { + + my @rs_with_prefetch = $schema->resultset('TreeLike') + ->search( + {'me.id' => 1}, + { + prefetch => [ 'parent', { 'children' => 'parent' } ], + }); + +}, 'pathological prefetch ok'); + +my $rs = $schema->resultset("Artist")->search({}, { join => 'twokeys' }); +my $second_search_rs = $rs->search({ 'cds_2.cdid' => '2' }, { join => +['cds', 'cds'] }); +is(scalar(@{$second_search_rs->{attrs}->{join}}), 3, 'both joins kept'); +ok($second_search_rs->next, 'query on double joined rel runs okay'); + +# test joinmap pruner +lives_ok ( sub { + my $rs = $schema->resultset('Artwork')->search ( + { + }, + { + distinct => 1, + join => [ + { artwork_to_artist => 'artist' }, + { cd => 'artist' }, + ], + }, + ); + + is_same_sql_bind ( + $rs->count_rs->as_query, + '( + SELECT COUNT( * ) + FROM ( + SELECT me.cd_id + FROM cd_artwork me + JOIN cd cd ON cd.cdid = me.cd_id + JOIN artist artist_2 ON artist_2.artistid = cd.artist + GROUP BY me.cd_id + ) me + )', + [], + ); + + ok (defined $rs->count); +}); + +done_testing;