X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Fprefetch%2Fstandard.t;h=26d335439e215440c92551b8c969acaf7c63b74c;hb=a5f2ccb49689cf2603ea5614b231088cb520734f;hp=493b538756ebc92f1b1d7e17c97afb96fd592f80;hpb=4e9fc3f33df616fb7340d05e304ff985b9cce9cb;p=dbsrgits%2FDBIx-Class-Historic.git diff --git a/t/prefetch/standard.t b/t/prefetch/standard.t index 493b538..26d3354 100644 --- a/t/prefetch/standard.t +++ b/t/prefetch/standard.t @@ -2,14 +2,13 @@ use strict; use warnings; use Test::More; +use Test::Exception; use lib qw(t/lib); use DBICTest; my $schema = DBICTest->init_schema(); my $orig_debug = $schema->storage->debug; -plan tests => 44; - my $queries = 0; $schema->storage->debugcb(sub { $queries++; }); $schema->storage->debug(1); @@ -51,7 +50,7 @@ $schema->storage->debugcb(sub { $queries++ }); $schema->storage->debug(1); $rs = $schema->resultset('Tag')->search( - {}, + { 'me.tagid' => 1 }, { prefetch => { cd => 'artist' } } @@ -87,7 +86,7 @@ $queries = 0; $schema->storage->debugcb(sub { $queries++; }); -$cd = $schema->resultset('CD')->find(1, { prefetch => { cd_to_producer => 'producer' } }); +$cd = $schema->resultset('CD')->find(1, { prefetch => { cd_to_producer => 'producer' }, order_by => 'producer.producerid' }); is($cd->producers->first->name, 'Matt S Trout', 'many_to_many accessor ok'); @@ -227,6 +226,13 @@ $rs->create({ artistid => 5, name => 'Emo 4ever' }); @artists = $rs->search(undef, { prefetch => 'cds', order_by => 'artistid' }); is(scalar @artists, 5, 'has_many prefetch with adjacent empty rows ok'); +lives_ok { @artists = $rs->search(undef, { + join => ['cds'], + prefetch => [], + rows => 20, + }); +} 'join and empty prefetch ok'; + # ------------- # # Tests for multilevel has_many prefetch @@ -283,12 +289,17 @@ is_deeply( $prefetch_result, $nonpre_result, $queries = 0; -is($art_rs_pr->search_related('cds')->search_related('tracks')->first->title, - 'Fowlin', - 'chained has_many->has_many search_related ok' - ); +is_deeply( + [ sort map { $_->title } $art_rs_pr->search_related('cds')->search_related('tracks')->all ], + [ 'Apiary', 'Beehind You', 'Boring Name', 'Boring Song', 'Fowlin', 'Howlin', + 'No More Ideas', 'Sad', 'Sticky Honey', 'Stripy', 'Stung with Success', + 'Suicidal', 'The Bees Knees', 'Under The Weather', 'Yowlin' ], + 'chained has_many->has_many search_related ok' +); is($queries, 0, 'chained search_related after has_many->has_many prefetch ran no queries'); $schema->storage->debug($orig_debug); $schema->storage->debugobj->callback(undef); + +done_testing;