7 use SQL::Abstract::Test import => ['is_same_sql_bind'];
12 my @in_between_tests = (
14 where => { x => { -between => [1, 2] } },
15 stmt => 'WHERE (x BETWEEN ? AND ?)',
17 test => '-between with two placeholders',
20 where => { x => { -between => [\"1", 2] } },
21 stmt => 'WHERE (x BETWEEN 1 AND ?)',
23 test => '-between with one literal sql arg and one placeholder',
26 where => { x => { -between => [1, \"2"] } },
27 stmt => 'WHERE (x BETWEEN ? AND 2)',
29 test => '-between with one placeholder and one literal sql arg',
32 where => { x => { -between => [\'current_date - 1', \'current_date - 0'] } },
33 stmt => 'WHERE (x BETWEEN current_date - 1 AND current_date - 0)',
35 test => '-between with two literal sql arguments',
38 where => { x => { -between => [ \['current_date - ?', 1], \['current_date - ?', 0] ] } },
39 stmt => 'WHERE (x BETWEEN current_date - ? AND current_date - ?)',
41 test => '-between with two literal sql arguments with bind',
44 where => { x => { -between => \['? AND ?', 1, 2] } },
45 stmt => 'WHERE (x BETWEEN ? AND ?)',
47 test => '-between with literal sql with placeholders (\["? AND ?", scalar, scalar])',
50 where => { x => { -between => \["'something' AND ?", 2] } },
51 stmt => "WHERE (x BETWEEN 'something' AND ?)",
53 test => '-between with literal sql with one literal arg and one placeholder (\["\'something\' AND ?", scalar])',
56 where => { x => { -between => \["? AND 'something'", 1] } },
57 stmt => "WHERE (x BETWEEN ? AND 'something')",
59 test => '-between with literal sql with one placeholder and one literal arg (\["? AND \'something\'", scalar])',
62 where => { x => { -between => \"'this' AND 'that'" } },
63 stmt => "WHERE (x BETWEEN 'this' AND 'that')",
65 test => '-between with literal sql with a literal (\"\'this\' AND \'that\'")',
69 start0 => { -between => [ 1, { -upper => 2 } ] },
70 start1 => { -between => \["? AND ?", 1, 2] },
71 start2 => { -between => \"lower(x) AND upper(y)" },
72 start3 => { -between => [
74 \["upper(?)", 'stuff' ],
78 ( start0 BETWEEN ? AND UPPER(?) )
79 AND ( start1 BETWEEN ? AND ? )
80 AND ( start2 BETWEEN lower(x) AND upper(y) )
81 AND ( start3 BETWEEN lower(x) AND upper(?) )
83 bind => [1, 2, 1, 2, 'stuff'],
84 test => '-between POD test',
87 args => { bindtype => 'columns' },
89 start0 => { -between => [ 1, { -upper => 2 } ] },
90 start1 => { -between => \["? AND ?", [ start1 => 1], [start1 => 2] ] },
91 start2 => { -between => \"lower(x) AND upper(y)" },
92 start3 => { -between => [
94 \["upper(?)", [ start3 => 'stuff'] ],
98 ( start0 BETWEEN ? AND UPPER(?) )
99 AND ( start1 BETWEEN ? AND ? )
100 AND ( start2 BETWEEN lower(x) AND upper(y) )
101 AND ( start3 BETWEEN lower(x) AND upper(?) )
108 [ start3 => 'stuff' ],
110 test => '-between POD test',
114 parenthesis_significant => 1,
115 where => { x => { -in => [ 1 .. 3] } },
116 stmt => "WHERE ( x IN (?, ?, ?) )",
118 test => '-in with an array of scalars',
121 parenthesis_significant => 1,
122 where => { x => { -in => [] } },
123 stmt => "WHERE ( 0=1 )",
125 test => '-in with an empty array',
128 parenthesis_significant => 1,
129 where => { x => { -in => \'( 1,2,lower(y) )' } },
130 stmt => "WHERE ( x IN ( 1,2,lower(y) ) )",
132 test => '-in with a literal scalarref',
135 parenthesis_significant => 1,
136 where => { x => { -in => \['( ( ?,?,lower(y) ) )', 1, 2] } },
137 stmt => "WHERE ( x IN ( ?,?,lower(y) ) )", # note that outer parens are opened even though literal was requested (RIBASUSHI)
139 test => '-in with a literal arrayrefref',
142 parenthesis_significant => 1,
144 status => { -in => \"(SELECT status_codes\nFROM states)" },
146 # failed to open outer parens on a multi-line query in 1.61 (semifor)
147 stmt => " WHERE ( status IN ( SELECT status_codes FROM states )) ",
149 test => '-in multi-line subquery test',
152 parenthesis_significant => 1,
154 customer => { -in => \[
155 'SELECT cust_id FROM cust WHERE balance > ?',
158 status => { -in => \'SELECT status_codes FROM states' },
162 customer IN ( SELECT cust_id FROM cust WHERE balance > ? )
163 AND status IN ( SELECT status_codes FROM states )
167 test => '-in POD test',
170 where => { x => { -in => [ \['LOWER(?)', 'A' ], \'LOWER(b)', { -lower => 'c' } ] } },
171 stmt => " WHERE ( x IN ( LOWER(?), LOWER(b), LOWER(?) ) )",
173 test => '-in with an array of function array refs with args',
176 where => { x => { -in => [ 1, undef ] } },
177 stmt => " WHERE ( x IN ( ?, ? ) )",
178 bind => [ 1, undef ],
179 test => '-in with undef as an element',
182 where => { x => { -in => [ 1, undef, 2, 3, undef ] } },
183 stmt => " WHERE ( x IN ( ?, ?, ?, ?, ? ) )",
184 bind => [ 1, undef, 2, 3, undef ],
185 test => '-in with undef as an element',
189 for my $case (@in_between_tests) {
191 local $TODO = $case->{todo} if $case->{todo};
192 local $SQL::Abstract::Test::parenthesis_significant = $case->{parenthesis_significant};
194 local $Data::Dumper::Terse = 1;
196 ok(!(my $e = exception {
199 local $SIG{__WARN__} = sub { push @w, @_ };
200 my $sql = SQL::Abstract->new ($case->{args} || {});
201 my ($stmt, @bind) = $sql->where($case->{where});
208 || diag "Search term:\n" . Dumper $case->{where};
209 is (@w, 0, $case->{test} || 'No warnings within in-between tests')
210 || diag join "\n", 'Emitted warnings:', @w;
211 }), "$case->{test} doesn't die");
212 diag "Error: $e\n Search term:\n".Dumper($case->{where}) if $e;