X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F90join_torture.t;h=17d5116a8cffc4d7d3a854387ff8bcd7a4dd0e8f;hb=67341081b1a57cc8549e51a8fb1b8cd4661543c5;hp=0692c3a71a0416296e3d853ebb261239e8e7e87f;hpb=fe0708a2d68b5d34b6bc6f7e70164c3e569f1dd0;p=dbsrgits%2FDBIx-Class.git diff --git a/t/90join_torture.t b/t/90join_torture.t index 0692c3a..17d5116 100644 --- a/t/90join_torture.t +++ b/t/90join_torture.t @@ -3,62 +3,34 @@ use warnings; use Test::More; use Test::Exception; - use lib qw(t/lib); use DBICTest; use DBIC::SqlMakerTest; my $schema = DBICTest->init_schema(); -lives_ok (sub { - 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 => 'producer_to_cd' } }, - ], - } - ); - - my @executed = $rs->all(); - - is_same_sql_bind ( - $rs->as_query, - '( - SELECT me.cdid, me.artist, me.title, me.year, me.genreid, me.single_track, - artist.artistid, artist.name, artist.rank, artist.charfield, - cd_to_producer.cd, cd_to_producer.producer, cd_to_producer.attribute, - producer.producerid, producer.name, - producer_to_cd.cd, producer_to_cd.producer, producer_to_cd.attribute - FROM cd me - LEFT JOIN cd_to_producer cd_to_producer - ON cd_to_producer.cd = me.cdid - LEFT JOIN producer producer - ON producer.producerid = cd_to_producer.producer - LEFT JOIN cd_to_producer producer_to_cd - ON producer_to_cd.producer = producer.producerid - LEFT JOIN cd_to_producer cd_to_producer_2 - ON cd_to_producer_2.cd = me.cdid - LEFT JOIN producer producer_2 - ON producer_2.producerid = cd_to_producer_2.producer - JOIN artist artist ON artist.artistid = me.artist - WHERE ( ( producer.name = ? AND producer_2.name = ? ) ) - ORDER BY cd_to_producer.cd, producer_to_cd.producer - )', - [ - [ 'producer.name' => 'blah' ], - [ 'producer_2.name' => 'foo' ], - ], - ); + { + 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(); + }; + } -}, 'Complex join parsed/executed properly'); 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");