updated changes. fixed ResultSetColumn w/prefetch problem
[dbsrgits/DBIx-Class.git] / t / 88result_set_column.t
1 use strict;
2 use warnings;  
3
4 use Test::More;
5 use lib qw(t/lib);
6 use DBICTest;
7
8 my $schema = DBICTest->init_schema();
9
10 plan tests => 9; 
11
12 my $cd;
13 my $rs = $cd = $schema->resultset("CD")->search({});
14
15 my $rs_title = $rs->get_column('title');
16 my $rs_year = $rs->get_column('year');
17
18 is($rs_title->next, 'Spoonful of bees', "next okay");
19
20 my @all = $rs_title->all;
21 cmp_ok(scalar @all, '==', 5, "five titles returned");
22
23 cmp_ok($rs_year->max, '==', 2001, "max okay for year");
24 is($rs_title->min, 'Caterwaulin\' Blues', "min okay for title");
25
26 cmp_ok($rs_year->sum, '==', 9996, "three artists returned");
27
28 my $psrs = $schema->resultset('CD')->search({},
29     {
30         '+select'   => \'COUNT(*)',
31         '+as'       => 'count'
32     }
33 );
34 ok(defined($psrs->get_column('count')), '+select/+as count');
35
36 $psrs = $schema->resultset('CD')->search({},
37     {
38         '+select'   => [ \'COUNT(*)', 'title' ],
39         '+as'       => [ 'count', 'addedtitle' ]
40     }
41 );
42 ok(defined($psrs->get_column('count')), '+select/+as arrayref count');
43 ok(defined($psrs->get_column('addedtitle')), '+select/+as title');
44
45 {
46   my $rs = $schema->resultset("CD")->search({}, { prefetch => 'artist' });
47   my $rsc = $rs->get_column('year');
48   is( $rsc->{_parent_resultset}->{attrs}->{prefetch}, undef, 'prefetch wiped' );
49 }