1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217
|
#!/usr/bin/perl
use strict;
use warnings;
use Test::More;
use Test::Exception;
use SQL::Abstract::Test import => ['is_same_sql_bind'];
use Data::Dumper;
use SQL::Abstract;
my @in_between_tests = (
{
where => { x => { -between => [1, 2] } },
stmt => 'WHERE (x BETWEEN ? AND ?)',
bind => [qw/1 2/],
test => '-between with two placeholders',
},
{
where => { x => { -between => [\"1", 2] } },
stmt => 'WHERE (x BETWEEN 1 AND ?)',
bind => [qw/2/],
test => '-between with one literal sql arg and one placeholder',
},
{
where => { x => { -between => [1, \"2"] } },
stmt => 'WHERE (x BETWEEN ? AND 2)',
bind => [qw/1/],
test => '-between with one placeholder and one literal sql arg',
},
{
where => { x => { -between => [\'current_date - 1', \'current_date - 0'] } },
stmt => 'WHERE (x BETWEEN current_date - 1 AND current_date - 0)',
bind => [],
test => '-between with two literal sql arguments',
},
{
where => { x => { -between => [ \['current_date - ?', 1], \['current_date - ?', 0] ] } },
stmt => 'WHERE (x BETWEEN current_date - ? AND current_date - ?)',
bind => [1, 0],
test => '-between with two literal sql arguments with bind',
},
{
where => { x => { -between => \['? AND ?', 1, 2] } },
stmt => 'WHERE (x BETWEEN ? AND ?)',
bind => [1,2],
test => '-between with literal sql with placeholders (\["? AND ?", scalar, scalar])',
},
{
where => { x => { -between => \["'something' AND ?", 2] } },
stmt => "WHERE (x BETWEEN 'something' AND ?)",
bind => [2],
test => '-between with literal sql with one literal arg and one placeholder (\["\'something\' AND ?", scalar])',
},
{
where => { x => { -between => \["? AND 'something'", 1] } },
stmt => "WHERE (x BETWEEN ? AND 'something')",
bind => [1],
test => '-between with literal sql with one placeholder and one literal arg (\["? AND \'something\'", scalar])',
},
{
where => { x => { -between => \"'this' AND 'that'" } },
stmt => "WHERE (x BETWEEN 'this' AND 'that')",
bind => [],
test => '-between with literal sql with a literal (\"\'this\' AND \'that\'")',
},
{
where => {
start0 => { -between => [ 1, { -upper => 2 } ] },
start1 => { -between => \["? AND ?", 1, 2] },
start2 => { -between => \"lower(x) AND upper(y)" },
start3 => { -between => [
\"lower(x)",
\["upper(?)", 'stuff' ],
] },
},
stmt => "WHERE (
( start0 BETWEEN ? AND UPPER ? )
AND ( start1 BETWEEN ? AND ? )
AND ( start2 BETWEEN lower(x) AND upper(y) )
AND ( start3 BETWEEN lower(x) AND upper(?) )
)",
bind => [1, 2, 1, 2, 'stuff'],
test => '-between POD test',
},
{
args => { bindtype => 'columns' },
where => {
start0 => { -between => [ 1, { -upper => 2 } ] },
start1 => { -between => \["? AND ?", [ start1 => 1], [start1 => 2] ] },
start2 => { -between => \"lower(x) AND upper(y)" },
start3 => { -between => [
\"lower(x)",
\["upper(?)", [ start3 => 'stuff'] ],
] },
},
stmt => "WHERE (
( start0 BETWEEN ? AND UPPER ? )
AND ( start1 BETWEEN ? AND ? )
AND ( start2 BETWEEN lower(x) AND upper(y) )
AND ( start3 BETWEEN lower(x) AND upper(?) )
)",
bind => [
[ start0 => 1 ],
[ start0 => 2 ],
[ start1 => 1 ],
[ start1 => 2 ],
[ start3 => 'stuff' ],
],
test => '-between POD test',
},
{
parenthesis_significant => 1,
where => { x => { -in => [ 1 .. 3] } },
stmt => "WHERE ( x IN (?, ?, ?) )",
bind => [ 1 .. 3],
test => '-in with an array of scalars',
},
{
parenthesis_significant => 1,
where => { x => { -in => [] } },
stmt => "WHERE ( 0=1 )",
bind => [],
test => '-in with an empty array',
},
{
parenthesis_significant => 1,
where => { x => { -in => \'( 1,2,lower(y) )' } },
stmt => "WHERE ( x IN ( 1,2,lower(y) ) )",
bind => [],
test => '-in with a literal scalarref',
},
{
parenthesis_significant => 1,
where => { x => { -in => \['( ( ?,?,lower(y) ) )', 1, 2] } },
stmt => "WHERE ( x IN ( ?,?,lower(y) ) )", # note that outer parens are opened even though literal was requested (RIBASUSHI)
bind => [1, 2],
test => '-in with a literal arrayrefref',
},
{
parenthesis_significant => 1,
where => {
status => { -in => \"(SELECT status_codes\nFROM states)" },
},
# failed to open outer parens on a multi-line query in 1.61 (semifor)
stmt => " WHERE ( status IN ( SELECT status_codes FROM states )) ",
bind => [],
test => '-in multi-line subquery test',
},
{
parenthesis_significant => 1,
where => {
customer => { -in => \[
'SELECT cust_id FROM cust WHERE balance > ?',
2000,
]},
status => { -in => \'SELECT status_codes FROM states' },
},
stmt => "
WHERE ((
customer IN ( SELECT cust_id FROM cust WHERE balance > ? )
AND status IN ( SELECT status_codes FROM states )
))
",
bind => [2000],
test => '-in POD test',
},
{
where => { x => { -in => [ \['LOWER(?)', 'A' ], \'LOWER(b)', { -lower => 'c' } ] } },
stmt => " WHERE ( x IN ( LOWER(?), LOWER(b), LOWER ? ) )",
bind => [qw/A c/],
test => '-in with an array of function array refs with args',
},
{
where => { x => { -in => [ 1, undef ] } },
stmt => " WHERE ( x IN ( ?, NULL ) )",
bind => [ 1 ],
test => '-in with undef as an element',
},
{
where => { x => { -in => [ 1, undef, 2, 3, undef ] } },
stmt => " WHERE ( x IN ( ?, NULL, ?, ?, NULL ) )",
bind => [ 1, 2, 3 ],
test => '-in with undef as an element',
},
);
plan tests => @in_between_tests*4;
for my $case (@in_between_tests) {
TODO: {
local $TODO = $case->{todo} if $case->{todo};
local $SQL::Abstract::Test::parenthesis_significant = $case->{parenthesis_significant};
local $Data::Dumper::Terse = 1;
lives_ok (sub {
my @w;
local $SIG{__WARN__} = sub { push @w, @_ };
my $sql = SQL::Abstract->new ($case->{args} || {});
lives_ok (sub {
my ($stmt, @bind) = $sql->where($case->{where});
is_same_sql_bind(
$stmt,
\@bind,
$case->{stmt},
$case->{bind},
)
|| diag "Search term:\n" . Dumper $case->{where};
});
is (@w, 0, $case->{test} || 'No warnings within in-between tests')
|| diag join "\n", 'Emitted warnings:', @w;
}, "$case->{test} doesn't die");
}
}
|