Fix RSC->reset() to no longer return $self, which fixes Cursor::Cached + RSC.
[dbsrgits/DBIx-Class.git] / t / 88result_set_column.t
CommitLineData
70350518 1use strict;
2use warnings;
3
4use Test::More;
5d1fc7dc 5use Test::Exception;
70350518 6use lib qw(t/lib);
7use DBICTest;
8
a47e1233 9my $schema = DBICTest->init_schema();
2bb7b40b 10
01dc6781 11plan tests => 21;
2bb7b40b 12
d8dbe471 13my $rs = $schema->resultset("CD")->search({}, { order_by => 'cdid' });
2bb7b40b 14
15my $rs_title = $rs->get_column('title');
16my $rs_year = $rs->get_column('year');
20ea4813 17my $max_year = $rs->get_column(\'MAX (year)');
2bb7b40b 18
19is($rs_title->next, 'Spoonful of bees', "next okay");
5d62876f 20is_deeply( [ sort $rs_year->func('DISTINCT') ], [ 1997, 1998, 1999, 2001 ], "wantarray context okay");
20ea4813 21ok ($max_year->next == $rs_year->max, q/get_column (\'FUNC') ok/);
5d62876f 22
2bb7b40b 23my @all = $rs_title->all;
24cmp_ok(scalar @all, '==', 5, "five titles returned");
25
26cmp_ok($rs_year->max, '==', 2001, "max okay for year");
27is($rs_title->min, 'Caterwaulin\' Blues', "min okay for title");
28
29cmp_ok($rs_year->sum, '==', 9996, "three artists returned");
30
01dc6781 31my $reset_ret = $rs_year->reset;
66521001 32is($rs_year->next, 1999, "reset okay");
01dc6781 33is($reset_ret, undef, 'reset returns undef');
66521001 34
35is($rs_year->first, 1999, "first okay");
36
5d1fc7dc 37# test +select/+as for single column
ae515736 38my $psrs = $schema->resultset('CD')->search({},
39 {
40 '+select' => \'COUNT(*)',
41 '+as' => 'count'
42 }
43);
5d1fc7dc 44lives_ok(sub { $psrs->get_column('count')->next }, '+select/+as additional column "count" present (scalar)');
45dies_ok(sub { $psrs->get_column('noSuchColumn')->next }, '+select/+as nonexistent column throws exception');
ae515736 46
5d1fc7dc 47# test +select/+as for multiple columns
ae515736 48$psrs = $schema->resultset('CD')->search({},
49 {
50 '+select' => [ \'COUNT(*)', 'title' ],
51 '+as' => [ 'count', 'addedtitle' ]
52 }
53);
5d1fc7dc 54lives_ok(sub { $psrs->get_column('count')->next }, '+select/+as multiple additional columns, "count" column present');
55lives_ok(sub { $psrs->get_column('addedtitle')->next }, '+select/+as multiple additional columns, "addedtitle" column present');
56
57# test +select/+as for overriding a column
58$psrs = $schema->resultset('CD')->search({},
59 {
60 'select' => \"'The Final Countdown'",
61 'as' => 'title'
62 }
63);
64is($psrs->get_column('title')->next, 'The Final Countdown', '+select/+as overridden column "title"');
ae515736 65
3f6cc7e4 66{
67 my $rs = $schema->resultset("CD")->search({}, { prefetch => 'artist' });
68 my $rsc = $rs->get_column('year');
69 is( $rsc->{_parent_resultset}->{attrs}->{prefetch}, undef, 'prefetch wiped' );
70}
cda5e082 71
72# test sum()
73is ($schema->resultset('BooksInLibrary')->get_column ('price')->sum, 125, 'Sum of a resultset works correctly');
74
75# test sum over search_related
76my $owner = $schema->resultset('Owners')->find ({ name => 'Newton' });
77ok ($owner->books->count > 1, 'Owner Newton has multiple books');
78is ($owner->search_related ('books')->get_column ('price')->sum, 60, 'Correctly calculated price of all owned books');
d8dbe471 79
80
81# make sure joined/prefetched get_column of a PK dtrt
82
83$rs->reset;
84my $j_rs = $rs->search ({}, { join => 'tracks' })->get_column ('cdid');
85is_deeply (
86 [ $j_rs->all ],
87 [ map { my $c = $rs->next; ( ($c->id) x $c->tracks->count ) } (1 .. $rs->count) ],
88 'join properly explodes amount of rows from get_column',
89);
90
91$rs->reset;
92my $p_rs = $rs->search ({}, { prefetch => 'tracks' })->get_column ('cdid');
93is_deeply (
94 [ $p_rs->all ],
95 [ $rs->get_column ('cdid')->all ],
96 'prefetch properly collapses amount of rows from get_column',
97);