Release 1.52
[scpubgit/Q-Branch.git] / t / 04modifiers.t
CommitLineData
e5360be4 1#!/usr/bin/perl
2
3use strict;
4use warnings;
5use Test::More;
6use Test::Exception;
7use SQL::Abstract::Test import => ['is_same_sql_bind'];
8
9use Data::Dumper;
10use SQL::Abstract;
11
12=begin
a8b90cb7 13Test -and -or and -nest modifiers, assuming the following:
e5360be4 14
6c8ac65d 15 * Modifiers are respected in both hashrefs and arrayrefs (with the obvious
16 limitation of one modifier type per hahsref)
17 * When in condition context i.e. where => { -or { a = 1 } }, each modifier
18 affects only the immediate element following it.
19 * When in column multi-condition context i.e.
20 where => { x => { '!=', [-and, [qw/1 2 3/]] } }, a modifier affects the
21 OUTER ARRAYREF if and only if it is the first element of said ARRAYREF
e5360be4 22
23=cut
24
05a05fd1 25# no warnings (the -or/-and => { } warning is silly, there is nothing wrong with such usage)
26my $and_or_args = {
27 and => { stmt => 'WHERE a = ? AND b = ?', bind => [qw/1 2/] },
28 or => { stmt => 'WHERE a = ? OR b = ?', bind => [qw/1 2/] },
29 or_and => { stmt => 'WHERE ( foo = ? OR bar = ? ) AND baz = ? ', bind => [qw/1 2 3/] },
30 or_or => { stmt => 'WHERE foo = ? OR bar = ? OR baz = ?', bind => [qw/1 2 3/] },
31 and_or => { stmt => 'WHERE ( foo = ? AND bar = ? ) OR baz = ?', bind => [qw/1 2 3/] },
32};
33
a8b90cb7 34my @and_or_tests = (
05a05fd1 35 # basic tests
a8b90cb7 36 {
37 where => { -and => [a => 1, b => 2] },
05a05fd1 38 %{$and_or_args->{and}},
a8b90cb7 39 },
40 {
41 where => [ -and => [a => 1, b => 2] ],
05a05fd1 42 %{$and_or_args->{and}},
a8b90cb7 43 },
44 {
45 where => { -or => [a => 1, b => 2] },
05a05fd1 46 %{$and_or_args->{or}},
a8b90cb7 47 },
48 {
49 where => [ -or => [a => 1, b => 2] ],
05a05fd1 50 %{$and_or_args->{or}},
51 },
52
6c8ac65d 53 {
54 where => { -and => {a => 1, b => 2} },
55 %{$and_or_args->{and}},
56 },
57 {
58 where => [ -and => {a => 1, b => 2} ],
59 %{$and_or_args->{and}},
60 },
61 {
62 where => { -or => {a => 1, b => 2} },
63 %{$and_or_args->{or}},
64 },
65 {
66 where => [ -or => {a => 1, b => 2} ],
67 %{$and_or_args->{or}},
68 },
69
05a05fd1 70 # test modifiers within hashrefs
71 {
72 where => { -or => [
73 [ foo => 1, bar => 2 ],
74 baz => 3,
75 ]},
76 %{$and_or_args->{or_or}},
77 },
78 {
79 where => { -and => [
80 [ foo => 1, bar => 2 ],
81 baz => 3,
82 ]},
83 %{$and_or_args->{or_and}},
84 },
85
86 # test modifiers within arrayrefs
87 {
88 where => [ -or => [
89 [ foo => 1, bar => 2 ],
90 baz => 3,
91 ]],
92 %{$and_or_args->{or_or}},
93 },
94 {
95 where => [ -and => [
96 [ foo => 1, bar => 2 ],
97 baz => 3,
98 ]],
99 %{$and_or_args->{or_and}},
100 },
101
102 # test ambiguous modifiers within hashrefs (op extends to to immediate RHS only)
103 {
104 where => { -and => [ -or =>
105 [ foo => 1, bar => 2 ],
106 baz => 3,
107 ]},
108 %{$and_or_args->{or_and}},
109 },
110 {
111 where => { -or => [ -and =>
112 [ foo => 1, bar => 2 ],
113 baz => 3,
114 ]},
115 %{$and_or_args->{and_or}},
116 },
117
118 # test ambiguous modifiers within arrayrefs (op extends to to immediate RHS only)
119 {
120 where => [ -and => [ -or =>
121 [ foo => 1, bar => 2 ],
122 baz => 3,
123 ]],
124 %{$and_or_args->{or_and}},
125 },
126 {
127 where => [ -or => [ -and =>
128 [ foo => 1, bar => 2 ],
129 baz => 3
130 ]],
131 %{$and_or_args->{and_or}},
132 },
133
6c8ac65d 134 # test column multi-cond in arrayref (useless example)
135 {
136 where => { x => [ -and => (1 .. 3) ] },
137 stmt => 'WHERE x = ? AND x = ? AND x = ?',
138 bind => [1..3],
139 },
140 # test column multi-cond in arrayref (more useful)
141 {
142 where => { x => [ -and => {'!=' => 1}, {'!=' => 2}, {'!=' => 3} ] },
143 stmt => 'WHERE x != ? AND x != ? AND x != ?',
144 bind => [1..3],
145 },
146 # test column multi-cond in arrayref (even more useful)
64385831 147 {
148 where => { x => { '!=' => [ -and => (1 .. 3) ] } },
149 stmt => 'WHERE x != ? AND x != ? AND x != ?',
150 bind => [1..3],
151 },
6c8ac65d 152
153 # the -or should affect only the inner hashref, as we are not in an outer arrayref
05a05fd1 154 {
155 where => { x => {
156 -or => { '!=', 1, '>=', 2 }, -like => 'x%'
157 }},
25e4c693 158 stmt => 'WHERE x LIKE ? AND ( x != ? OR x >= ? )',
eb49170d 159 bind => [qw/x% 1 2/],
05a05fd1 160 },
6c8ac65d 161
162 # the -and should affect the OUTER arrayref, while the internal structures remain intact
05a05fd1 163 {
164 where => { x => [
165 -and => [ 1, 2 ], { -like => 'x%' }
166 ]},
6c8ac65d 167 stmt => 'WHERE (x = ? OR x = ?) AND x LIKE ?',
05a05fd1 168 bind => [qw/1 2 x%/],
a8b90cb7 169 },
6c8ac65d 170
a8b90cb7 171 {
172 where => { -and => [a => 1, b => 2], x => 9, -or => { c => 3, d => 4 } },
173 stmt => 'WHERE a = ? AND b = ? AND ( c = ? OR d = ? ) AND x = ?',
174 bind => [qw/1 2 3 4 9/],
175 },
6c8ac65d 176
a8b90cb7 177 {
178 where => { -and => [a => 1, b => 2, k => [11, 12] ], x => 9, -or => { c => 3, d => 4, l => { '=' => [21, 22] } } },
6c8ac65d 179 stmt => 'WHERE a = ? AND b = ? AND (k = ? OR k = ?) AND ((l = ? OR l = ?) OR c = ? OR d = ? ) AND x = ?',
a8b90cb7 180 bind => [qw/1 2 11 12 21 22 3 4 9/],
181 },
e5360be4 182
a8b90cb7 183 {
a8b90cb7 184 where => { -or => [a => 1, b => 2, k => [11, 12] ], x => 9, -and => { c => 3, d => 4, l => { '=' => [21, 22] } } },
185 stmt => 'WHERE c = ? AND d = ? AND ( l = ? OR l = ?) AND (a = ? OR b = ? OR k = ? OR k = ?) AND x = ?',
186 bind => [qw/3 4 21 22 1 2 11 12 9/],
187 },
e5360be4 188
a8b90cb7 189 {
190 where => [ -or => [a => 1, b => 2], -or => { c => 3, d => 4}, e => 5, -and => [ f => 6, g => 7], [ h => 8, i => 9, -and => [ k => 10, l => 11] ], { m => 12, n => 13 }],
191 stmt => 'WHERE a = ? OR b = ? OR c = ? OR d = ? OR e = ? OR ( f = ? AND g = ?) OR h = ? OR i = ? OR ( k = ? AND l = ? ) OR (m = ? AND n = ?)',
192 bind => [1 .. 13],
193 },
6c8ac65d 194
195 {
196 # explicit OR logic in arrays should leave everything intact
197 args => { logic => 'or' },
198 where => { -and => [a => 1, b => 2, k => [11, 12] ], x => 9, -or => { c => 3, d => 4, l => { '=' => [21, 22] } } },
199 stmt => 'WHERE a = ? AND b = ? AND (k = ? OR k = ?) AND ( l = ? OR l = ? OR c = ? OR d = ? ) AND x = ? ',
200 bind => [qw/1 2 11 12 21 22 3 4 9/],
201 },
202
a8b90cb7 203 {
6c8ac65d 204 # flip logic in arrays except where excplicitly requested otherwise
a8b90cb7 205 args => { logic => 'and' },
206 where => [ -or => [a => 1, b => 2], -or => { c => 3, d => 4}, e => 5, -and => [ f => 6, g => 7], [ h => 8, i => 9, -and => [ k => 10, l => 11] ], { m => 12, n => 13 }],
207 stmt => 'WHERE (a = ? OR b = ?) AND (c = ? OR d = ?) AND e = ? AND f = ? AND g = ? AND h = ? AND i = ? AND k = ? AND l = ? AND m = ? AND n = ?',
208 bind => [1 .. 13],
209 },
05a05fd1 210
6c8ac65d 211 # 1st -and is in column mode, thus flips the entire array, whereas the
212 # 2nd one is just a condition modifier
213 {
214 where => [
215 col => [ -and => {'<' => 123}, {'>' => 456 }, {'!=' => 789} ],
216 -and => [
217 col2 => [ -or => { -like => 'crap' }, { -like => 'crop' } ],
218 col3 => [ -and => { -like => 'chap' }, { -like => 'chop' } ],
219 ],
220 ],
221 stmt => 'WHERE
222 (col < ? AND col > ? AND col != ?)
223 OR
224 (
225 ( col2 LIKE ? OR col2 LIKE ? )
226 AND
227 ( col3 LIKE ? AND col3 LIKE ? )
228 )
229 ',
230 bind => [qw/123 456 789 crap crop chap chop/],
231 },
232
05a05fd1 233 ##########
234 # some corner cases by ldami (some produce useless SQL, just for clarification on 1.5 direction)
235 #
236
237 {
238 where => { foo => [
239 -and => [ { -like => 'foo%'}, {'>' => 'moo'} ],
240 { -like => '%bar', '<' => 'baz'},
241 [ {-like => '%alpha'}, {-like => '%beta'} ],
6c8ac65d 242 [ {'!=' => 'toto', '=' => 'koko'} ],
05a05fd1 243 ] },
6c8ac65d 244 stmt => 'WHERE (foo LIKE ? OR foo > ?) AND (foo LIKE ? AND foo < ?) AND (foo LIKE ? OR foo LIKE ?) AND (foo != ? AND foo = ?)',
05a05fd1 245 bind => [qw/foo% moo %bar baz %alpha %beta toto koko/],
246 },
6c8ac65d 247
05a05fd1 248 {
6c8ac65d 249 where => [
250 -and => [a => 1, b => 2],
251 -or => [c => 3, d => 4],
252 e => [-and => {-like => 'foo%'}, {-like => '%bar'} ],
253 ],
254 stmt => 'WHERE (a = ? AND b = ?) OR c = ? OR d = ? OR (e LIKE ? AND e LIKE ?)',
255 bind => [qw/1 2 3 4 foo% %bar/],
256 },
257
258 # -or has nothing to flip
259 {
260 where => [-and => [{foo => 1}, {bar => 2}, -or => {baz => 3}] ],
05a05fd1 261 stmt => 'WHERE foo = ? AND bar = ? AND baz = ?',
6c8ac65d 262 bind => [1 .. 3],
05a05fd1 263 },
264 {
6c8ac65d 265 where => [-and => [{foo => 1}, {bar => 2}, -or => {baz => 3, woz => 4} ] ],
266 stmt => 'WHERE foo = ? AND bar = ? AND (baz = ? OR woz = ?)',
05a05fd1 267 bind => [1 .. 4],
268 },
269
6c8ac65d 270 # -and has only 1 following element, thus all still ORed
05a05fd1 271 {
6c8ac65d 272 where => { col => [ -and => [{'<' => 123}, {'>' => 456 }, {'!=' => 789}] ] },
05a05fd1 273 stmt => 'WHERE col < ? OR col > ? OR col != ?',
274 bind => [qw/123 456 789/],
275 },
276
6c8ac65d 277 # flipping array logic affects both column value and condition arrays
05a05fd1 278 {
6c8ac65d 279 args => { logic => 'and' },
280 where => [ col => [ {'<' => 123}, {'>' => 456 }, {'!=' => 789} ], col2 => 0 ],
281 stmt => 'WHERE col < ? AND col > ? AND col != ? AND col2 = ?',
282 bind => [qw/123 456 789 0/],
283 },
284
285 # flipping array logic with explicit -and works
286 {
287 args => { logic => 'and' },
288 where => [ col => [ -and => {'<' => 123}, {'>' => 456 }, {'!=' => 789} ], col2 => 0 ],
289 stmt => 'WHERE col < ? AND col > ? AND col != ? AND col2 = ?',
290 bind => [qw/123 456 789 0/],
291 },
292 # flipping array logic with explicit -or flipping it back
293 {
294 args => { logic => 'and' },
295 where => [ col => [ -or => {'<' => 123}, {'>' => 456 }, {'!=' => 789} ], col2 => 0 ],
296 stmt => 'WHERE (col < ? OR col > ? OR col != ?) AND col2 = ?',
297 bind => [qw/123 456 789 0/],
05a05fd1 298 },
a8b90cb7 299);
e5360be4 300
403e50d1 301# modN and mod_N were a bad design decision - they go away in SQLA2, warn now
302my @numbered_mods = (
303 {
304 backcompat => {
305 -and => [a => 10, b => 11],
306 -and2 => [ c => 20, d => 21 ],
307 -nest => [ x => 1 ],
308 -nest2 => [ y => 2 ],
309 -or => { m => 7, n => 8 },
310 -or2 => { m => 17, n => 18 },
311 },
312 correct => { -and => [
313 -and => [a => 10, b => 11],
314 -and => [ c => 20, d => 21 ],
315 -nest => [ x => 1 ],
316 -nest => [ y => 2 ],
317 -or => { m => 7, n => 8 },
318 -or => { m => 17, n => 18 },
319 ] },
320 },
321 {
322 backcompat => {
323 -and2 => [a => 10, b => 11],
324 -and_3 => [ c => 20, d => 21 ],
325 -nest2 => [ x => 1 ],
326 -nest_3 => [ y => 2 ],
327 -or2 => { m => 7, n => 8 },
328 -or_3 => { m => 17, n => 18 },
329 },
330 correct => [ -and => [
331 -and => [a => 10, b => 11],
332 -and => [ c => 20, d => 21 ],
333 -nest => [ x => 1 ],
334 -nest => [ y => 2 ],
335 -or => { m => 7, n => 8 },
336 -or => { m => 17, n => 18 },
337 ] ],
338 },
339);
a8b90cb7 340
2f641e1f 341my @nest_tests = (
342 {
343 where => {a => 1, -nest => [b => 2, c => 3]},
344 stmt => 'WHERE ( ( (b = ? OR c = ?) AND a = ? ) )',
345 bind => [qw/2 3 1/],
346 },
347 {
348 where => {a => 1, -nest => {b => 2, c => 3}},
349 stmt => 'WHERE ( ( (b = ? AND c = ?) AND a = ? ) )',
350 bind => [qw/2 3 1/],
351 },
352 {
353 where => {a => 1, -or => {-nest => {b => 2, c => 3}}},
354 stmt => 'WHERE ( ( (b = ? AND c = ?) AND a = ? ) )',
355 bind => [qw/2 3 1/],
356 },
357 {
358 where => {a => 1, -or => {-nest => [b => 2, c => 3]}},
359 stmt => 'WHERE ( ( (b = ? OR c = ?) AND a = ? ) )',
360 bind => [qw/2 3 1/],
361 },
362 {
363 where => {a => 1, -nest => {-or => {b => 2, c => 3}}},
364 stmt => 'WHERE ( ( (c = ? OR b = ?) AND a = ? ) )',
365 bind => [qw/3 2 1/],
366 },
3a8b7db0 367 {
368 where => [a => 1, -nest => {b => 2, c => 3}, -nest => [d => 4, e => 5]],
c592e251 369 stmt => 'WHERE ( ( a = ? OR ( b = ? AND c = ? ) OR ( d = ? OR e = ? ) ) )',
3a8b7db0 370 bind => [qw/1 2 3 4 5/],
371 },
2f641e1f 372);
373
374plan tests => @and_or_tests*3 + @numbered_mods*4 + @nest_tests*2;
a8b90cb7 375
376for my $case (@and_or_tests) {
ef8c0c94 377 TODO: {
378 local $TODO = $case->{todo} if $case->{todo};
379
e5360be4 380 local $Data::Dumper::Terse = 1;
a8b90cb7 381
382 my @w;
383 local $SIG{__WARN__} = sub { push @w, @_ };
384 my $sql = SQL::Abstract->new ($case->{args} || {});
e5360be4 385 lives_ok (sub {
a8b90cb7 386 my ($stmt, @bind) = $sql->where($case->{where});
403e50d1 387 is_same_sql_bind(
388 $stmt,
389 \@bind,
390 $case->{stmt},
391 $case->{bind},
392 )
e5360be4 393 || diag "Search term:\n" . Dumper $case->{where};
394 });
a8b90cb7 395 is (@w, 0, 'No warnings within and-or tests')
396 || diag join "\n", 'Emitted warnings:', @w;
ef8c0c94 397 }
e5360be4 398}
403e50d1 399
2f641e1f 400for my $case (@nest_tests) {
401 TODO: {
402 local $TODO = $case->{todo} if $case->{todo};
403
404 local $SQL::Abstract::Test::parenthesis_significant = 1;
405 local $Data::Dumper::Terse = 1;
406
407 my $sql = SQL::Abstract->new ($case->{args} || {});
408 lives_ok (sub {
409 my ($stmt, @bind) = $sql->where($case->{where});
410 is_same_sql_bind(
411 $stmt,
412 \@bind,
413 $case->{stmt},
414 $case->{bind},
415 )
416 || diag "Search term:\n" . Dumper $case->{where};
417 });
418 }
419}
420
421
422
6c8ac65d 423my $w_str = "\QUse of [and|or|nest]_N modifiers is deprecated and will be removed in SQLA v2.0\E";
403e50d1 424for my $case (@numbered_mods) {
2f641e1f 425 TODO: {
426 local $TODO = $case->{todo} if $case->{todo};
427
403e50d1 428 local $Data::Dumper::Terse = 1;
429
430 my @w;
431 local $SIG{__WARN__} = sub { push @w, @_ };
432 my $sql = SQL::Abstract->new ($case->{args} || {});
433 lives_ok (sub {
434 my ($old_s, @old_b) = $sql->where($case->{backcompat});
435 my ($new_s, @new_b) = $sql->where($case->{correct});
436 is_same_sql_bind(
437 $old_s, \@old_b,
438 $new_s, \@new_b,
439 'Backcompat and the correct(tm) syntax result in identical statements',
440 ) || diag "Search terms:\n" . Dumper {
441 backcompat => $case->{backcompat},
442 correct => $case->{correct},
443 };
444 });
445
446 ok (@w, 'Warnings were emitted about a mod_N construct');
447
448 my @non_match;
449 for (@w) {
6c8ac65d 450 push @non_match, $_ if ($_ !~ /$w_str/);
403e50d1 451 }
452
453 is (@non_match, 0, 'All warnings match the deprecation message')
454 || diag join "\n", 'Rogue warnings:', @non_match;
2f641e1f 455 }
403e50d1 456}
457