This repository was archived by the owner on Oct 29, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdata_commands.go
86 lines (72 loc) · 2 KB
/
data_commands.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
package sqlutil
import (
"fmt"
"github.com/gchaincl/dotsql"
)
// LoadDataCommands takes a filepath to a sql file with create & drop table commands
// and returns a DataCommands
func LoadDataCommands(sqlFilePath string) (*DataCommands, error) {
f, err := dotsql.LoadFromFile(sqlFilePath)
if err != nil {
return nil, err
}
return &DataCommands{
file: f,
}, nil
}
func LoadDataString(sql string) (*DataCommands, error) {
f, err := dotsql.LoadFromString(sql)
if err != nil {
return nil, err
}
return &DataCommands{
file: f,
}, nil
}
// SchemaFile is an sql file that defines a database schema
type DataCommands struct {
file *dotsql.DotSql
}
func (d *DataCommands) Commands() []string {
return commandsWithPrefix(d.file, "")
}
// DropAll executes the command named "drop-all" from the sql file
// this should be a command in the form:
// DROP TABLE IF EXISTS foo, bar, baz ...
func (d *DataCommands) DeleteAll(db Execable) error {
for _, cmd := range commandsWithPrefix(d.file, "delete") {
if _, err := d.file.Exec(db, cmd); err != nil {
return fmt.Errorf("error executing '%s': %s", cmd, err)
}
}
return nil
}
func (d *DataCommands) Reset(db Execable, tables ...string) error {
for _, t := range tables {
if _, err := d.file.Exec(db, fmt.Sprintf("delete-%s", t)); err != nil {
return fmt.Errorf("error executing 'delete-%s': %s", t, err)
}
if _, err := d.file.Exec(db, fmt.Sprintf("insert-%s", t)); err != nil {
return fmt.Errorf("error executing 'insert-%s': %s", t, err)
}
}
return nil
}
// CreateAll executes all commands that have the prefix "create"
// func (d *DataCommands) InsertAll(db Execable) error {
// for _, cmd := range commandsWithPrefix(d.file, "insert") {
// if _, err := d.file.Exec(db, cmd); err != nil {
// return err
// }
// }
// return nil
// }
// func (d *DataCommands) ResetAll(db Execable) error {
// if err := d.DeleteAll(db); err != nil {
// return err
// }
// if err := d.InsertAll(db); err != nil {
// return err
// }
// return nil
// }