Fix syntax error in example
[dbsrgits/SQL-Abstract.git] / t / 02where.t
1 use strict;
2 use warnings;
3 use Test::More;
4 use Test::Warn;
5 use Test::Exception;
6 use SQL::Abstract::Test import => [qw(is_same_sql_bind diag_where dumper) ];
7
8 use SQL::Abstract;
9
10 my $not_stringifiable = bless {}, 'SQLA::NotStringifiable';
11
12 my @handle_tests = (
13     {
14         where => 'foo',
15         order => [],
16         stmt => ' WHERE foo',
17         bind => [],
18     },
19     {
20         where => {
21             requestor => 'inna',
22             worker => ['nwiger', 'rcwe', 'sfz'],
23             status => { '!=', 'completed' }
24         },
25         order => [],
26         stmt => " WHERE ( requestor = ? AND status != ? AND ( ( worker = ? ) OR"
27               . " ( worker = ? ) OR ( worker = ? ) ) )",
28         bind => [qw/inna completed nwiger rcwe sfz/],
29     },
30
31     {
32         where  => [
33             status => 'completed',
34             user   => 'nwiger',
35         ],
36         stmt => " WHERE ( status = ? OR user = ? )",
37         bind => [qw/completed nwiger/],
38     },
39
40     {
41         where  => {
42             user   => 'nwiger',
43             status => 'completed'
44         },
45         order => [qw/ticket/],
46         stmt => " WHERE ( status = ? AND user = ? ) ORDER BY ticket",
47         bind => [qw/completed nwiger/],
48     },
49
50     {
51         where  => {
52             user   => 'nwiger',
53             status => { '!=', 'completed' }
54         },
55         order => [qw/ticket/],
56         stmt => " WHERE ( status != ? AND user = ? ) ORDER BY ticket",
57         bind => [qw/completed nwiger/],
58     },
59
60     {
61         where  => {
62             status   => 'completed',
63             reportid => { 'in', [567, 2335, 2] }
64         },
65         order => [],
66         stmt => " WHERE ( reportid IN ( ?, ?, ? ) AND status = ? )",
67         bind => [qw/567 2335 2 completed/],
68     },
69
70     {
71         where  => {
72             status   => 'completed',
73             reportid => { 'not in', [567, 2335, 2] }
74         },
75         order => [],
76         stmt => " WHERE ( reportid NOT IN ( ?, ?, ? ) AND status = ? )",
77         bind => [qw/567 2335 2 completed/],
78     },
79
80     {
81         where  => {
82             status   => 'completed',
83             completion_date => { 'between', ['2002-10-01', '2003-02-06'] },
84         },
85         order => \'ticket, requestor',
86         stmt => "WHERE ( ( completion_date BETWEEN ? AND ? ) AND status = ? ) ORDER BY ticket, requestor",
87         bind => [qw/2002-10-01 2003-02-06 completed/],
88     },
89
90     {
91         where => [
92             {
93                 user   => 'nwiger',
94                 status => { 'in', ['pending', 'dispatched'] },
95             },
96             {
97                 user   => 'robot',
98                 status => 'unassigned',
99             },
100         ],
101         order => [],
102         stmt => " WHERE ( ( status IN ( ?, ? ) AND user = ? ) OR ( status = ? AND user = ? ) )",
103         bind => [qw/pending dispatched nwiger unassigned robot/],
104     },
105
106     {
107         where => {
108             priority  => [ {'>', 3}, {'<', 1} ],
109             requestor => \'is not null',
110         },
111         order => 'priority',
112         stmt => " WHERE ( ( ( priority > ? ) OR ( priority < ? ) ) AND requestor is not null ) ORDER BY priority",
113         bind => [qw/3 1/],
114     },
115
116     {
117         where => {
118             requestor => { '!=', ['-and', undef, ''] },
119         },
120         stmt => " WHERE ( requestor IS NOT NULL AND requestor != ? )",
121         bind => [''],
122     },
123
124     {
125         where => {
126             requestor => [undef, ''],
127         },
128         stmt => " WHERE ( requestor IS NULL OR requestor = ? )",
129         bind => [''],
130     },
131
132     {
133         where => {
134             priority  => [ {'>', 3}, {'<', 1} ],
135             requestor => { '!=', undef },
136         },
137         order => [qw/a b c d e f g/],
138         stmt => " WHERE ( ( ( priority > ? ) OR ( priority < ? ) ) AND requestor IS NOT NULL )"
139               . " ORDER BY a, b, c, d, e, f, g",
140         bind => [qw/3 1/],
141     },
142
143     {
144         where => {
145             priority  => { 'between', [1, 3] },
146             requestor => { 'like', undef },
147         },
148         order => \'requestor, ticket',
149         stmt => " WHERE ( ( priority BETWEEN ? AND ? ) AND requestor IS NULL ) ORDER BY requestor, ticket",
150         bind => [qw/1 3/],
151         warns => qr/Supplying an undefined argument to 'LIKE' is deprecated/,
152     },
153
154
155     {
156         where => {
157           id  => 1,
158           num => {
159            '<=' => 20,
160            '>'  => 10,
161           },
162         },
163         stmt => " WHERE ( id = ? AND ( num <= ? AND num > ? ) )",
164         bind => [qw/1 20 10/],
165     },
166
167     {
168         where => { foo => {-not_like => [7,8,9]},
169                    fum => {'like' => [qw/a b/]},
170                    nix => {'between' => [100,200] },
171                    nox => {'not between' => [150,160] },
172                    wix => {'in' => [qw/zz yy/]},
173                    wux => {'not_in'  => [qw/30 40/]}
174                  },
175         stmt => " WHERE ( ( ( foo NOT LIKE ? ) OR ( foo NOT LIKE ? ) OR ( foo NOT LIKE ? ) ) AND ( ( fum LIKE ? ) OR ( fum LIKE ? ) ) AND ( nix BETWEEN ? AND ? ) AND ( nox NOT BETWEEN ? AND ? ) AND wix IN ( ?, ? ) AND wux NOT IN ( ?, ? ) )",
176         bind => [7,8,9,'a','b',100,200,150,160,'zz','yy','30','40'],
177         warns => qr/\QA multi-element arrayref as an argument to the inequality op 'NOT LIKE' is technically equivalent to an always-true 1=1/,
178     },
179
180     {
181         where => {
182             bar => {'!=' => []},
183         },
184         stmt => " WHERE ( 1=1 )",
185         bind => [],
186     },
187
188     {
189         where => {
190             id  => [],
191         },
192         stmt => " WHERE ( 0=1 )",
193         bind => [],
194     },
195
196
197     {
198         where => {
199             foo => \["IN (?, ?)", 22, 33],
200             bar => [-and =>  \["> ?", 44], \["< ?", 55] ],
201         },
202         stmt => " WHERE ( (bar > ? AND bar < ?) AND foo IN (?, ?) )",
203         bind => [44, 55, 22, 33],
204     },
205
206     {
207         where => {
208           -and => [
209             user => 'nwiger',
210             [
211               -and => [ workhrs => {'>', 20}, geo => 'ASIA' ],
212               -or => { workhrs => {'<', 50}, geo => 'EURO' },
213             ],
214           ],
215         },
216         stmt => "WHERE ( user = ? AND (
217                ( workhrs > ? AND geo = ? )
218             OR ( geo = ? OR workhrs < ? )
219           ) )",
220         bind => [qw/nwiger 20 ASIA EURO 50/],
221     },
222
223    {
224        where => { -and => [{}, { 'me.id' => '1'}] },
225        stmt => " WHERE ( ( me.id = ? ) )",
226        bind => [ 1 ],
227    },
228
229    {
230        where => { foo => $not_stringifiable, },
231        stmt => " WHERE ( foo = ? )",
232        bind => [ $not_stringifiable ],
233    },
234
235    {
236        where => \[ 'foo = ?','bar' ],
237        stmt => " WHERE (foo = ?)",
238        bind => [ "bar" ],
239    },
240
241    {
242        where => [ \[ 'foo = ?','bar' ] ],
243        stmt => " WHERE (foo = ?)",
244        bind => [ "bar" ],
245    },
246
247    {
248        where => { -bool => \'function(x)' },
249        stmt => " WHERE function(x)",
250        bind => [],
251    },
252
253    {
254        where => { -bool => 'foo' },
255        stmt => " WHERE foo",
256        bind => [],
257    },
258
259    {
260        where => { -and => [-bool => 'foo', -bool => 'bar'] },
261        stmt => " WHERE foo AND bar",
262        bind => [],
263    },
264
265    {
266        where => { -or => [-bool => 'foo', -bool => 'bar'] },
267        stmt => " WHERE foo OR bar",
268        bind => [],
269    },
270
271    {
272        where => { -not_bool => \'function(x)' },
273        stmt => " WHERE NOT function(x)",
274        bind => [],
275    },
276
277    {
278        where => { -not_bool => 'foo' },
279        stmt => " WHERE NOT foo",
280        bind => [],
281    },
282
283    {
284        where => { -and => [-not_bool => 'foo', -not_bool => 'bar'] },
285        stmt => " WHERE (NOT foo) AND (NOT bar)",
286        bind => [],
287    },
288
289    {
290        where => { -or => [-not_bool => 'foo', -not_bool => 'bar'] },
291        stmt => " WHERE (NOT foo) OR (NOT bar)",
292        bind => [],
293    },
294
295    {
296        where => { -bool => \['function(?)', 20]  },
297        stmt => " WHERE function(?)",
298        bind => [20],
299    },
300
301    {
302        where => { -not_bool => \['function(?)', 20]  },
303        stmt => " WHERE NOT function(?)",
304        bind => [20],
305    },
306
307    {
308        where => { -bool => { a => 1, b => 2}  },
309        stmt => " WHERE a = ? AND b = ?",
310        bind => [1, 2],
311    },
312
313    {
314        where => { -bool => [ a => 1, b => 2] },
315        stmt => " WHERE a = ? OR b = ?",
316        bind => [1, 2],
317    },
318
319    {
320        where => { -not_bool => { a => 1, b => 2}  },
321        stmt => " WHERE NOT (a = ? AND b = ?)",
322        bind => [1, 2],
323    },
324
325    {
326        where => { -not_bool => [ a => 1, b => 2] },
327        stmt => " WHERE NOT ( a = ? OR b = ? )",
328        bind => [1, 2],
329    },
330
331 # Op against internal function
332    {
333        where => { bool1 => { '=' => { -not_bool => 'bool2' } } },
334        stmt => " WHERE ( bool1 = (NOT bool2) )",
335        bind => [],
336    },
337    {
338        where => { -not_bool => { -not_bool => { -not_bool => 'bool2' } } },
339        stmt => " WHERE ( NOT ( NOT ( NOT bool2 ) ) )",
340        bind => [],
341    },
342
343 # Op against random functions (these two are oracle-specific)
344    {
345        where => { timestamp => { '!=' => { -trunc => { -year => \'sysdate' } } } },
346        stmt => " WHERE ( timestamp != TRUNC(YEAR(sysdate)) )",
347        bind => [],
348    },
349    {
350        where => { timestamp => { '>=' => { -to_date => '2009-12-21 00:00:00' } } },
351        stmt => " WHERE ( timestamp >= TO_DATE(?) )",
352        bind => ['2009-12-21 00:00:00'],
353    },
354
355 # Legacy function specs
356    {
357        where => { ip => {'<<=' => '127.0.0.1/32' } },
358        stmt => "WHERE ( ip <<= ? )",
359        bind => ['127.0.0.1/32'],
360    },
361    {
362        where => { foo => { 'GLOB' => '*str*' } },
363        stmt => " WHERE foo GLOB ? ",
364        bind => [ '*str*' ],
365    },
366    {
367        where => { foo => { 'REGEXP' => 'bar|baz' } },
368        stmt => " WHERE foo REGEXP ? ",
369        bind => [ 'bar|baz' ],
370    },
371
372 # Tests for -not
373 # Basic tests only
374     {
375         where => { -not => { a => 1 } },
376         stmt  => " WHERE ( (NOT a = ?) ) ",
377         bind => [ 1 ],
378     },
379     {
380         where => { a => 1, -not => { b => 2 } },
381         stmt  => " WHERE ( ( (NOT b = ?) AND a = ? ) ) ",
382         bind => [ 2, 1 ],
383     },
384     {
385         where => { -not => { a => 1, b => 2, c => 3 } },
386         stmt  => " WHERE ( (NOT ( a = ? AND b = ? AND c = ? )) ) ",
387         bind => [ 1, 2, 3 ],
388     },
389     {
390         where => { -not => [ a => 1, b => 2, c => 3 ] },
391         stmt  => " WHERE ( (NOT ( a = ? OR b = ? OR c = ? )) ) ",
392         bind => [ 1, 2, 3 ],
393     },
394     {
395         where => { -not => { c => 3, -not => { b => 2, -not => { a => 1 } } } },
396         stmt  => " WHERE ( (NOT ( (NOT ( (NOT a = ?) AND b = ? )) AND c = ? )) ) ",
397         bind => [ 1, 2, 3 ],
398     },
399     {
400         where => { -not => { -bool => 'c', -not => { -not_bool => 'b', -not => { a => 1 } } } },
401         stmt  => " WHERE ( (NOT ( c AND (NOT ( (NOT a = ?) AND (NOT b) )) )) ) ",
402         bind => [ 1 ],
403     },
404     {
405         where => \"0",
406         stmt  => " WHERE ( 0 ) ",
407         bind => [ ],
408     },
409     {
410         where => { artistid => {} },
411         stmt => '',
412         bind => [ ],
413     },
414     {
415         where => [ -and => [ {}, [] ], -or => [ {}, [] ] ],
416         stmt => '',
417         bind => [ ],
418     },
419     {
420         where => { '=' => \'bozz' },
421         stmt => 'WHERE = bozz',
422         bind => [ ],
423     },
424 );
425
426 for my $case (@handle_tests) {
427     my $sql = SQL::Abstract->new;
428     my ($stmt, @bind);
429     lives_ok {
430       warnings_like {
431         ($stmt, @bind) = $sql->where($case->{where}, $case->{order});
432       } $case->{warns} || [];
433     };
434
435     is_same_sql_bind($stmt, \@bind, $case->{stmt}, $case->{bind})
436       || do { diag_where ( $case->{where} ); diag dumper($sql->_expand_expr($case->{where})) };
437 }
438
439 done_testing;