Reverting http://dev.catalyst.perl.org/svnweb/bast/revision?rev=4278 - it seems to...
[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
d8dbe471 11my $rs = $schema->resultset("CD")->search({}, { order_by => 'cdid' });
2bb7b40b 12
13my $rs_title = $rs->get_column('title');
14my $rs_year = $rs->get_column('year');
20ea4813 15my $max_year = $rs->get_column(\'MAX (year)');
2bb7b40b 16
17is($rs_title->next, 'Spoonful of bees', "next okay");
5d62876f 18is_deeply( [ sort $rs_year->func('DISTINCT') ], [ 1997, 1998, 1999, 2001 ], "wantarray context okay");
20ea4813 19ok ($max_year->next == $rs_year->max, q/get_column (\'FUNC') ok/);
5d62876f 20
2bb7b40b 21my @all = $rs_title->all;
22cmp_ok(scalar @all, '==', 5, "five titles returned");
23
24cmp_ok($rs_year->max, '==', 2001, "max okay for year");
25is($rs_title->min, 'Caterwaulin\' Blues', "min okay for title");
26
27cmp_ok($rs_year->sum, '==', 9996, "three artists returned");
28
b7c79955 29$rs_year->reset;
66521001 30is($rs_year->next, 1999, "reset okay");
31
32is($rs_year->first, 1999, "first okay");
33
5d1fc7dc 34# test +select/+as for single column
ae515736 35my $psrs = $schema->resultset('CD')->search({},
36 {
37 '+select' => \'COUNT(*)',
38 '+as' => 'count'
39 }
40);
5d1fc7dc 41lives_ok(sub { $psrs->get_column('count')->next }, '+select/+as additional column "count" present (scalar)');
42dies_ok(sub { $psrs->get_column('noSuchColumn')->next }, '+select/+as nonexistent column throws exception');
ae515736 43
5d1fc7dc 44# test +select/+as for multiple columns
ae515736 45$psrs = $schema->resultset('CD')->search({},
46 {
47 '+select' => [ \'COUNT(*)', 'title' ],
48 '+as' => [ 'count', 'addedtitle' ]
49 }
50);
5d1fc7dc 51lives_ok(sub { $psrs->get_column('count')->next }, '+select/+as multiple additional columns, "count" column present');
52lives_ok(sub { $psrs->get_column('addedtitle')->next }, '+select/+as multiple additional columns, "addedtitle" column present');
53
54# test +select/+as for overriding a column
55$psrs = $schema->resultset('CD')->search({},
56 {
57 'select' => \"'The Final Countdown'",
58 'as' => 'title'
59 }
60);
61is($psrs->get_column('title')->next, 'The Final Countdown', '+select/+as overridden column "title"');
ae515736 62
3f6cc7e4 63{
64 my $rs = $schema->resultset("CD")->search({}, { prefetch => 'artist' });
65 my $rsc = $rs->get_column('year');
66 is( $rsc->{_parent_resultset}->{attrs}->{prefetch}, undef, 'prefetch wiped' );
67}
cda5e082 68
69# test sum()
70is ($schema->resultset('BooksInLibrary')->get_column ('price')->sum, 125, 'Sum of a resultset works correctly');
71
72# test sum over search_related
73my $owner = $schema->resultset('Owners')->find ({ name => 'Newton' });
74ok ($owner->books->count > 1, 'Owner Newton has multiple books');
75is ($owner->search_related ('books')->get_column ('price')->sum, 60, 'Correctly calculated price of all owned books');
d8dbe471 76
77
78# make sure joined/prefetched get_column of a PK dtrt
79
80$rs->reset;
81my $j_rs = $rs->search ({}, { join => 'tracks' })->get_column ('cdid');
82is_deeply (
83 [ $j_rs->all ],
84 [ map { my $c = $rs->next; ( ($c->id) x $c->tracks->count ) } (1 .. $rs->count) ],
85 'join properly explodes amount of rows from get_column',
86);
87
88$rs->reset;
89my $p_rs = $rs->search ({}, { prefetch => 'tracks' })->get_column ('cdid');
90is_deeply (
91 [ $p_rs->all ],
92 [ $rs->get_column ('cdid')->all ],
93 'prefetch properly collapses amount of rows from get_column',
94);
b7c79955 95
96done_testing;