0c28faf2eb67b2ddf4a433ec441bf39f49722840
[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 #
87 # acked by RIBASUSHI
88         stmt => "WHERE ( ( completion_date BETWEEN ? AND ? ) AND status = ? ) ORDER BY ticket, requestor",
89         bind => [qw/2002-10-01 2003-02-06 completed/],
90     },
91
92     {
93         where => [
94             {
95                 user   => 'nwiger',
96                 status => { 'in', ['pending', 'dispatched'] },
97             },
98             {
99                 user   => 'robot',
100                 status => 'unassigned',
101             },
102         ],
103         order => [],
104         stmt => " WHERE ( ( status IN ( ?, ? ) AND user = ? ) OR ( status = ? AND user = ? ) )",
105         bind => [qw/pending dispatched nwiger unassigned robot/],
106     },
107
108     {
109         where => {  
110             priority  => [ {'>', 3}, {'<', 1} ],
111             requestor => \'is not null',
112         },
113         order => 'priority',
114         stmt => " WHERE ( ( ( priority > ? ) OR ( priority < ? ) ) AND requestor is not null ) ORDER BY priority",
115         bind => [qw/3 1/],
116     },
117
118     {
119         where => {  
120             priority  => [ {'>', 3}, {'<', 1} ],
121             requestor => { '!=', undef }, 
122         },
123         order => [qw/a b c d e f g/],
124         stmt => " WHERE ( ( ( priority > ? ) OR ( priority < ? ) ) AND requestor IS NOT NULL )"
125               . " ORDER BY a, b, c, d, e, f, g",
126         bind => [qw/3 1/],
127     },
128
129     {
130         where => {  
131             priority  => { 'between', [1, 3] },
132             requestor => { 'like', undef }, 
133         },
134         order => \'requestor, ticket',
135 #LDNOTE: modified parentheses
136 #
137 # acked by RIBASUSHI
138         stmt => " WHERE ( ( priority BETWEEN ? AND ? ) AND requestor IS NULL ) ORDER BY requestor, ticket",
139         bind => [qw/1 3/],
140     },
141
142
143     {
144         where => {  
145             id  => 1,
146             num => {
147              '<=' => 20,
148              '>'  => 10,
149             },
150         },
151 # LDNOTE : modified test below, just parentheses differ
152 #
153 # acked by RIBASUSHI
154         stmt => " WHERE ( id = ? AND ( num <= ? AND num > ? ) )",
155         bind => [qw/1 20 10/],
156     },
157
158     {
159         where => { foo => {-not_like => [7,8,9]},
160                    fum => {'like' => [qw/a b/]},
161                    nix => {'between' => [100,200] },
162                    nox => {'not between' => [150,160] },
163                    wix => {'in' => [qw/zz yy/]},
164                    wux => {'not_in'  => [qw/30 40/]}
165                  },
166         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 ( ?, ? ) )",
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_or_and = {
215   stmt => 'WHERE ( foo = ? OR bar = ? ) AND baz = ? ',
216   bind => [qw/1 2 3/],
217 };
218 my $mod_or_or = {
219   stmt => 'WHERE ( foo = ? OR bar = ? ) OR baz = ?',
220   bind => [qw/1 2 3/],
221 };
222 my $mod_and_or = {
223   stmt => 'WHERE ( foo = ? AND bar = ? ) OR baz = ?',
224   bind => [qw/1 2 3/],
225 };
226
227 push @handle_tests, (
228    # test modifiers within hashrefs
229    {
230       where => { -or => [
231         [ foo => 1, bar => 2 ],
232         baz => 3,
233       ]},
234       %$mod_or_or,
235    },
236    {
237       where => { -and => [
238         [ foo => 1, bar => 2 ],
239         baz => 3,
240       ]},
241       %$mod_or_and,
242    },
243
244    # test modifiers within arrayrefs
245    {
246       where => [ -or => [
247         [ foo => 1, bar => 2 ],
248         baz => 3,
249       ]],
250       %$mod_or_or,
251    },
252    {
253       where => [ -and => [
254         [ foo => 1, bar => 2 ],
255         baz => 3,
256       ]],
257       %$mod_or_and,
258    },
259
260    # test ambiguous modifiers within hashrefs (op extends to to immediate RHS only)
261    {
262       where => { -and => [ -or =>
263         [ foo => 1, bar => 2 ],
264         baz => 3,
265       ]},
266       %$mod_or_and,
267    },
268    {
269       where => { -or => [ -and =>
270         [ foo => 1, bar => 2 ],
271         baz => 3,
272       ]},
273       %$mod_and_or,
274    },
275
276    # test ambiguous modifiers within arrayrefs (op extends to to immediate RHS only)
277    {
278       where => [ -and => [ -or =>
279         [ foo => 1, bar => 2 ],
280         baz => 3,
281       ]],
282       %$mod_or_and,
283    },
284    {
285       where => [ -or => [ -and =>
286         [ foo => 1, bar => 2 ],
287         baz => 3,
288       ]],
289       %$mod_and_or,
290    },
291 );
292
293 plan tests => ( @handle_tests * 2 ) + 1;
294
295 for my $case (@handle_tests) {
296     local $Data::Dumper::Terse = 1;
297     my $sql = SQL::Abstract->new;
298     my($stmt, @bind);
299     lives_ok (sub { 
300       ($stmt, @bind) = $sql->where($case->{where}, $case->{order});
301       is_same_sql_bind($stmt, \@bind, $case->{stmt}, $case->{bind})
302         || diag "Search term:\n" . Dumper $case->{where};
303     });
304 }
305
306 dies_ok {
307     my $sql = SQL::Abstract->new;
308     $sql->where({ foo => { '>=' => [] }},);
309 };