-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathtqla_test.go
311 lines (301 loc) · 7.12 KB
/
tqla_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
package tqla
import (
"testing"
"text/template"
"github.com/stretchr/testify/assert"
)
type testExample struct {
FirstName string
LastName string
Page *testExampePage
}
type testExampePage struct {
Id int
Dttm string
Limit int
}
func TestTqla(t *testing.T) {
// optional functions
funcs := template.FuncMap{
"add": func(x int, y int) int {
return x + y
},
}
testCases := []struct {
name string
templateSql string
options []Option
data any
expectedSql string
expectedArgs []any
}{
{
name: "condition column where filter",
templateSql: `{{ $column:=true }}
select * from table where v = {{.Value }}
{{if $column }}
and c = {{ $column }}
{{end}}`,
data: struct {
Value int
}{Value: 5},
options: []Option{WithPlaceHolder(Dollar)},
expectedSql: `select * from table where v = $1 and c = $2`,
expectedArgs: []any{
5,
true,
},
},
{
name: "condition column where filter and custom function",
templateSql: `{{ $column:=true }}
select * from table where v = {{ add .Value .Value }}
{{ if $column }}
and c = {{ $column }}
{{ end }}`,
data: struct {
Value int
}{Value: 5},
options: []Option{WithPlaceHolder(Dollar), WithFuncMap(funcs)},
expectedSql: `select * from table where v = $1 and c = $2`,
expectedArgs: []any{
10,
true,
},
},
{
name: "where in string slice filter",
templateSql: `
select * from table where v in ( {{ .Value }} )`,
data: struct {
Value []string
}{Value: []string{"v1", "v2", "v3"}},
options: []Option{WithPlaceHolder(Dollar)},
expectedSql: `select * from table where v in ( $1 )`,
expectedArgs: []any{
[]string{"v1", "v2", "v3"},
},
},
{
name: "complex condition where filter empty value",
templateSql: `
select c1,
c2,
c3,
COALESCE(c4,'')
from d.table as t
where c1 ilike ({{ .FirstName }})
{{ if .LastName }}
and c2 = {{ .LastName }}
{{ end }}
{{ if .Page }}
and (c3,c4) > ({{ .Page.Id }}, {{ .Page.Dttm }})
{{ end }}`,
data: &testExample{
FirstName: "test",
Page: &testExampePage{
Id: 1,
Dttm: "2023-08-08",
},
},
options: []Option{WithPlaceHolder(Dollar)},
expectedSql: `select c1, c2, c3, COALESCE(c4,'') from d.table as t where c1 ilike ($1) and (c3,c4) > ($2, $3)`,
expectedArgs: []any{"test",
1,
"2023-08-08",
},
},
{
name: "complex condition where filter full value",
templateSql: `
select c1,
c2,
c3,
COALESCE(c4,'')
from d.table as t
where c1 ilike ({{ .FirstName }})
{{ if .LastName }}
and c2 = {{ .LastName }}
{{ end }}
{{ if .Page }}
and (c3,c4) > ({{ .Page.Id }}, {{ .Page.Dttm }})
{{ end }}`,
data: &testExample{
FirstName: "test",
LastName: "test",
Page: &testExampePage{
Id: 1,
Dttm: "2023-08-08",
},
},
options: []Option{WithPlaceHolder(Dollar)},
expectedSql: `select c1, c2, c3, COALESCE(c4,'') from d.table as t where c1 ilike ($1) and c2 = $2 and (c3,c4) > ($3, $4)`,
expectedArgs: []any{"test",
"test",
1,
"2023-08-08",
},
},
{
name: "complex condition where filter missing page",
templateSql: `
select c1,
c2,
c3,
COALESCE(c4,'')
from d.table as t
where c1 ilike ({{ .FirstName }})
{{ if .LastName }}
and c2 = {{ .LastName }}
{{ end }}
{{ if .Page }}
and (c3,c4) > ({{ .Page.Id }}, {{ .Page.Dttm }})
{{ end }}`,
data: &testExample{
FirstName: "test",
LastName: "test",
},
options: []Option{WithPlaceHolder(Dollar)},
expectedSql: `select c1, c2, c3, COALESCE(c4,'') from d.table as t where c1 ilike ($1) and c2 = $2`,
expectedArgs: []any{"test",
"test",
},
},
{
name: "complex condition where filter full value with max limit",
templateSql: `
{{ $maxLimit := 100 }}
select c1,
c2,
c3,
COALESCE(c4,'')
from d.table as t
where c1 ilike ({{ .FirstName }})
{{ if .LastName }}
and c2 = {{ .LastName }}
{{ end }}
{{ if .Page }}
and (c3,c4) > ({{ .Page.Id }}, {{ .Page.Dttm }})
{{ end }}
{{ if gt .Page.Limit $maxLimit }}
LIMIT {{ $maxLimit }}
{{ else }}
LIMIT {{ .Page.Limit }}
{{ end }}`,
data: &testExample{
FirstName: "test",
LastName: "test",
Page: &testExampePage{
Id: 1,
Dttm: "2023-08-08",
Limit: 10,
},
},
options: []Option{WithPlaceHolder(Dollar)},
expectedSql: `select c1, c2, c3, COALESCE(c4,'') from d.table as t where c1 ilike ($1) and c2 = $2 and (c3,c4) > ($3, $4) LIMIT $5`,
expectedArgs: []any{"test",
"test",
1,
"2023-08-08",
10,
},
},
{
name: "complex nested query/template",
templateSql: `
{{ define "nested_select" }}
select count(*) as count_v
from d.table as t
join d.table_2 as t2 on t.c1 = t2.c2
where t.c3 ilike {{ .FirstName }} and t.c4 = 'value'
{{end}}
{{ $maxLimit := 100 }}
select c1,
c2,
c3,
COALESCE(c4,''),
({{ template "nested_select" . }})
from d.table as t
where c1 ilike ({{ .FirstName }})
{{ if .LastName }}
and c2 = {{ .LastName }}
{{ end }}
{{ if .Page }}
and (c3,c4) > ({{ .Page.Id }}, {{ .Page.Dttm }})
{{ end }}
{{ if gt .Page.Limit $maxLimit }}
LIMIT {{ $maxLimit }}
{{ else }}
LIMIT {{ .Page.Limit }}
{{ end }}`,
data: &testExample{
FirstName: "test",
LastName: "test",
Page: &testExampePage{
Id: 1,
Dttm: "2023-08-08",
Limit: 10,
},
},
options: []Option{WithPlaceHolder(Dollar)},
expectedSql: `select c1, c2, c3, COALESCE(c4,''), ( select count(*) as count_v from d.table as t join d.table_2 as t2 on t.c1 = t2.c2 where t.c3 ilike $1 and t.c4 = 'value' ) from d.table as t where c1 ilike ($2) and c2 = $3 and (c3,c4) > ($4, $5) LIMIT $6`,
expectedArgs: []any{"test",
"test",
"test",
1,
"2023-08-08",
10,
},
},
{
name: "order by",
templateSql: `
{{ $len := len .Columns }}
SELECT * FROM t1 WHERE username = {{ .Username }}
{{ if gt $len 0 }}
ORDER BY
{{ $pos := 0}}
{{ range $i, $v := .Columns }}
{{ if eq $v "username" }}
username
{{ end }}
{{ $pos = add $pos 1 }}
{{ if eq $pos $len }}{{ else }},{{ end }}
{{ end }}
{{ if eq .Order "ASC" }}
ASC
{{ else }}
DESC
{{ end }}
{{ end }}`,
data: &struct {
Username string
Order string
Columns []string
}{
Username: "test",
Order: "ASC",
Columns: []string{"username"},
},
options: []Option{
WithPlaceHolder(Dollar), WithFuncMap(funcs)},
expectedSql: `SELECT * FROM t1 WHERE username = $1 ORDER BY username ASC`,
expectedArgs: []any{"test"},
},
}
for _, testCase := range testCases {
t.Run("test", func(t *testing.T) {
tqla, err := New(testCase.options...)
if err != nil {
t.Fatal(err)
}
s, a, err := tqla.Compile(
testCase.templateSql, testCase.data)
if err != nil {
t.Fatal(err)
}
assert.Equal(t, testCase.expectedSql, s)
assert.Equal(t, testCase.expectedArgs, a)
})
}
}