Fix is_* in test to return the correct test value
[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 SQL::Abstract;
10
11 # Make sure to test the examples, since having them break is somewhat
12 # embarrassing. :-(
13
14 my $not_stringifiable = bless {}, 'SQLA::NotStringifiable';
15
16 my@x=(
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 );my@x2=(
212 );
213
214
215 plan tests => ( @handle_tests * 2 ) + 1;
216
217 for my $case (@handle_tests) {
218     my $sql = SQL::Abstract->new;
219     my($stmt, @bind);
220     lives_ok (sub { 
221       ($stmt, @bind) = $sql->where($case->{where}, $case->{order});
222       is_same_sql_bind($stmt, \@bind, $case->{stmt}, $case->{bind});
223     });
224 }
225
226 dies_ok {
227     my $sql = SQL::Abstract->new;
228     $sql->where({ foo => { '>=' => [] }},);
229 };