X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F60core.t;h=629d49d7c064f9087c116a8f06c8900606921642;hb=04e0d6ef0f1eb4785cbd31520c50106ccaacea0f;hp=a568c6e006a9eff673d9e37f86e63be01d81fb75;hpb=5597834e4341123c5d6782ec8c0f66b4e7934e1d;p=dbsrgits%2FDBIx-Class.git diff --git a/t/60core.t b/t/60core.t index a568c6e..629d49d 100644 --- a/t/60core.t +++ b/t/60core.t @@ -5,10 +5,11 @@ use Test::More; use Test::Exception; use lib qw(t/lib); use DBICTest; +use DBIC::SqlMakerTest; my $schema = DBICTest->init_schema(); -plan tests => 96; +plan tests => 106; eval { require DateTime::Format::MySQL }; my $NO_DTFM = $@ ? 1 : 0; @@ -221,16 +222,26 @@ my $search = [ { 'tags.tag' => 'Cheesy' }, { 'tags.tag' => 'Blue' } ]; my( $or_rs ) = $schema->resultset("CD")->search_rs($search, { join => 'tags', order_by => 'cdid' }); -# At this point in the test there are: -# 1 artist with the cheesy AND blue tag -# 1 artist with the cheesy tag -# 2 artists with the blue tag -# -# Formerly this test expected 5 as there was no collapsing of the AND condition -is($or_rs->count, 4, 'Search with OR ok'); +is($or_rs->all, 5, 'Joined search with OR returned correct number of rows'); +is($or_rs->count, 5, 'Search count with OR ok'); + +my $collapsed_or_rs = $or_rs->search ({}, { distinct => 1 }); # induce collapse +is ($collapsed_or_rs->all, 4, 'Collapsed joined search with OR returned correct number of rows'); +is ($collapsed_or_rs->count, 4, 'Collapsed search count with OR ok'); + +my $pref_or_rs = $collapsed_or_rs->search ({}, { prefetch => [qw/tags/] }); +is_same_sql_bind ( + $pref_or_rs->as_query, + '(SELECT me.cdid, me.artist, me.title, me.year, me.genreid, me.single_track, tags.tagid, tags.cd, tags.tag FROM cd me LEFT JOIN tags tags ON tags.cd = me.cdid WHERE ( ( tags.tag = ? OR tags.tag = ? ) ) GROUP BY me.cdid, me.artist, me.title, me.year, me.genreid, me.single_track, tags.tagid, tags.cd, tags.tag ORDER BY cdid, tags.cd, tags.tag)', + [ + [ 'tags.tag' => 'Cheesy' ], + [ 'tags.tag' => 'Blue' ], + ], + 'Prefetch + distinct resulted in correct group_by', +); +is ($pref_or_rs->all, 4, 'Prefetched grouped search with OR returned correct number of rows'); +is ($pref_or_rs->count, 4, 'Prefetched grouped count with OR ok'); -my $distinct_rs = $schema->resultset("CD")->search($search, { join => 'tags', distinct => 1 }); -is($distinct_rs->all, 4, 'DISTINCT search with OR ok'); { my $tcount = $schema->resultset('Track')->search( @@ -265,13 +276,7 @@ my $tag_rs = $schema->resultset('Tag')->search( my $rel_rs = $tag_rs->search_related('cd'); -# At this point in the test there are: -# 1 artist with the cheesy AND blue tag -# 1 artist with the cheesy tag -# 2 artists with the blue tag -# -# Formerly this test expected 5 as there was no collapsing of the AND condition -is($rel_rs->count, 4, 'Related search ok'); +is($rel_rs->count, 5, 'Related search ok'); is($or_rs->next->cdid, $rel_rs->next->cdid, 'Related object ok'); $or_rs->reset; @@ -408,3 +413,12 @@ SKIP: { $en_row->insert; is($en_row->encoded, 'amliw', 'insert does not encode again'); } + +# make sure we got rid of the compat shims +SKIP: { + skip "Remove in 0.09", 5 if $DBIx::Class::VERSION < 0.09; + + for (qw/compare_relationship_keys pk_depends_on resolve_condition resolve_join resolve_prefetch/) { + ok (! DBIx::Class::ResultSource->can ($_), "$_ no longer provided by DBIx::Class::ResultSource"); + } +}