initial extension api
[dbsrgits/SQL-Abstract.git] / xt / clauses.t
CommitLineData
63a3e784 1use strict;
2use warnings;
3use Test::More;
76aa8b0d 4use SQL::Abstract::Test import => [ qw(is_same_sql_bind is_same_sql) ];
63a3e784 5use SQL::Abstract::ExtraClauses;
6
f47b547b 7my $sqlac = SQL::Abstract::ExtraClauses->new(unknown_unop_always_func => 1);
63a3e784 8
9my ($sql, @bind) = $sqlac->select({
f47b547b 10 select => [ qw(artist.id artist.name), { -json_agg => 'cd' } ],
63a3e784 11 from => [
6990b2aa 12 { artists => { -as => 'artist' } },
13 -join => [ cds => as => 'cd' => on => { 'cd.artist_id' => 'artist.id' } ],
63a3e784 14 ],
15 where => { 'artist.genres', => { '@>', { -value => [ 'Rock' ] } } },
16 order_by => 'artist.name',
17 group_by => 'artist.id',
f47b547b 18 having => { '>' => [ { -count => 'cd.id' }, 3 ] }
63a3e784 19});
20
21is_same_sql_bind(
22 $sql, \@bind,
23 q{
24 SELECT artist.id, artist.name, JSON_AGG(cd)
6990b2aa 25 FROM artists AS artist JOIN cds AS cd ON cd.artist_id = artist.id
63a3e784 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
76aa8b0d 34($sql) = $sqlac->select({
35 select => [ 'a' ],
36 from => [ { -values => [ [ 1, 2 ], [ 3, 4 ] ] }, -as => [ qw(t a b) ] ],
37});
38
39is_same_sql($sql, q{SELECT a FROM (VALUES (1, 2), (3, 4)) AS t(a,b)});
40
0891ae97 41($sql) = $sqlac->update({
42 update => 'employees',
43 set => { sales_count => { sales_count => { '+', \1 } } },
44 from => 'accounts',
45 where => {
46 'accounts.name' => { '=' => \"'Acme Corporation'" },
47 'employees.id' => { -ident => 'accounts.sales_person' },
48 }
49});
50
51is_same_sql(
52 $sql,
53 q{UPDATE employees SET sales_count = sales_count + 1 FROM accounts
54 WHERE accounts.name = 'Acme Corporation'
55 AND employees.id = accounts.sales_person
56 }
57);
58
59($sql) = $sqlac->update({
60 update => [ qw(tab1 tab2) ],
61 set => {
62 'tab1.column1' => { -ident => 'value1' },
63 'tab1.column2' => { -ident => 'value2' },
64 },
65 where => { 'tab1.id' => { -ident => 'tab2.id' } },
66});
67
68is_same_sql(
69 $sql,
70 q{UPDATE tab1, tab2 SET tab1.column1 = value1, tab1.column2 = value2
71 WHERE tab1.id = tab2.id}
72);
73
74is_same_sql(
75 $sqlac->delete({
76 from => 'x',
77 using => 'y',
78 where => { 'x.id' => { -ident => 'y.x_id' } }
79 }),
80 q{DELETE FROM x USING y WHERE x.id = y.x_id}
81);
82
83is_same_sql(
84 $sqlac->select({
85 select => [ 'x.*', 'y.*' ],
86 from => [ 'x', -join => [ 'y', using => 'y_id' ] ],
87 }),
88 q{SELECT x.*, y.* FROM x JOIN y USING (y_id)},
89);
90
b770fe29 91is_same_sql(
92 $sqlac->select({
93 select => 'x.*',
94 from => [ { -select => { select => '*', from => 'y' } }, -as => 'x' ],
95 }),
96 q{SELECT x.* FROM (SELECT * FROM y) AS x},
97);
98
6da32de8 99is_same_sql(
100 $sqlac->insert({
101 into => 'foo',
bea59460 102 select => { select => '*', from => 'bar' }
6da32de8 103 }),
104 q{INSERT INTO foo SELECT * FROM bar}
105);
106
bea59460 107($sql, @bind) = $sqlac->insert({
108 into => 'eh',
109 rowvalues => [ [ 1, 2 ], [ 3, 4 ], [ 5, 6 ] ]
110});
111
112is_same_sql_bind(
113 $sql, \@bind,
114 q{INSERT INTO eh VALUES (?, ?), (?, ?), (?, ?)},
115 [ 1..6 ],
116);
117
f47b547b 118is_same_sql(
119 $sqlac->select({
120 select => '*',
121 from => 'foo',
122 where => { -not_exists => {
123 -select => {
124 select => \1,
125 from => 'bar',
126 where => { 'foo.id' => { -ident => 'bar.foo_id' } }
127 },
128 } },
129 }),
130 q{SELECT * FROM foo
131 WHERE NOT EXISTS (SELECT 1 FROM bar WHERE foo.id = bar.foo_id)},
132);
133
578d9053 134is_same_sql(
135 $sqlac->select({
136 select => '*',
137 from => 'foo',
138 where => { id => {
139 '=' => { -select => { select => { -max => 'id' }, from => 'foo' } }
140 } },
141 }),
142 q{SELECT * FROM foo WHERE id = (SELECT MAX(id) FROM foo)},
143);
144
b77d646a 145{
8637f869 146
147 my $sqlac = $sqlac->clone
148 ->clauses_of(
149 select => (
150 $sqlac->clauses_of('select'),
151 qw(limit offset),
152 )
153 );
b77d646a 154
155 ($sql, @bind) = $sqlac->select({
156 select => '*',
157 from => 'foo',
158 limit => 10,
159 offset => 20,
160 });
161
162 is_same_sql_bind(
163 $sql, \@bind,
164 q{SELECT * FROM foo LIMIT ? OFFSET ?}, [ 10, 20 ]
165 );
166}
167
63a3e784 168done_testing;