* Added ->first and ->reset implementation to ResultSetColumn.
[dbsrgits/DBIx-Class.git] / t / 88result_set_column.t
1 use strict;
2 use warnings;  
3
4 use Test::More;
5 use Test::Exception;
6 use lib qw(t/lib);
7 use DBICTest;
8
9 my $schema = DBICTest->init_schema();
10
11 plan tests => 18;
12
13 my $cd;
14 my $rs = $cd = $schema->resultset("CD")->search({}, { order_by => 'cdid' });
15
16 my $rs_title = $rs->get_column('title');
17 my $rs_year = $rs->get_column('year');
18 my $max_year = $rs->get_column(\'MAX (year)');
19
20 is($rs_title->next, 'Spoonful of bees', "next okay");
21 is_deeply( [ sort $rs_year->func('DISTINCT') ], [ 1997, 1998, 1999, 2001 ],  "wantarray context okay");
22 ok ($max_year->next == $rs_year->max, q/get_column (\'FUNC') ok/);
23
24 my @all = $rs_title->all;
25 cmp_ok(scalar @all, '==', 5, "five titles returned");
26
27 cmp_ok($rs_year->max, '==', 2001, "max okay for year");
28 is($rs_title->min, 'Caterwaulin\' Blues', "min okay for title");
29
30 cmp_ok($rs_year->sum, '==', 9996, "three artists returned");
31
32 $rs_year->reset;
33 is($rs_year->next, 1999, "reset okay");
34
35 is($rs_year->first, 1999, "first okay");
36
37 # test +select/+as for single column
38 my $psrs = $schema->resultset('CD')->search({},
39     {
40         '+select'   => \'COUNT(*)',
41         '+as'       => 'count'
42     }
43 );
44 lives_ok(sub { $psrs->get_column('count')->next }, '+select/+as additional column "count" present (scalar)');
45 dies_ok(sub { $psrs->get_column('noSuchColumn')->next }, '+select/+as nonexistent column throws exception');
46
47 # test +select/+as for multiple columns
48 $psrs = $schema->resultset('CD')->search({},
49     {
50         '+select'   => [ \'COUNT(*)', 'title' ],
51         '+as'       => [ 'count', 'addedtitle' ]
52     }
53 );
54 lives_ok(sub { $psrs->get_column('count')->next }, '+select/+as multiple additional columns, "count" column present');
55 lives_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 );
64 is($psrs->get_column('title')->next, 'The Final Countdown', '+select/+as overridden column "title"');
65
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 }
71
72 # test sum()
73 is ($schema->resultset('BooksInLibrary')->get_column ('price')->sum, 125, 'Sum of a resultset works correctly');
74
75 # test sum over search_related
76 my $owner = $schema->resultset('Owners')->find ({ name => 'Newton' });
77 ok ($owner->books->count > 1, 'Owner Newton has multiple books');
78 is ($owner->search_related ('books')->get_column ('price')->sum, 60, 'Correctly calculated price of all owned books');