X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F76select.t;h=dca56546021946311aa7a5361421aa562c469797;hb=a8de639b29afc6645820ba346b47d53117dbbe7e;hp=cd128b063914a3f4f31f44d9903eae3126acf66a;hpb=2b4fdf57c88d1a6a9a85853f4905f31e8c166f8c;p=dbsrgits%2FDBIx-Class.git diff --git a/t/76select.t b/t/76select.t index cd128b0..dca5654 100644 --- a/t/76select.t +++ b/t/76select.t @@ -1,5 +1,5 @@ use strict; -use warnings; +use warnings; use Test::More; use Test::Exception; @@ -9,8 +9,6 @@ use DBIC::SqlMakerTest; my $schema = DBICTest->init_schema(); -plan tests => 21; - my $rs = $schema->resultset('CD')->search({}, { '+select' => \ 'COUNT(*)', @@ -29,16 +27,6 @@ $rs = $schema->resultset('CD')->search({}, lives_ok(sub { $rs->first->get_column('count') }, 'multiple +select/+as columns, 1st rscolumn present'); lives_ok(sub { $rs->first->get_column('addedtitle') }, 'multiple +select/+as columns, 2nd rscolumn present'); -# Tests a regression in ResultSetColumn wrt +select -$rs = $schema->resultset('CD')->search(undef, - { - '+select' => [ \'COUNT(*) AS year_count' ], - order_by => 'year_count' - } -); -my @counts = $rs->get_column('cdid')->all; -ok(scalar(@counts), 'got rows from ->all using +select'); - $rs = $schema->resultset('CD')->search({}, { '+select' => [ \ 'COUNT(*)', 'title' ], @@ -64,6 +52,7 @@ my $cds = $schema->resultset ('CD')->search ({}, { order_by => 'me.cdid'}); # ma cmp_ok ($cds->count, '>', 2, 'Initially populated with more than 2 CDs'); my $table = $cds->result_source->name; +$table = $$table if ref $table eq 'SCALAR'; my $subsel = $cds->search ({}, { columns => [qw/cdid title/], from => \ "(SELECT cdid, title FROM $table LIMIT 2) me", @@ -84,10 +73,8 @@ $rs = $schema->resultset('CD')->search({}, } ); -my ($sql, @bind) = @${$rs->as_query}; is_same_sql_bind ( - $sql, - \@bind, + $rs->as_query, '(SELECT me.cdid, me.title, artist.name FROM cd me JOIN artist artist ON artist.artistid = me.artist)', [], 'Use of columns attribute results in proper sql' @@ -102,29 +89,27 @@ lives_ok(sub { }, 'columns 2nd rscolumn present'); lives_ok(sub { - $rs->first->artist->get_column('name') -}, 'columns 3rd rscolumn present'); + $rs->first->artist->get_column('name') +}, 'columns 3rd rscolumn present'); $rs = $schema->resultset('CD')->search({}, - { + { 'join' => 'artist', '+columns' => ['cdid', 'title', 'artist.name'], } ); -($sql, @bind) = @${$rs->as_query}; is_same_sql_bind ( - $sql, - \@bind, - '(SELECT me.cdid, me.artist, me.title, me.year, me.genreid, me.single_track, me.cdid, me.title, artist.name FROM cd me JOIN artist artist ON artist.artistid = me.artist)', + $rs->as_query, + '(SELECT me.cdid, me.artist, me.title, me.year, me.genreid, me.single_track, artist.name FROM cd me JOIN artist artist ON artist.artistid = me.artist)', [], 'Use of columns attribute results in proper sql' ); lives_ok(sub { - $rs->first->get_column('cdid') + $rs->first->get_column('cdid') }, 'columns 1st rscolumn present'); lives_ok(sub { @@ -134,3 +119,114 @@ lives_ok(sub { lives_ok(sub { $rs->first->artist->get_column('name') }, 'columns 3rd rscolumn present'); + + +$rs = $schema->resultset('CD')->search({'tracks.position' => { -in => [2] } }, + { + join => 'tracks', + columns => [qw/me.cdid me.title/], + '+select' => ['tracks.position'], + '+as' => ['track_position'], + + # get a hashref of CD1 only (the first with a second track) + result_class => 'DBIx::Class::ResultClass::HashRefInflator', + order_by => 'cdid', + rows => 1, + } +); + +is_deeply ( + $rs->single, + { + cdid => 1, + track_position => 2, + title => 'Spoonful of bees', + }, + 'limited prefetch via column works on a multi-relationship', +); + +my $sub_rs = $rs->search ({}, + { + columns => [qw/artist tracks.trackid/], # columns should not be merged but override $rs columns + '+select' => ['tracks.title'], + '+as' => ['tracks.title'], + } +); + +is_deeply( + $sub_rs->single, + { + artist => 1, + tracks => { + title => 'Apiary', + trackid => 17, + }, + }, + 'columns/select/as fold properly on sub-searches', +); + +# *very* esoteric use-case, yet valid (the "empty" object should not be undef): +$rs = $schema->resultset('Artist'); +$rs->create({ artistid => 69, name => 'Ranetki' }); + +my $relations_or_1_count = + $rs->search_related('cds')->count + + + $rs->search({ 'cds.cdid' => undef }, { join => 'cds' })->count +; + +my $weird_rs = $rs->search({}, { + order_by => { -desc => [ 'me.artistid', 'cds.cdid' ] }, + columns => [{ cd_title => 'cds.title', cd_year => 'cds.year' }], + join => 'cds', +}); + +my $weird_rs_hri = $weird_rs->search({}, { result_class => 'DBIx::Class::ResultClass::HashRefInflator' }); + +for my $rs ($weird_rs, $weird_rs_hri) { + is ($rs->count, $relations_or_1_count, 'count on rhs data injection matches'); + + my @all; + while (my $r = $rs->next) { + push @all, $r; + } + + is (scalar @all, $relations_or_1_count, 'object count on rhs data injection matches'); + is_deeply ( + ( $rs->result_class eq 'DBIx::Class::ResultClass::HashRefInflator' + ? \@all + : [ map { +{$_->get_columns} } @all ] + ), + [ + { + cd_title => undef, + cd_year => undef, + }, + { + cd_title => "Come Be Depressed With Us", + cd_year => 1998, + }, + { + cd_title => "Generic Manufactured Singles", + cd_year => 2001, + }, + { + cd_title => "Caterwaulin' Blues", + cd_year => 1997, + }, + { + cd_title => "Forkful of bees", + cd_year => 2001, + }, + { + cd_title => "Spoonful of bees", + cd_year => 1999, + }, + ], + 'Correct data retrieved' + ); + + is_deeply( [ $rs->all ], \@all, '->all matches' ); +} + +done_testing;