Failing nested modifier tests (the tests themselves are debatable - possible regressi...
[dbsrgits/SQL-Abstract.git] / t / 02where.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 # Make sure to test the examples, since having them break is somewhat
13 # embarrassing. :-(
14
15 my $not_stringifiable = bless {}, 'SQLA::NotStringifiable';
16
17 my @handle_tests = (
18     {
19         where => {
20             requestor => 'inna',
21             worker => ['nwiger', 'rcwe', 'sfz'],
22             status => { '!=', 'completed' }
23         },
24         order => [],
25         stmt => " WHERE ( requestor = ? AND status != ? AND ( ( worker = ? ) OR"
26               . " ( worker = ? ) OR ( worker = ? ) ) )",
27         bind => [qw/inna completed nwiger rcwe sfz/],
28     },
29
30     {
31         where  => [
32             status => 'completed',
33             user   => 'nwiger',
34         ],
35         stmt => " WHERE ( status = ? OR user = ? )",
36         bind => [qw/completed nwiger/],
37     },
38
39     {
40         where  => {
41             user   => 'nwiger',
42             status => 'completed'
43         },
44         order => [qw/ticket/],
45         stmt => " WHERE ( status = ? AND user = ? ) ORDER BY ticket",
46         bind => [qw/completed nwiger/],
47     },
48
49     {
50         where  => {
51             user   => 'nwiger',
52             status => { '!=', 'completed' }
53         },
54         order => [qw/ticket/],
55         stmt => " WHERE ( status != ? AND user = ? ) ORDER BY ticket",
56         bind => [qw/completed nwiger/],
57     },
58
59     {
60         where  => {
61             status   => 'completed',
62             reportid => { 'in', [567, 2335, 2] }
63         },
64         order => [],
65         stmt => " WHERE ( reportid IN ( ?, ?, ? ) AND status = ? )",
66         bind => [qw/567 2335 2 completed/],
67     },
68
69     {
70         where  => {
71             status   => 'completed',
72             reportid => { 'not in', [567, 2335, 2] }
73         },
74         order => [],
75         stmt => " WHERE ( reportid NOT IN ( ?, ?, ? ) AND status = ? )",
76         bind => [qw/567 2335 2 completed/],
77     },
78
79     {
80         where  => {
81             status   => 'completed',
82             completion_date => { 'between', ['2002-10-01', '2003-02-06'] },
83         },
84         order => \'ticket, requestor',
85 #LDNOTE: modified parentheses
86 #        stmt => " WHERE ( completion_date BETWEEN ? AND ? AND status = ? ) ORDER BY ticket, requestor",
87         stmt => " WHERE ( ( completion_date BETWEEN ? AND ? ) AND status = ? ) ORDER BY ticket, requestor",
88         bind => [qw/2002-10-01 2003-02-06 completed/],
89     },
90
91     {
92         where => [
93             {
94                 user   => 'nwiger',
95                 status => { 'in', ['pending', 'dispatched'] },
96             },
97             {
98                 user   => 'robot',
99                 status => 'unassigned',
100             },
101         ],
102         order => [],
103         stmt => " WHERE ( ( status IN ( ?, ? ) AND user = ? ) OR ( status = ? AND user = ? ) )",
104         bind => [qw/pending dispatched nwiger unassigned robot/],
105     },
106
107     {
108         where => {  
109             priority  => [ {'>', 3}, {'<', 1} ],
110             requestor => \'is not null',
111         },
112         order => 'priority',
113         stmt => " WHERE ( ( ( priority > ? ) OR ( priority < ? ) ) AND requestor is not null ) ORDER BY priority",
114         bind => [qw/3 1/],
115     },
116
117     {
118         where => {  
119             priority  => [ {'>', 3}, {'<', 1} ],
120             requestor => { '!=', undef }, 
121         },
122         order => [qw/a b c d e f g/],
123         stmt => " WHERE ( ( ( priority > ? ) OR ( priority < ? ) ) AND requestor IS NOT NULL )"
124               . " ORDER BY a, b, c, d, e, f, g",
125         bind => [qw/3 1/],
126     },
127
128     {
129         where => {  
130             priority  => { 'between', [1, 3] },
131             requestor => { 'like', undef }, 
132         },
133         order => \'requestor, ticket',
134 #LDNOTE: modified parentheses
135 #        stmt => " WHERE ( priority BETWEEN ? AND ? AND requestor IS NULL ) ORDER BY requestor, ticket",
136         stmt => " WHERE ( ( priority BETWEEN ? AND ? ) AND requestor IS NULL ) ORDER BY requestor, ticket",
137         bind => [qw/1 3/],
138     },
139
140
141     {
142         where => {  
143             id  => 1,
144             num => {
145              '<=' => 20,
146              '>'  => 10,
147             },
148         },
149 # LDNOTE : modified test below, just parentheses differ
150 #        stmt => " WHERE ( id = ? AND num <= ? AND num > ? )",
151         stmt => " WHERE ( id = ? AND ( num <= ? AND num > ? ) )",
152         bind => [qw/1 20 10/],
153     },
154
155     {
156         where => { foo => {-not_like => [7,8,9]},
157                    fum => {'like' => [qw/a b/]},
158                    nix => {'between' => [100,200] },
159                    nox => {'not between' => [150,160] },
160                    wix => {'in' => [qw/zz yy/]},
161                    wux => {'not_in'  => [qw/30 40/]}
162                  },
163 # LDNOTE: modified parentheses for BETWEEN (trivial).
164 # Also modified the logic of "not_like" (severe, same reasons as #14 in 00where.t)
165 #        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 ( ?, ? ) )",
166         stmt => " WHERE ( ( foo NOT LIKE ? AND foo NOT LIKE ? AND 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 ( ?, ? ) )",
167         bind => [7,8,9,'a','b',100,200,150,160,'zz','yy','30','40'],
168     },
169
170     {
171         where => {
172             id  => [],
173             bar => {'!=' => []},
174         },
175         stmt => " WHERE ( 1=1 AND 0=1 )",
176         bind => [],
177     },
178
179
180     {
181         where => {
182             foo => \["IN (?, ?)", 22, 33],
183             bar => [-and =>  \["> ?", 44], \["< ?", 55] ],
184         },
185         stmt => " WHERE ( (bar > ? AND bar < ?) AND foo IN (?, ?) )",
186         bind => [44, 55, 22, 33],
187     },
188    {
189        where => { -and => [{}, { 'me.id' => '1'}] },
190        stmt => " WHERE ( ( me.id = ? ) )",
191        bind => [ 1 ],
192    },
193
194    {
195        where => { foo => $not_stringifiable, },
196        stmt => " WHERE ( foo = ? )",
197        bind => [ $not_stringifiable ],
198    },
199
200    {
201        where => \[ 'foo = ?','bar' ],
202        stmt => " WHERE (foo = ?)",
203        bind => [ "bar" ],
204    },
205
206    {
207        where => [ \[ 'foo = ?','bar' ] ],
208        stmt => " WHERE (foo = ?)",
209        bind => [ "bar" ],
210    },
211 );
212
213 # add extra modifier tests, based on 2 outcomes
214 my $mod_and = {
215   stmt => 'WHERE ( foo = ? OR bar = ? ) AND baz = ? ',
216   bind => [qw/1 2 3/],
217 };
218 my $mod_or = {
219   stmt => 'WHERE ( foo = ? OR bar = ? ) OR baz = ?',
220   bind => [qw/1 2 3/],
221 };
222
223 push @handle_tests, (
224    # test modifiers within hashrefs
225    {
226       where => { -or => [
227         [ foo => 1, bar => 2 ],
228         baz => 3,
229       ]},
230       %$mod_or,
231    },
232    {
233       where => { -and => [
234         [ foo => 1, bar => 2 ],
235         baz => 3,
236       ]},
237       %$mod_and,
238    },
239
240    # test modifiers within arrayrefs
241    {
242       where => [ -or => [
243         [ foo => 1, bar => 2 ],
244         baz => 3,
245       ]],
246       %$mod_or,
247    },
248    {
249       where => [ -and => [
250         [ foo => 1, bar => 2 ],
251         baz => 3,
252       ]],
253       %$mod_and,
254    },
255
256    # test conflicting modifiers within hashrefs (last one should win?)
257    {
258       where => { -and => [ -or =>
259         [ foo => 1, bar => 2 ],
260         baz => 3,
261       ]},
262       %$mod_or,
263    },
264    {
265       where => { -or => [ -and =>
266         [ foo => 1, bar => 2 ],
267         baz => 3,
268       ]},
269       %$mod_and,
270    },
271
272    # test conflicting modifiers within arrayrefs (last one should win?)
273    {
274       where => [ -and => [ -or =>
275         [ foo => 1, bar => 2 ],
276         baz => 3,
277       ]],
278       %$mod_or,
279    },
280    {
281       where => [ -or => [ -and =>
282         [ foo => 1, bar => 2 ],
283         baz => 3,
284       ]],
285       %$mod_and,
286    },
287 );
288
289 plan tests => ( @handle_tests * 2 ) + 1;
290
291 for my $case (@handle_tests) {
292     local $Data::Dumper::Terse = 1;
293     my $sql = SQL::Abstract->new;
294     my($stmt, @bind);
295     lives_ok (sub { 
296       ($stmt, @bind) = $sql->where($case->{where}, $case->{order});
297       is_same_sql_bind($stmt, \@bind, $case->{stmt}, $case->{bind})
298         || diag "Search term:\n" . Dumper $case->{where};
299     });
300 }
301
302 dies_ok {
303     my $sql = SQL::Abstract->new;
304     $sql->where({ foo => { '>=' => [] }},);
305 };