6 use SQL::Abstract::Test import => [qw(is_same_sql_bind diag_where dumper) ];
10 my $not_stringifiable = bless {}, 'SQLA::NotStringifiable';
22 worker => ['nwiger', 'rcwe', 'sfz'],
23 status => { '!=', 'completed' }
26 stmt => " WHERE ( requestor = ? AND status != ? AND ( ( worker = ? ) OR"
27 . " ( worker = ? ) OR ( worker = ? ) ) )",
28 bind => [qw/inna completed nwiger rcwe sfz/],
33 status => 'completed',
36 stmt => " WHERE ( status = ? OR user = ? )",
37 bind => [qw/completed nwiger/],
45 order => [qw/ticket/],
46 stmt => " WHERE ( status = ? AND user = ? ) ORDER BY ticket",
47 bind => [qw/completed nwiger/],
53 status => { '!=', 'completed' }
55 order => [qw/ticket/],
56 stmt => " WHERE ( status != ? AND user = ? ) ORDER BY ticket",
57 bind => [qw/completed nwiger/],
62 status => 'completed',
63 reportid => { 'in', [567, 2335, 2] }
66 stmt => " WHERE ( reportid IN ( ?, ?, ? ) AND status = ? )",
67 bind => [qw/567 2335 2 completed/],
72 status => 'completed',
73 reportid => { 'not in', [567, 2335, 2] }
76 stmt => " WHERE ( reportid NOT IN ( ?, ?, ? ) AND status = ? )",
77 bind => [qw/567 2335 2 completed/],
82 status => 'completed',
83 completion_date => { 'between', ['2002-10-01', '2003-02-06'] },
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/],
94 status => { 'in', ['pending', 'dispatched'] },
98 status => 'unassigned',
102 stmt => " WHERE ( ( status IN ( ?, ? ) AND user = ? ) OR ( status = ? AND user = ? ) )",
103 bind => [qw/pending dispatched nwiger unassigned robot/],
108 priority => [ {'>', 3}, {'<', 1} ],
109 requestor => \'is not null',
112 stmt => " WHERE ( ( ( priority > ? ) OR ( priority < ? ) ) AND requestor is not null ) ORDER BY priority",
118 requestor => { '!=', ['-and', undef, ''] },
120 stmt => " WHERE ( requestor IS NOT NULL AND requestor != ? )",
126 priority => [ {'>', 3}, {'<', 1} ],
127 requestor => { '!=', undef },
129 order => [qw/a b c d e f g/],
130 stmt => " WHERE ( ( ( priority > ? ) OR ( priority < ? ) ) AND requestor IS NOT NULL )"
131 . " ORDER BY a, b, c, d, e, f, g",
137 priority => { 'between', [1, 3] },
138 requestor => { 'like', undef },
140 order => \'requestor, ticket',
141 stmt => " WHERE ( ( priority BETWEEN ? AND ? ) AND requestor IS NULL ) ORDER BY requestor, ticket",
143 warns => qr/Supplying an undefined argument to 'LIKE' is deprecated/,
155 stmt => " WHERE ( id = ? AND ( num <= ? AND num > ? ) )",
156 bind => [qw/1 20 10/],
160 where => { foo => {-not_like => [7,8,9]},
161 fum => {'like' => [qw/a b/]},
162 nix => {'between' => [100,200] },
163 nox => {'not between' => [150,160] },
164 wix => {'in' => [qw/zz yy/]},
165 wux => {'not_in' => [qw/30 40/]}
167 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 ( ?, ? ) )",
168 bind => [7,8,9,'a','b',100,200,150,160,'zz','yy','30','40'],
169 warns => qr/\QA multi-element arrayref as an argument to the inequality op 'NOT LIKE' is technically equivalent to an always-true 1=1/,
176 stmt => " WHERE ( 1=1 )",
184 stmt => " WHERE ( 0=1 )",
191 foo => \["IN (?, ?)", 22, 33],
192 bar => [-and => \["> ?", 44], \["< ?", 55] ],
194 stmt => " WHERE ( (bar > ? AND bar < ?) AND foo IN (?, ?) )",
195 bind => [44, 55, 22, 33],
203 -and => [ workhrs => {'>', 20}, geo => 'ASIA' ],
204 -or => { workhrs => {'<', 50}, geo => 'EURO' },
208 stmt => "WHERE ( user = ? AND (
209 ( workhrs > ? AND geo = ? )
210 OR ( geo = ? OR workhrs < ? )
212 bind => [qw/nwiger 20 ASIA EURO 50/],
216 where => { -and => [{}, { 'me.id' => '1'}] },
217 stmt => " WHERE ( ( me.id = ? ) )",
222 where => { foo => $not_stringifiable, },
223 stmt => " WHERE ( foo = ? )",
224 bind => [ $not_stringifiable ],
228 where => \[ 'foo = ?','bar' ],
229 stmt => " WHERE (foo = ?)",
234 where => [ \[ 'foo = ?','bar' ] ],
235 stmt => " WHERE (foo = ?)",
240 where => { -bool => \'function(x)' },
241 stmt => " WHERE function(x)",
246 where => { -bool => 'foo' },
247 stmt => " WHERE foo",
252 where => { -and => [-bool => 'foo', -bool => 'bar'] },
253 stmt => " WHERE foo AND bar",
258 where => { -or => [-bool => 'foo', -bool => 'bar'] },
259 stmt => " WHERE foo OR bar",
264 where => { -not_bool => \'function(x)' },
265 stmt => " WHERE NOT function(x)",
270 where => { -not_bool => 'foo' },
271 stmt => " WHERE NOT foo",
276 where => { -and => [-not_bool => 'foo', -not_bool => 'bar'] },
277 stmt => " WHERE (NOT foo) AND (NOT bar)",
282 where => { -or => [-not_bool => 'foo', -not_bool => 'bar'] },
283 stmt => " WHERE (NOT foo) OR (NOT bar)",
288 where => { -bool => \['function(?)', 20] },
289 stmt => " WHERE function(?)",
294 where => { -not_bool => \['function(?)', 20] },
295 stmt => " WHERE NOT function(?)",
300 where => { -bool => { a => 1, b => 2} },
301 stmt => " WHERE a = ? AND b = ?",
306 where => { -bool => [ a => 1, b => 2] },
307 stmt => " WHERE a = ? OR b = ?",
312 where => { -not_bool => { a => 1, b => 2} },
313 stmt => " WHERE NOT (a = ? AND b = ?)",
318 where => { -not_bool => [ a => 1, b => 2] },
319 stmt => " WHERE NOT ( a = ? OR b = ? )",
323 # Op against internal function
325 where => { bool1 => { '=' => { -not_bool => 'bool2' } } },
326 stmt => " WHERE ( bool1 = (NOT bool2) )",
330 where => { -not_bool => { -not_bool => { -not_bool => 'bool2' } } },
331 stmt => " WHERE ( NOT ( NOT ( NOT bool2 ) ) )",
335 # Op against random functions (these two are oracle-specific)
337 where => { timestamp => { '!=' => { -trunc => { -year => \'sysdate' } } } },
338 stmt => " WHERE ( timestamp != TRUNC (YEAR sysdate) )",
342 where => { timestamp => { '>=' => { -to_date => '2009-12-21 00:00:00' } } },
343 stmt => " WHERE ( timestamp >= TO_DATE ? )",
344 bind => ['2009-12-21 00:00:00'],
347 # Legacy function specs
349 where => { ip => {'<<=' => '127.0.0.1/32' } },
350 stmt => "WHERE ( ip <<= ? )",
351 bind => ['127.0.0.1/32'],
354 where => { foo => { 'GLOB' => '*str*' } },
355 stmt => " WHERE foo GLOB ? ",
359 where => { foo => { 'REGEXP' => 'bar|baz' } },
360 stmt => " WHERE foo REGEXP ? ",
361 bind => [ 'bar|baz' ],
367 where => { -not => { a => 1 } },
368 stmt => " WHERE ( (NOT a = ?) ) ",
372 where => { a => 1, -not => { b => 2 } },
373 stmt => " WHERE ( ( (NOT b = ?) AND a = ? ) ) ",
377 where => { -not => { a => 1, b => 2, c => 3 } },
378 stmt => " WHERE ( (NOT ( a = ? AND b = ? AND c = ? )) ) ",
382 where => { -not => [ a => 1, b => 2, c => 3 ] },
383 stmt => " WHERE ( (NOT ( a = ? OR b = ? OR c = ? )) ) ",
387 where => { -not => { c => 3, -not => { b => 2, -not => { a => 1 } } } },
388 stmt => " WHERE ( (NOT ( (NOT ( (NOT a = ?) AND b = ? )) AND c = ? )) ) ",
392 where => { -not => { -bool => 'c', -not => { -not_bool => 'b', -not => { a => 1 } } } },
393 stmt => " WHERE ( (NOT ( c AND (NOT ( (NOT a = ?) AND (NOT b) )) )) ) ",
398 stmt => " WHERE ( 0 ) ",
402 where => { artistid => {} },
408 for my $case (@handle_tests) {
409 my $sql = SQL::Abstract->new;
413 ($stmt, @bind) = $sql->where($case->{where}, $case->{order});
414 } $case->{warns} || [];
417 is_same_sql_bind($stmt, \@bind, $case->{stmt}, $case->{bind})
418 || do { diag_where ( $case->{where} ); diag dumper($sql->_expand_expr($case->{where})) };