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