-
Notifications
You must be signed in to change notification settings - Fork 122
/
whereclause_test.go
332 lines (272 loc) · 8.53 KB
/
whereclause_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
// Copyright 2018 Huan Du. All rights reserved.
// Licensed under the MIT license that can be found in the LICENSE file.
package sqlbuilder
import (
"fmt"
"testing"
"github.com/huandu/go-assert"
)
func ExampleWhereClause() {
// Build a SQL to select a user from database.
sb := Select("name", "level").From("users")
sb.Where(
sb.Equal("id", 1234),
)
sql, args := sb.Build()
fmt.Println(sql)
fmt.Println(args)
// Query database with the sql and update this user's level...
ub := Update("users")
ub.Set(
ub.Add("level", 10),
)
// The WHERE clause of UPDATE should be the same as the WHERE clause of SELECT.
ub.WhereClause = sb.WhereClause
sql, args = ub.Build()
fmt.Println(sql)
fmt.Println(args)
// Output:
// SELECT name, level FROM users WHERE id = ?
// [1234]
// UPDATE users SET level = level + ? WHERE id = ?
// [10 1234]
}
func ExampleWhereClause_sharedAmongBuilders() {
// A WhereClause can be shared among builders.
// However, as it's not thread-safe, don't use it in a concurrent environment.
sb1 := Select("level").From("users")
sb2 := Select("status").From("users")
// Share the same WhereClause between sb1 and sb2.
whereClause := NewWhereClause()
sb1.WhereClause = whereClause
sb2.WhereClause = whereClause
// The Where method in sb1 and sb2 will update the same WhereClause.
// When we call sb1.Where(), the WHERE clause in sb2 will also be updated.
sb1.Where(
sb1.Like("name", "Charmy%"),
)
// We can get a copy of the WhereClause.
// The copy is independent from the original.
sb3 := Select("name").From("users")
sb3.WhereClause = CopyWhereClause(whereClause)
// Adding more expressions to sb1 and sb2 will not affect sb3.
sb2.Where(
sb2.In("status", 1, 2, 3),
)
// Adding more expressions to sb3 will not affect sb1 and sb2.
sb3.Where(
sb3.GreaterEqualThan("level", 10),
)
sql1, args1 := sb1.Build()
sql2, args2 := sb2.Build()
sql3, args3 := sb3.Build()
fmt.Println(sql1)
fmt.Println(args1)
fmt.Println(sql2)
fmt.Println(args2)
fmt.Println(sql3)
fmt.Println(args3)
// Output:
// SELECT level FROM users WHERE name LIKE ? AND status IN (?, ?, ?)
// [Charmy% 1 2 3]
// SELECT status FROM users WHERE name LIKE ? AND status IN (?, ?, ?)
// [Charmy% 1 2 3]
// SELECT name FROM users WHERE name LIKE ? AND level >= ?
// [Charmy% 10]
}
func ExampleWhereClause_clearWhereClause() {
db := DeleteFrom("users")
db.Where(
db.GreaterThan("level", 10),
)
sql, args := db.Build()
fmt.Println(sql)
fmt.Println(args)
// Clear WHERE clause.
db.WhereClause = nil
sql, args = db.Build()
fmt.Println(sql)
fmt.Println(args)
db.Where(
db.Equal("id", 1234),
)
sql, args = db.Build()
fmt.Println(sql)
fmt.Println(args)
// Output:
// DELETE FROM users WHERE level > ?
// [10]
// DELETE FROM users
// []
// DELETE FROM users WHERE id = ?
// [1234]
}
func ExampleWhereClause_AddWhereExpr() {
// WhereClause can be used as a standalone builder to build WHERE clause.
// It's recommended to use it with Cond.
whereClause := NewWhereClause()
cond := NewCond()
whereClause.AddWhereExpr(
cond.Args,
cond.In("name", "Charmy", "Huan"),
cond.LessEqualThan("level", 10),
)
// Set the flavor of the WhereClause to PostgreSQL.
whereClause.SetFlavor(PostgreSQL)
sql, args := whereClause.Build()
fmt.Println(sql)
fmt.Println(args)
// Use this WhereClause in another builder.
sb := MySQL.NewSelectBuilder()
sb.Select("name", "level").From("users")
sb.WhereClause = whereClause
// The flavor of sb overrides the flavor of the WhereClause.
sql, args = sb.Build()
fmt.Println(sql)
fmt.Println(args)
// Output:
// WHERE name IN ($1, $2) AND level <= $3
// [Charmy Huan 10]
// SELECT name, level FROM users WHERE name IN (?, ?) AND level <= ?
// [Charmy Huan 10]
}
func ExampleWhereClause_AddWhereClause() {
sb := Select("level").From("users")
sb.Where(
sb.Equal("id", 1234),
)
sql, args := sb.Build()
fmt.Println(sql)
fmt.Println(args)
ub := Update("users")
ub.Set(
ub.Add("level", 10),
)
// Copy the WHERE clause of sb into ub and add more expressions.
ub.AddWhereClause(sb.WhereClause).Where(
ub.Equal("deleted", 0),
)
sql, args = ub.Build()
fmt.Println(sql)
fmt.Println(args)
// Output:
// SELECT level FROM users WHERE id = ?
// [1234]
// UPDATE users SET level = level + ? WHERE id = ? AND deleted = ?
// [10 1234 0]
}
func TestWhereClauseSharedInstances(t *testing.T) {
a := assert.New(t)
sb := Select("*").From("t")
ub := Update("t").Set("foo = 1")
db := DeleteFrom("t")
whereClause := NewWhereClause()
sb.WhereClause = whereClause
ub.WhereClause = whereClause
db.WhereClause = whereClause
sb.Where(sb.Equal("id", 123))
a.Equal(sb.String(), "SELECT * FROM t WHERE id = ?")
a.Equal(ub.String(), "UPDATE t SET foo = 1 WHERE id = ?")
a.Equal(db.String(), "DELETE FROM t WHERE id = ?")
// Add more WhereClause.
cond := NewCond()
moreWhereClause := NewWhereClause().AddWhereExpr(
cond.Args,
cond.GreaterEqualThan("credit", 100),
)
// The moreWhereClause is added to whereClause.
// All builders sharing the same WhereClause will have the same new cluase.
sb.AddWhereClause(moreWhereClause)
a.Equal(sb.String(), "SELECT * FROM t WHERE id = ? AND credit >= ?")
a.Equal(ub.String(), "UPDATE t SET foo = 1 WHERE id = ? AND credit >= ?")
a.Equal(db.String(), "DELETE FROM t WHERE id = ? AND credit >= ?")
// Copied WhereClause is independent from the original.
ub.WhereClause = CopyWhereClause(whereClause)
ub.Where(ub.GreaterEqualThan("level", 10))
db.Where(db.In("status", 1, 2))
a.Equal(sb.String(), "SELECT * FROM t WHERE id = ? AND credit >= ? AND status IN (?, ?)")
a.Equal(ub.String(), "UPDATE t SET foo = 1 WHERE id = ? AND credit >= ? AND level >= ?")
a.Equal(db.String(), "DELETE FROM t WHERE id = ? AND credit >= ? AND status IN (?, ?)")
// Clear the WhereClause and add new where clause and expressions.
db.WhereClause = nil
db.AddWhereClause(ub.WhereClause)
db.AddWhereExpr(db.Args, db.Equal("deleted", 0))
a.Equal(sb.String(), "SELECT * FROM t WHERE id = ? AND credit >= ? AND status IN (?, ?)")
a.Equal(ub.String(), "UPDATE t SET foo = 1 WHERE id = ? AND credit >= ? AND level >= ?")
a.Equal(db.String(), "DELETE FROM t WHERE id = ? AND credit >= ? AND level >= ? AND deleted = ?")
// Nested WhereClause.
ub.Where(ub.NotIn("id", sb))
sb.Where(sb.NotEqual("flag", "normal"))
a.Equal(ub.String(), "UPDATE t SET foo = 1 WHERE id = ? AND credit >= ? AND level >= ? AND id NOT IN (SELECT * FROM t WHERE id = ? AND credit >= ? AND status IN (?, ?) AND flag <> ?)")
}
func TestEmptyWhereExpr(t *testing.T) {
a := assert.New(t)
var emptyExpr []string
sb := Select("*").From("t").Where(emptyExpr...)
ub := Update("t").Set("foo = 1").Where(emptyExpr...)
db := DeleteFrom("t").Where(emptyExpr...)
a.Equal(sb.String(), "SELECT * FROM t")
a.Equal(ub.String(), "UPDATE t SET foo = 1")
a.Equal(db.String(), "DELETE FROM t")
}
func TestEmptyStringsWhere(t *testing.T) {
a := assert.New(t)
emptyExpr := []string{"", "", ""}
sb := Select("*").From("t").Where(emptyExpr...)
ub := Update("t").Set("foo = 1").Where(emptyExpr...)
db := DeleteFrom("t").Where(emptyExpr...)
a.Equal(sb.String(), "SELECT * FROM t")
a.Equal(ub.String(), "UPDATE t SET foo = 1")
a.Equal(db.String(), "DELETE FROM t")
}
func TestEmptyAddWhereExpr(t *testing.T) {
a := assert.New(t)
var emptyExpr []string
sb := Select("*").From("t")
ub := Update("t").Set("foo = 1")
db := DeleteFrom("t")
cond := NewCond()
whereClause := NewWhereClause().AddWhereExpr(
cond.Args,
emptyExpr...,
)
sb.AddWhereClause(whereClause)
ub.AddWhereClause(whereClause)
db.AddWhereClause(whereClause)
a.Equal(sb.String(), "SELECT * FROM t ")
a.Equal(ub.String(), "UPDATE t SET foo = 1 ")
a.Equal(db.String(), "DELETE FROM t ")
}
func TestEmptyStringsWhereAddWhereExpr(t *testing.T) {
a := assert.New(t)
emptyExpr := []string{"", "", ""}
sb := Select("*").From("t")
ub := Update("t").Set("foo = 1")
db := DeleteFrom("t")
cond := NewCond()
whereClause := NewWhereClause().AddWhereExpr(
cond.Args,
emptyExpr...,
)
sb.AddWhereClause(whereClause)
ub.AddWhereClause(whereClause)
db.AddWhereClause(whereClause)
a.Equal(sb.String(), "SELECT * FROM t ")
a.Equal(ub.String(), "UPDATE t SET foo = 1 ")
a.Equal(db.String(), "DELETE FROM t ")
}
func TestWhereClauseGetFlavor(t *testing.T) {
a := assert.New(t)
wc := NewWhereClause()
wc.SetFlavor(PostgreSQL)
flavor := wc.Flavor()
a.Equal(PostgreSQL, flavor)
}
func TestWhereClauseCopyGetFlavor(t *testing.T) {
a := assert.New(t)
wc := NewWhereClause()
wc.SetFlavor(PostgreSQL)
wcCopy := CopyWhereClause(wc)
flavor := wcCopy.Flavor()
a.Equal(PostgreSQL, flavor)
}