5546d86ff24f4a73e4a812c17a7fb84df26e19d6
[scpubgit/Q-Branch.git] / xt / clauses.t
1 use strict;
2 use warnings;
3 use Test::More;
4 use SQL::Abstract::Test import => [ qw(is_same_sql_bind is_same_sql) ];
5 use SQL::Abstract::ExtraClauses;
6
7 my $sqlac = SQL::Abstract::ExtraClauses->new;
8
9 my ($sql, @bind) = $sqlac->select({
10   select => [ qw(artist.id artist.name), { -func => [ json_agg => 'cd' ] } ],
11   from => [
12     { artists => { -as => 'artist' } },
13     -join => [ cds => as => 'cd' => on => { 'cd.artist_id' => 'artist.id' } ],
14   ],
15   where => { 'artist.genres', => { '@>', { -value => [ 'Rock' ] } } },
16   order_by => 'artist.name',
17   group_by => 'artist.id',
18   having => { '>' => [ { -func => [ count => 'cd.id' ] }, 3 ] }
19 });
20
21 is_same_sql_bind(
22   $sql, \@bind,
23   q{
24     SELECT artist.id, artist.name, JSON_AGG(cd)
25     FROM artists AS artist JOIN cds AS cd ON cd.artist_id = artist.id
26     WHERE artist.genres @> ?
27     ORDER BY artist.name
28     GROUP BY artist.id
29     HAVING COUNT(cd.id) > ?
30   },
31   [ [ 'Rock' ], 3 ]
32 );
33
34 ($sql) = $sqlac->select({
35   select => [ 'a' ],
36   from => [ { -values => [ [ 1, 2 ], [ 3, 4 ] ] }, -as => [ qw(t a b) ] ],
37 });
38
39 is_same_sql($sql, q{SELECT a FROM (VALUES (1, 2), (3, 4)) AS t(a,b)});
40
41 done_testing;