X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F90join_torture.t;h=cd7d2ef70e68158e2bb5185e239f2730c998ab85;hb=faeb2407c49717d38874b21749659ac2c632bad7;hp=0339bfcb8c6a8fe57d8ba6ff5a89a60bfcec29fd;hpb=a258ee5dacc4e7e3c748f59e8335a7688f5455d0;p=dbsrgits%2FDBIx-Class.git diff --git a/t/90join_torture.t b/t/90join_torture.t index 0339bfc..cd7d2ef 100644 --- a/t/90join_torture.t +++ b/t/90join_torture.t @@ -1,13 +1,13 @@ 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 => 22; - { my $rs = $schema->resultset( 'CD' )->search( { @@ -25,11 +25,10 @@ plan tests => 22; ], } ); - - eval { + + lives_ok { my @rows = $rs->all(); }; - is( $@, '' ); } @@ -46,9 +45,9 @@ cmp_ok(scalar @cds, '==', 1, "condition based on inherited join okay"); my $rs3 = $rs2->search_related('cds'); -cmp_ok(scalar($rs3->all), '==', 45, "All cds for artist returned"); +cmp_ok(scalar($rs3->all), '==', 15, "All cds for artist returned"); -cmp_ok($rs3->count, '==', 45, "All cds for artist returned via count"); +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; @@ -106,7 +105,7 @@ my $merge_rs_2 = $schema->resultset("Artist")->search({ }, { join => 'cds' })->s is(scalar(@{$merge_rs_2->{attrs}->{join}}), 1, 'only one join kept when inherited'); my $merge_rs_2_cd = $merge_rs_2->next; -eval { +lives_ok (sub { my @rs_with_prefetch = $schema->resultset('TreeLike') ->search( @@ -115,9 +114,7 @@ eval { prefetch => [ 'parent', { 'children' => 'parent' } ], }); -}; - -ok(!$@, "pathological prefetch ok"); +}, 'pathological prefetch ok'); my $rs = $schema->resultset("Artist")->search({}, { join => 'twokeys' }); my $second_search_rs = $rs->search({ 'cds_2.cdid' => '2' }, { join => @@ -125,4 +122,36 @@ my $second_search_rs = $rs->search({ 'cds_2.cdid' => '2' }, { join => is(scalar(@{$second_search_rs->{attrs}->{join}}), 3, 'both joins kept'); ok($second_search_rs->next, 'query on double joined rel runs okay'); -1; +# 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 + ) count_subq + )', + [], + ); + + ok (defined $rs->count); +}); + +done_testing;