X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F76joins.t;h=101d71f694e8511ef7d4b93e81ca9d649afcd687;hb=0ed8d3b659c714c617fa211f32f34879c5b224f0;hp=ad406fe09280e034e834c64ec2e1c7fe69adef33;hpb=a08c907fa29ab33d219bd6713e21ab40f9a7e752;p=dbsrgits%2FDBIx-Class.git diff --git a/t/76joins.t b/t/76joins.t index ad406fe..101d71f 100644 --- a/t/76joins.t +++ b/t/76joins.t @@ -16,7 +16,7 @@ BEGIN { eval "use DBD::SQLite"; plan $@ ? ( skip_all => 'needs DBD::SQLite for testing' ) - : ( tests => 52 ); + : ( tests => 64 ); } # figure out if we've got a version of sqlite that is older than 3.2.6, in @@ -105,7 +105,7 @@ my @j6 = ( [ { father => 'person' }, { 'father.person_id' => { '!=', '42' } }, ], [ { mother => 'person' }, { 'mother.person_id' => 'child.mother_id' } ], ); -$match = qr/^\QHASH reference arguments are not supported in JOINS - try using \"..." instead\E/; +$match = qr/^HASH reference arguments are not supported in JOINS - try using "\.\.\." instead/; eval { $sa->_recurse_from(@j6) }; like( $@, $match, 'join 6 (HASH reference for ON statement dies) ok' ); @@ -146,6 +146,9 @@ $rs = $schema->resultset("CD")->search( ); cmp_ok( scalar $rs->all, '==', scalar $rs->slice(0, $rs->count - 1), 'slice() with join has same count as all()' ); +ok(!$rs->slice($rs->count+1000, $rs->count+1002)->count, + 'Slicing beyond end of rs returns a zero count'); + $rs = $schema->resultset("Artist")->search( { 'liner_notes.notes' => 'Kill Yourself!' }, { join => { 'cds' => 'liner_notes' } }); @@ -169,7 +172,7 @@ is(Dumper($attr), $attr_str, 'Attribute hash untouched after search()'); cmp_ok($rs + 0, '==', 3, 'Correct number of records returned'); my $queries = 0; -$schema->storage->debugcb(sub { $queries++ }); +$schema->storage->debugcb(sub { $queries++; }); $schema->storage->debug(1); my @cd = $rs->all; @@ -222,12 +225,38 @@ is($queries, 1, 'nested prefetch ran exactly 1 select statement (excluding colum $queries = 0; +is($tag->search_related('cd')->search_related('artist')->first->name, + 'Caterwauler McCrae', + 'chained belongs_to->belongs_to search_related ok'); + +is($queries, 0, 'chained search_related after belontgs_to->belongs_to prefetch ran no queries'); + +$queries = 0; + $cd = $schema->resultset('CD')->find(1, { prefetch => 'artist' }); is($cd->{_inflated_column}{artist}->name, 'Caterwauler McCrae', 'artist prefetched correctly on find'); is($queries, 1, 'find with prefetch ran exactly 1 select statement (excluding column_info)'); +$queries = 0; + +$schema->storage->debugcb(sub { $queries++; }); + +$cd = $schema->resultset('CD')->find(1, { prefetch => { cd_to_producer => 'producer' } }); + +is($cd->producers->first->name, 'Matt S Trout', 'many_to_many accessor ok'); + +is($queries, 1, 'many_to_many accessor with nested prefetch ran exactly 1 query'); + +$queries = 0; + +my $producers = $cd->search_related('cd_to_producer')->search_related('producer'); + +is($producers->first->name, 'Matt S Trout', 'chained many_to_many search_related ok'); + +is($queries, 0, 'chained search_related after many_to_many prefetch ran no queries'); + $schema->storage->debug($orig_debug); $schema->storage->debugobj->callback(undef); @@ -306,6 +335,19 @@ SKIP: { is($rs->next->name, 'Caterwauler McCrae', "Correct artist returned"); +$cd = $schema->resultset('Artist')->first->create_related('cds', + { + title => 'Unproduced Single', + year => 2007 +}); + +my $left_join = $schema->resultset('CD')->search( + { 'me.cdid' => $cd->cdid }, + { prefetch => { cd_to_producer => 'producer' } } +); + +cmp_ok($left_join, '==', 1, 'prefetch with no join record present'); + $queries = 0; $schema->storage->debugcb(sub { $queries++ }); $schema->storage->debug(1); @@ -380,7 +422,8 @@ my $art_rs_pr = $art_rs->search( {}, { join => [ { cds => ['tracks'] } ], - prefetch => [ { cds => ['tracks'] } ] + prefetch => [ { cds => ['tracks'] } ], + cache => 1 # last test needs this } ); @@ -405,8 +448,24 @@ sub make_hash_struc { return $struc; } +$queries = 0; +$schema->storage->debugcb(sub { $queries++ }); +$schema->storage->debug(1); + my $prefetch_result = make_hash_struc($art_rs_pr); + +is($queries, 1, 'nested prefetch across has_many->has_many ran exactly 1 query'); + my $nonpre_result = make_hash_struc($art_rs); is_deeply( $prefetch_result, $nonpre_result, 'Compare 2 level prefetch result to non-prefetch 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($queries, 0, 'chained search_related after has_many->has_many prefetch ran no queries');