forked from uptrace/bun
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfixture.go
445 lines (368 loc) · 8.91 KB
/
fixture.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
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
package dbfixture
import (
"bytes"
"context"
"database/sql"
"fmt"
"io/fs"
"reflect"
"regexp"
"strconv"
"strings"
"text/template"
"text/template/parse"
"time"
"gopkg.in/yaml.v3"
"github.com/uptrace/bun"
"github.com/uptrace/bun/schema"
)
var (
funcNameRE = regexp.MustCompile(`^\{\{ (\w+) \}\}$`)
tplRE = regexp.MustCompile(`\{\{ .+ \}\}`)
)
type FixtureOption func(l *Fixture)
func WithRecreateTables() FixtureOption {
return func(l *Fixture) {
if l.truncateTables {
panic("don't use WithDropTables together with WithTruncateTables")
}
l.recreateTables = true
l.seenTables = make(map[string]struct{})
}
}
func WithTruncateTables() FixtureOption {
return func(l *Fixture) {
if l.recreateTables {
panic("don't use WithTruncateTables together with WithRecreateTables")
}
l.truncateTables = true
l.seenTables = make(map[string]struct{})
}
}
func WithTemplateFuncs(funcMap template.FuncMap) FixtureOption {
return func(l *Fixture) {
for k, v := range funcMap {
l.funcMap[k] = v
}
}
}
type BeforeInsertData struct {
Query *bun.InsertQuery
Model interface{}
}
type BeforeInsertFunc func(ctx context.Context, data *BeforeInsertData) error
func WithBeforeInsert(fn BeforeInsertFunc) FixtureOption {
return func(f *Fixture) {
f.beforeInsert = append(f.beforeInsert, fn)
}
}
type Fixture struct {
db bun.IDB
recreateTables bool
truncateTables bool
beforeInsert []BeforeInsertFunc
seenTables map[string]struct{}
funcMap template.FuncMap
modelRows map[string]map[string]interface{}
}
func New(db bun.IDB, opts ...FixtureOption) *Fixture {
f := &Fixture{
db: db,
funcMap: defaultFuncs(),
modelRows: make(map[string]map[string]interface{}),
}
for _, opt := range opts {
opt(f)
}
return f
}
func (f *Fixture) Row(id string) (interface{}, error) {
ss := strings.Split(id, ".")
if len(ss) != 2 {
return nil, fmt.Errorf("fixture: invalid row id: %q", id)
}
model, rowID := ss[0], ss[1]
rows, ok := f.modelRows[model]
if !ok {
return nil, fmt.Errorf("fixture: unknown model=%q", model)
}
row, ok := rows[rowID]
if !ok {
return nil, fmt.Errorf("fixture: can't find row=%q for model=%q", rowID, model)
}
return row, nil
}
func (f *Fixture) MustRow(id string) interface{} {
row, err := f.Row(id)
if err != nil {
panic(err)
}
return row
}
func (f *Fixture) Load(ctx context.Context, fsys fs.FS, names ...string) error {
for _, name := range names {
if err := f.load(ctx, fsys, name); err != nil {
return err
}
}
return nil
}
func (f *Fixture) load(ctx context.Context, fsys fs.FS, name string) error {
fh, err := fsys.Open(name)
if err != nil {
return err
}
var fixtures []fixtureData
dec := yaml.NewDecoder(fh)
if err := dec.Decode(&fixtures); err != nil {
return err
}
for i := range fixtures {
if err := f.addFixture(ctx, &fixtures[i]); err != nil {
return err
}
}
return nil
}
func (f *Fixture) addFixture(ctx context.Context, data *fixtureData) error {
table := f.db.Dialect().Tables().ByModel(data.Model)
if table == nil {
return fmt.Errorf("fixture: can't find model=%q (use db.RegisterModel)", data.Model)
}
if f.recreateTables {
if err := f.dropTable(ctx, table); err != nil {
return err
}
} else if f.truncateTables {
if err := f.truncateTable(ctx, table); err != nil {
return err
}
}
for _, row := range data.Rows {
if err := f.addRow(ctx, table, row); err != nil {
return err
}
}
return nil
}
func (f *Fixture) addRow(ctx context.Context, table *schema.Table, row row) error {
var rowID string
strct := reflect.New(table.Type).Elem()
for key, value := range row {
if key == "_id" {
if err := value.Decode(&rowID); err != nil {
return err
}
continue
}
field, err := table.Field(key)
if err != nil {
return err
}
if err := f.decodeField(strct, field, &value); err != nil {
return fmt.Errorf("dbfixture: decoding %s failed: %w", key, err)
}
}
model := strct.Addr().Interface()
q := f.db.NewInsert().Model(model)
data := &BeforeInsertData{
Query: q,
Model: model,
}
for _, fn := range f.beforeInsert {
if err := fn(ctx, data); err != nil {
return err
}
}
if _, err := q.Exec(ctx); err != nil {
return err
}
if rowID == "" && len(table.PKs) == 1 {
pk := table.PKs[0]
fv := pk.Value(strct)
rowID = "pk" + asString(fv)
}
if rowID != "" {
rows, ok := f.modelRows[table.TypeName]
if !ok {
rows = make(map[string]interface{})
f.modelRows[table.TypeName] = rows
}
rows[rowID] = model
}
return nil
}
func (f *Fixture) decodeField(strct reflect.Value, field *schema.Field, value *yaml.Node) error {
fv := field.Value(strct)
iface := fv.Addr().Interface()
if value.Tag != "!!str" {
return value.Decode(iface)
}
if ss := funcNameRE.FindStringSubmatch(value.Value); len(ss) > 0 {
if fn, ok := f.funcMap[ss[1]].(func() interface{}); ok {
return scanFieldValue(strct, field, fn())
}
}
if tplRE.MatchString(value.Value) {
src, err := f.eval(value.Value)
if err != nil {
return err
}
return scanFieldValue(strct, field, src)
}
if v, ok := iface.(yaml.Unmarshaler); ok {
return v.UnmarshalYAML(value)
}
if _, ok := iface.(sql.Scanner); ok {
var str string
if err := value.Decode(&str); err != nil {
return err
}
return field.ScanValue(strct, str)
}
return value.Decode(iface)
}
func (f *Fixture) dropTable(ctx context.Context, table *schema.Table) error {
if _, ok := f.seenTables[table.Name]; ok {
return nil
}
f.seenTables[table.Name] = struct{}{}
if _, err := f.db.NewDropTable().
Model(table.ZeroIface).
IfExists().
Cascade().
Exec(ctx); err != nil {
return err
}
if _, err := f.db.NewCreateTable().
Model(table.ZeroIface).
Exec(ctx); err != nil {
return err
}
return nil
}
func (f *Fixture) truncateTable(ctx context.Context, table *schema.Table) error {
if _, ok := f.seenTables[table.Name]; ok {
return nil
}
f.seenTables[table.Name] = struct{}{}
if _, err := f.db.NewTruncateTable().
Model(table.ZeroIface).
Cascade().
Exec(ctx); err != nil {
return err
}
return nil
}
func (f *Fixture) eval(templ string) (interface{}, error) {
if v, ok := f.evalFuncCall(templ); ok {
return v, nil
}
tpl, err := template.New("").Funcs(f.funcMap).Parse(templ)
if err != nil {
return nil, err
}
var buf bytes.Buffer
if err := tpl.Execute(&buf, f.modelRows); err != nil {
return nil, err
}
return buf.String(), nil
}
func (f *Fixture) evalFuncCall(templ string) (interface{}, bool) {
tree, err := parse.Parse("", templ, "{{", "}}", f.funcMap)
if err != nil {
return nil, false
}
root := tree[""].Root
if len(root.Nodes) != 1 {
return nil, false
}
action, ok := root.Nodes[0].(*parse.ActionNode)
if !ok {
return nil, false
}
if len(action.Pipe.Cmds) != 1 {
return nil, false
}
args := action.Pipe.Cmds[0].Args
if len(args) == 0 {
return nil, false
}
funcName, ok := args[0].(*parse.IdentifierNode)
if !ok {
return nil, false
}
fn, ok := f.funcMap[funcName.Ident]
if !ok {
return nil, false
}
fnValue := reflect.ValueOf(fn)
fnType := fnValue.Type()
if fnType.NumOut() != 1 {
return nil, false
}
args = args[1:]
if len(args) != fnType.NumIn() {
return nil, false
}
argValues := make([]reflect.Value, len(args))
for i, node := range args {
switch node := node.(type) {
case *parse.StringNode:
argValues[i] = reflect.ValueOf(node.Text)
case *parse.NumberNode:
switch {
case node.IsInt:
argValues[i] = reflect.ValueOf(node.Int64)
case node.IsUint:
argValues[i] = reflect.ValueOf(node.Uint64)
case node.IsFloat:
argValues[i] = reflect.ValueOf(node.Float64)
case node.IsComplex:
argValues[i] = reflect.ValueOf(node.Complex128)
default:
argValues[i] = reflect.ValueOf(node.Text)
}
case *parse.BoolNode:
argValues[i] = reflect.ValueOf(node.True)
default:
return nil, false
}
}
out := fnValue.Call(argValues)
return out[0].Interface(), true
}
type fixtureData struct {
Model string `yaml:"model"`
Rows []row `yaml:"rows"`
}
type row map[string]yaml.Node
func asString(rv reflect.Value) string {
switch rv.Kind() {
case reflect.Bool:
return strconv.FormatBool(rv.Bool())
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
return strconv.FormatInt(rv.Int(), 10)
case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64:
return strconv.FormatUint(rv.Uint(), 10)
case reflect.Float32:
return strconv.FormatFloat(rv.Float(), 'g', -1, 32)
case reflect.Float64:
return strconv.FormatFloat(rv.Float(), 'g', -1, 64)
}
return fmt.Sprintf("%v", rv.Interface())
}
func defaultFuncs() template.FuncMap {
return template.FuncMap{
"now": func() interface{} {
return time.Now()
},
}
}
func scanFieldValue(strct reflect.Value, field *schema.Field, value interface{}) error {
if v := reflect.ValueOf(value); v.CanConvert(field.StructField.Type) {
field.Value(strct).Set(v.Convert(field.StructField.Type))
return nil
}
return field.ScanValue(strct, value)
}