X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Fcount%2Fjoined.t;h=352eef9de194b319daf070a8e3b755ab58c6c79f;hb=052b8ce2ec154827133b0b08042487c5617300aa;hp=5ba7debcefbdb9aeeeec260d802624461def233b;hpb=a258ee5dacc4e7e3c748f59e8335a7688f5455d0;p=dbsrgits%2FDBIx-Class.git diff --git a/t/count/joined.t b/t/count/joined.t index 5ba7deb..352eef9 100644 --- a/t/count/joined.t +++ b/t/count/joined.t @@ -7,7 +7,7 @@ use lib qw(t/lib); use DBICTest; -plan tests => 3; +plan tests => 7; my $schema = DBICTest->init_schema(); @@ -26,6 +26,12 @@ is ( "Count correct with requested distinct collapse of main table" ); +# JOIN and LEFT JOIN issues mean that we've seen problems where counted rows and fetched rows are sometimes 1 higher than they should +# be in the related resultset. +my $artist=$schema->resultset('Artist')->create({name => 'xxx'}); +is($artist->related_resultset('cds')->count(), 0, "No CDs found for a shiny new artist"); +is(scalar($artist->related_resultset('cds')->all()), 0, "No CDs fetched for a shiny new artist"); - - +my $artist_rs = $schema->resultset('Artist')->search({artistid => $artist->id}); +is($artist_rs->related_resultset('cds')->count(), 0, "No CDs counted for a shiny new artist using a resultset search"); +is(scalar($artist_rs->related_resultset('cds')->all), 0, "No CDs fetched for a shiny new artist using a resultset search");