Fix is_* in test to return the correct test value
[scpubgit/Q-Branch.git] / t / 02where.t
CommitLineData
41751122 1#!/usr/bin/perl
32eab2da 2
3use strict;
41751122 4use warnings;
5use Test::More;
8a68b5be 6use Test::Exception;
5aad8cf3 7use SQL::Abstract::Test import => ['is_same_sql_bind'];
fffe6900 8
32eab2da 9use SQL::Abstract;
10
11# Make sure to test the examples, since having them break is somewhat
12# embarrassing. :-(
13
5ebfe5f2 14my $not_stringifiable = bless {}, 'SQLA::NotStringifiable';
ba566dc3 15
bab725ce 16my@x=(
474e3335 17);my @handle_tests = (
32eab2da 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 {
73a67e2c 31 where => [
32 status => 'completed',
33 user => 'nwiger',
34 ],
35 stmt => " WHERE ( status = ? OR user = ? )",
36 bind => [qw/completed nwiger/],
37 },
38
39 {
32eab2da 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',
96449e8e 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",
32eab2da 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',
96449e8e 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",
32eab2da 137 bind => [qw/1 3/],
138 },
139
140
141 {
142 where => {
143 id => 1,
144 num => {
145 '<=' => 20,
146 '>' => 10,
147 },
148 },
96449e8e 149# LDNOTE : modified test below, just parentheses differ
150# stmt => " WHERE ( id = ? AND num <= ? AND num > ? )",
151 stmt => " WHERE ( id = ? AND ( num <= ? AND num > ? ) )",
32eab2da 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 },
96449e8e 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 ( ?, ? ) )",
32eab2da 167 bind => [7,8,9,'a','b',100,200,150,160,'zz','yy','30','40'],
168 },
169
8a68b5be 170 {
171 where => {
172 id => [],
173 bar => {'!=' => []},
174 },
175 stmt => " WHERE ( 1=1 AND 0=1 )",
176 bind => [],
177 },
178
96449e8e 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 },
4b7b6026 188 {
189 where => { -and => [{}, { 'me.id' => '1'}] },
190 stmt => " WHERE ( ( me.id = ? ) )",
191 bind => [ 1 ],
192 },
193
fffe6900 194 {
ba566dc3 195 where => { foo => $not_stringifiable, },
196 stmt => " WHERE ( foo = ? )",
197 bind => [ $not_stringifiable ],
198 },
199
73a67e2c 200 {
474e3335 201 where => \[ 'foo = ?','bar' ],
73a67e2c 202 stmt => " WHERE (foo = ?)",
203 bind => [ "bar" ],
204 },
205
206 {
474e3335 207 where => [ \[ 'foo = ?','bar' ] ],
73a67e2c 208 stmt => " WHERE (foo = ?)",
209 bind => [ "bar" ],
210 },
474e3335 211);my@x2=(
32eab2da 212);
213
6dcf723c 214
73a67e2c 215plan tests => ( @handle_tests * 2 ) + 1;
6dcf723c 216
8a68b5be 217for my $case (@handle_tests) {
32eab2da 218 my $sql = SQL::Abstract->new;
73a67e2c 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 });
32eab2da 224}
225
8a68b5be 226dies_ok {
227 my $sql = SQL::Abstract->new;
228 $sql->where({ foo => { '>=' => [] }},);
fffe6900 229};