Add support for +select and +as attributes to ResultSet
[dbsrgits/DBIx-Class.git] / t / run / 28result_set_column.tl
1 sub run_tests {
2 my $schema = shift;
3
4 plan tests => 8; 
5
6 my $rs = $cd = $schema->resultset("CD")->search({});
7
8 my $rs_title = $rs->get_column('title');
9 my $rs_year = $rs->get_column('year');
10
11 is($rs_title->next, 'Spoonful of bees', "next okay");
12
13 my @all = $rs_title->all;
14 cmp_ok(scalar @all, '==', 5, "five titles returned");
15
16 cmp_ok($rs_year->max, '==', 2001, "max okay for year");
17 is($rs_title->min, 'Caterwaulin\' Blues', "min okay for title");
18
19 cmp_ok($rs_year->sum, '==', 9996, "three artists returned");
20
21 my $psrs = $schema->resultset('CD')->search({},
22     {
23         '+select'   => \'COUNT(*)',
24         '+as'       => 'count'
25     }
26 );
27 ok(defined($psrs->get_column('count')), '+select/+as count');
28
29 $psrs = $schema->resultset('CD')->search({},
30     {
31         '+select'   => [ \'COUNT(*)', 'title' ],
32         '+as'       => [ 'count', 'addedtitle' ]
33     }
34 );
35 ok(defined($psrs->get_column('count')), '+select/+as arrayref count');
36 ok(defined($psrs->get_column('addedtitle')), '+select/+as title');
37 }
38
39 1;