X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Fcount%2Fprefetch.t;h=f3818c14ee7876d5f8a77d87c851ca683ca0a8fb;hb=ab35aeab54799f0ffdec51c55fb4546ad5e0188e;hp=f0b4e06c77d4d12e1957bae311aba4a3001ac161;hpb=cfcc66e99e2e89a93a10e55100862d177439a076;p=dbsrgits%2FDBIx-Class.git diff --git a/t/count/prefetch.t b/t/count/prefetch.t index f0b4e06..f3818c1 100644 --- a/t/count/prefetch.t +++ b/t/count/prefetch.t @@ -6,9 +6,6 @@ use lib qw(t/lib); use Test::More; use DBICTest; use DBIC::SqlMakerTest; -use DBIC::DebugObj; - -plan tests => 17; my $schema = DBICTest->init_schema(); @@ -20,72 +17,55 @@ my $schema = DBICTest->init_schema(); { prefetch => [qw/tracks artist/] }, ); is ($rs->all, 5, 'Correct number of objects'); - - - my ($sql, @bind); - $schema->storage->debugobj(DBIC::DebugObj->new(\$sql, \@bind)); - $schema->storage->debug(1); - - - is ($rs->count, 5, 'Correct count'); - - is_same_sql_bind ( - $sql, - \@bind, - 'SELECT COUNT( * ) FROM (SELECT cds.cdid FROM artist me JOIN cd cds ON cds.artist = me.artistid LEFT JOIN track tracks ON tracks.cd = cds.cdid JOIN artist artist ON artist.artistid = cds.artist WHERE tracks.position = ? OR tracks.position = ? GROUP BY cds.cdid) count_subq', - [ qw/'1' '2'/ ], - ); -} - -# Added test by mo per http://scsys.co.uk:8001/31870 -TODO: { - todo_skip "This breaks stuff", 3; - my $rs = $schema->resultset("Artist")->search(undef, {distinct => 1}) - ->search_related('cds')->search_related('genre', - { 'genre.name' => 'foo' }, - { prefetch => q(cds) }, - ); - is ($rs->all, 5, 'Correct number of objects'); - - - my ($sql, @bind); - $schema->storage->debugobj(DBIC::DebugObj->new(\$sql, \@bind)); - $schema->storage->debug(1); - - is ($rs->count, 5, 'Correct count'); is_same_sql_bind ( - $sql, - \@bind, - 'SELECT COUNT( * ) FROM (SELECT cds.cdid FROM artist me JOIN cd cds ON cds.artist = me.artistid LEFT JOIN track tracks ON tracks.cd = cds.cdid JOIN artist artist ON artist.artistid = cds.artist WHERE tracks.position = ? OR tracks.position = ? GROUP BY cds.cdid) count_subq', - [ qw/'1' '2'/ ], + $rs->count_rs->as_query, + '( + SELECT COUNT( * ) + FROM ( + SELECT cds.cdid + FROM artist me + JOIN cd cds ON cds.artist = me.artistid + LEFT JOIN track tracks ON tracks.cd = cds.cdid + JOIN artist artist ON artist.artistid = cds.artist + WHERE tracks.position = ? OR tracks.position = ? + GROUP BY cds.cdid + ) cds + )', + [ map { [ 'tracks.position' => $_ ] } (1, 2) ], ); } # collapsing prefetch with distinct -TODO: { - todo_skip "This is busted", 3; +{ my $rs = $schema->resultset("Artist")->search(undef, {distinct => 1}) ->search_related('cds')->search_related('genre', - { 'genre.name' => 'foo' }, + { 'genre.name' => 'emo' }, { prefetch => q(cds) }, ); - is ($rs->all, 5, 'Correct number of objects'); - - - my ($sql, @bind); - $schema->storage->debugobj(DBIC::DebugObj->new(\$sql, \@bind)); - $schema->storage->debug(1); - - - is ($rs->count, 5, 'Correct count'); + is ($rs->all, 1, 'Correct number of objects'); + is ($rs->count, 1, 'Correct count'); is_same_sql_bind ( - $sql, - \@bind, - 'SELECT COUNT( * ) FROM (SELECT cds.cdid FROM artist me JOIN cd cds ON cds.artist = me.artistid LEFT JOIN track tracks ON tracks.cd = cds.cdid JOIN artist artist ON artist.artistid = cds.artist WHERE tracks.position = ? OR tracks.position = ? GROUP BY cds.cdid) count_subq', - [ qw/'1' '2'/ ], + $rs->count_rs->as_query, + '( + SELECT COUNT( * ) + FROM ( + SELECT genre.genreid + FROM ( + SELECT me.artistid, me.name, me.rank, me.charfield + FROM artist me + GROUP BY me.artistid, me.name, me.rank, me.charfield + ) me + JOIN cd cds ON cds.artist = me.artistid + JOIN genre genre ON genre.genreid = cds.genreid + WHERE ( genre.name = ? ) + GROUP BY genre.genreid + ) + genre + )', + [ [ 'genre.name' => 'emo' ] ], ); } @@ -93,64 +73,26 @@ TODO: { { my $rs = $schema->resultset("CD") ->search_related('tracks', - { position => [1,2] }, + { position => [1,2], 'lyrics.lyric_id' => undef }, { prefetch => [qw/disc lyrics/] }, ); is ($rs->all, 10, 'Correct number of objects'); - my ($sql, @bind); - $schema->storage->debugobj(DBIC::DebugObj->new(\$sql, \@bind)); - $schema->storage->debug(1); - - is ($rs->count, 10, 'Correct count'); is_same_sql_bind ( - $sql, - \@bind, - 'SELECT COUNT( * ) FROM cd me JOIN track tracks ON tracks.cd = me.cdid JOIN cd disc ON disc.cdid = tracks.cd LEFT JOIN lyrics lyrics ON lyrics.track_id = tracks.trackid WHERE ( ( position = ? OR position = ? ) )', - [ qw/'1' '2'/ ], + $rs->count_rs->as_query, + '( + SELECT COUNT( * ) + FROM cd me + JOIN track tracks ON tracks.cd = me.cdid + JOIN cd disc ON disc.cdid = tracks.cd + LEFT JOIN lyrics lyrics ON lyrics.track_id = tracks.trackid + WHERE lyrics.lyric_id IS NULL AND (position = ? OR position = ?) + )', + [ map { [ position => $_ ] } (1, 2) ], ); } -# Added test by mo per http://scsys.co.uk:8001/31873 -TODO: { - todo_skip "This breaks stuff", 5; - my $rs = $schema->resultset("Artwork")->search(undef, {distinct => 1}) - ->search_related('artwork_to_artist')->search_related('artist', - undef, - { prefetch => q(cds) }, - ); - is($rs->all, 0, 'failure without WHERE'); - - $rs = $schema->resultset("Artwork")->search(undef, {distinct => 1}) - ->search_related('artwork_to_artist')->search_related('artist', - { 'cds.title' => 'foo' }, # this line has changed - { prefetch => q(cds) }, - ); - is($rs->all, 0, 'success with WHERE'); - - # different case - - $rs = $schema->resultset("Artist")->search(undef)#, {distinct => 1}) - ->search_related('cds')->search_related('genre', - { 'genre.name' => 'foo' }, - { prefetch => q(cds) }, - ); - is($rs->all, 0, 'success without distinct'); - - $rs = $schema->resultset("Artist")->search(undef, {distinct => 1}) - ->search_related('cds')->search_related('genre', - { 'genre.name' => 'foo' }, - #{ prefetch => q(cds) }, - ); - is($rs->all, 0, 'success without prefetch'); - - $rs = $schema->resultset("Artist")->search(undef, {distinct => 1}) - ->search_related('cds')->search_related('genre', - { 'genre.name' => 'foo' }, - { prefetch => q(cds) }, - ); - is($rs->all, 0, 'failure with distinct'); -} +done_testing;