This repository has been archived by the owner on Feb 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstmt_test.go
216 lines (210 loc) · 5.24 KB
/
stmt_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
package sqlr
import (
"reflect"
"testing"
)
func TestInferRowType(t *testing.T) {
type Row struct {
ID int
}
tests := []struct {
row interface{}
rowType reflect.Type
errText string
}{
{
row: Row{},
rowType: reflect.TypeOf(Row{}),
},
{
row: &Row{},
rowType: reflect.TypeOf(Row{}),
},
{
row: []Row{},
rowType: reflect.TypeOf(Row{}),
},
{
row: []*Row{},
rowType: reflect.TypeOf(Row{}),
},
}
for i, tt := range tests {
rowType, err := getRowType(tt.row)
if err != nil {
if got, want := err.Error(), tt.errText; got != want {
t.Errorf("%d: want=%q, got=%q", i, want, got)
}
continue
}
if got, want := rowType, tt.rowType; got != want {
t.Errorf("%d: want=%v, got=%v", i, want, got)
}
}
}
func TestPrepare(t *testing.T) {
dialects := map[string]Dialect{
"mysql": MySQL,
"postgres": Postgres,
}
tests := []struct {
row interface{}
sql string
queries map[string]string
}{
{
row: struct {
ID string `sql:"primary key auto increment"`
Name string
}{},
sql: "insert into tbl",
queries: map[string]string{
"mysql": "insert into tbl(`name`) values(?)",
"postgres": `insert into tbl("name") values($1)`,
},
},
{
row: struct {
ID string `sql:"primary key auto increment"`
Name string
}{},
sql: "insert into tbl({all}) values({})",
queries: map[string]string{
"mysql": "insert into tbl(`id`, `name`) values(?, ?)",
"postgres": `insert into tbl("id", "name") values($1, $2)`,
},
},
{
row: struct {
ID string `sql:"primary key"`
Name string
}{},
sql: "insert tbl",
queries: map[string]string{
"mysql": "insert into tbl(`id`, `name`) values(?, ?)",
"postgres": `insert into tbl("id", "name") values($1, $2)`,
},
},
{
row: struct {
ID string `sql:"primary key auto increment"`
Name string
}{},
sql: "update tbl set {} where {}",
queries: map[string]string{
"mysql": "update tbl set `name` = ? where `id` = ?",
"postgres": `update tbl set "name" = $1 where "id" = $2`,
},
},
{
row: struct {
ID string `sql:"primary key auto increment"`
Name string
}{},
sql: "update tbl",
queries: map[string]string{
"mysql": "update tbl set `name` = ? where `id` = ?",
"postgres": `update tbl set "name" = $1 where "id" = $2`,
},
},
{
row: struct {
ID string `sql:"primary key auto increment"`
Hash string `sql:"pk"`
Name string
Count int
}{},
sql: "update [xxx]\nset\n{}\nwhere {}",
queries: map[string]string{
"mysql": "update `xxx` set `name` = ?, `count` = ? where `id` = ? and `hash` = ?",
"postgres": `update "xxx" set "name" = $1, "count" = $2 where "id" = $3 and "hash" = $4`,
},
},
{
row: struct {
ID string `sql:"primary key auto increment"`
Name string
}{},
sql: "delete from tbl where {}",
queries: map[string]string{
"mysql": "delete from tbl where `id` = ?",
"postgres": `delete from tbl where "id" = $1`,
},
},
{
row: struct {
ID string `sql:"primary key auto increment"`
Hash string `sql:"pk"`
Name string
Count int
}{},
sql: "delete from `xxx`\n-- this is a comment\nwhere {}",
queries: map[string]string{
"mysql": "delete from `xxx` where `id` = ? and `hash` = ?",
"postgres": `delete from "xxx" where "id" = $1 and "hash" = $2`,
},
},
{
row: struct {
ID string `sql:"primary key auto increment"`
Name string
}{},
sql: "select {} from tbl where {}",
queries: map[string]string{
"mysql": "select `id`, `name` from tbl where `id` = ?",
"postgres": `select "id", "name" from tbl where "id" = $1`,
},
},
{
row: struct {
ID string `sql:"primary key auto increment"`
Name string
}{},
sql: "select {alias t} from tbl t where {pk,alias t}",
queries: map[string]string{
"mysql": "select t.`id`, t.`name` from tbl t where t.`id` = ?",
"postgres": `select t."id", t."name" from tbl t where t."id" = $1`,
},
},
{
row: struct {
ID string `sql:"primary key auto increment"`
Home struct {
Postcode string
}
}{},
sql: "select {alias t} from tbl t where {pk,alias t}",
queries: map[string]string{
"mysql": "select t.`id`, t.`home_postcode` from tbl t where t.`id` = ?",
"postgres": `select t."id", t."home_postcode" from tbl t where t."id" = $1`,
},
},
{
row: struct {
ID string `sql:"primary key auto increment"`
Hash string `sql:"pk"`
Name string
Count int
}{},
sql: "select {} from `xxx`\nwhere {}",
queries: map[string]string{
"mysql": "select `id`, `hash`, `name`, `count` from `xxx` where `id` = ? and `hash` = ?",
"postgres": `select "id", "hash", "name", "count" from "xxx" where "id" = $1 and "hash" = $2`,
},
},
}
for i, tt := range tests {
for dialectName, query := range tt.queries {
dialect := dialects[dialectName]
schema := NewSchema(WithDialect(dialect))
stmt, err := schema.Prepare(tt.row, tt.sql)
if err != nil {
t.Errorf("%d: expected no error: got %v", i, err)
continue
}
if stmt.String() != query {
t.Errorf("%d: %s: expected=%q, actual=%q", i, dialect, query, stmt.String())
}
}
}
}