forked from pressly/goose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
goose_test.go
227 lines (195 loc) · 5.86 KB
/
goose_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
package goose
import (
"database/sql"
"embed"
"fmt"
"io/fs"
"os"
"os/exec"
"path/filepath"
"strings"
"testing"
_ "modernc.org/sqlite"
)
func TestDefaultBinary(t *testing.T) {
t.Parallel()
commands := []string{
"go build -o ./bin/goose ./cmd/goose",
"./bin/goose -dir=examples/sql-migrations sqlite3 sql.db up",
"./bin/goose -dir=examples/sql-migrations sqlite3 sql.db version",
"./bin/goose -dir=examples/sql-migrations sqlite3 sql.db down",
"./bin/goose -dir=examples/sql-migrations sqlite3 sql.db status",
"./bin/goose --version",
}
t.Cleanup(func() {
if err := os.Remove("./bin/goose"); err != nil {
t.Logf("failed to remove %s resources: %v", t.Name(), err)
}
if err := os.Remove("./sql.db"); err != nil {
t.Logf("failed to remove %s resources: %v", t.Name(), err)
}
})
for _, cmd := range commands {
args := strings.Split(cmd, " ")
command := args[0]
var params []string
if len(args) > 1 {
params = args[1:]
}
cmd := exec.Command(command, params...)
cmd.Env = os.Environ()
out, err := cmd.CombinedOutput()
if err != nil {
t.Fatalf("%s:\n%v\n\n%s", err, cmd, out)
}
}
}
func TestIssue293(t *testing.T) {
t.Parallel()
// https://github.com/pressly/goose/issues/293
commands := []string{
"go build -o ./bin/goose293 ./cmd/goose",
"./bin/goose293 -dir=examples/sql-migrations sqlite3 issue_293.db up",
"./bin/goose293 -dir=examples/sql-migrations sqlite3 issue_293.db version",
"./bin/goose293 -dir=examples/sql-migrations sqlite3 issue_293.db down",
"./bin/goose293 -dir=examples/sql-migrations sqlite3 issue_293.db down",
"./bin/goose293 -dir=examples/sql-migrations sqlite3 issue_293.db version",
"./bin/goose293 -dir=examples/sql-migrations sqlite3 issue_293.db up",
"./bin/goose293 -dir=examples/sql-migrations sqlite3 issue_293.db status",
}
t.Cleanup(func() {
if err := os.Remove("./bin/goose293"); err != nil {
t.Logf("failed to remove %s resources: %v", t.Name(), err)
}
if err := os.Remove("./issue_293.db"); err != nil {
t.Logf("failed to remove %s resources: %v", t.Name(), err)
}
})
for _, cmd := range commands {
args := strings.Split(cmd, " ")
command := args[0]
var params []string
if len(args) > 1 {
params = args[1:]
}
cmd := exec.Command(command, params...)
cmd.Env = os.Environ()
out, err := cmd.CombinedOutput()
if err != nil {
t.Fatalf("%s:\n%v\n\n%s", err, cmd, out)
}
}
}
func TestLiteBinary(t *testing.T) {
t.Parallel()
dir := t.TempDir()
t.Cleanup(func() {
if err := os.Remove("./bin/lite-goose"); err != nil {
t.Logf("failed to remove %s resources: %v", t.Name(), err)
}
})
// this has to be done outside of the loop
// since go only supports space separated tags list.
cmd := exec.Command("go", "build", "-tags='no_postgres no_mysql no_sqlite3'", "-o", "./bin/lite-goose", "./cmd/goose")
out, err := cmd.CombinedOutput()
if err != nil {
t.Fatalf("%s:\n%v\n\n%s", err, cmd, out)
}
commands := []string{
fmt.Sprintf("./bin/lite-goose -dir=%s create user_indices sql", dir),
fmt.Sprintf("./bin/lite-goose -dir=%s fix", dir),
}
for _, cmd := range commands {
args := strings.Split(cmd, " ")
cmd := exec.Command(args[0], args[1:]...)
cmd.Env = os.Environ()
out, err := cmd.CombinedOutput()
if err != nil {
t.Fatalf("%s:\n%v\n\n%s", err, cmd, out)
}
}
}
func TestCustomBinary(t *testing.T) {
t.Parallel()
commands := []string{
"go build -o ./bin/custom-goose ./examples/go-migrations",
"./bin/custom-goose -dir=examples/go-migrations sqlite3 go.db up",
"./bin/custom-goose -dir=examples/go-migrations sqlite3 go.db version",
"./bin/custom-goose -dir=examples/go-migrations sqlite3 go.db down",
"./bin/custom-goose -dir=examples/go-migrations sqlite3 go.db status",
}
t.Cleanup(func() {
if err := os.Remove("./go.db"); err != nil {
t.Logf("failed to remove %s resouces: %v", t.Name(), err)
}
})
for _, cmd := range commands {
args := strings.Split(cmd, " ")
out, err := exec.Command(args[0], args[1:]...).CombinedOutput()
if err != nil {
t.Fatalf("%s:\n%v\n\n%s", err, cmd, out)
}
}
}
//go:embed examples/sql-migrations/*.sql
var migrations embed.FS
func TestEmbeddedMigrations(t *testing.T) {
// not using t.Parallel here to avoid races
db, err := sql.Open("sqlite", "sql_embed.db")
if err != nil {
t.Fatalf("Database open failed: %s", err)
}
t.Cleanup(func() {
if err := os.Remove("./sql_embed.db"); err != nil {
t.Logf("failed to remove %s resouces: %v", t.Name(), err)
}
})
db.SetMaxOpenConns(1)
// decouple from existing structure
fsys, err := fs.Sub(migrations, "examples/sql-migrations")
if err != nil {
t.Fatalf("SubFS make failed: %s", err)
}
SetBaseFS(fsys)
SetDialect("sqlite3")
t.Cleanup(func() { SetBaseFS(nil) })
t.Run("Migration cycle", func(t *testing.T) {
if err := Up(db, ""); err != nil {
t.Errorf("Failed to run 'up' migrations: %s", err)
}
ver, err := GetDBVersion(db)
if err != nil {
t.Fatalf("Failed to get migrations version: %s", err)
}
if ver != 3 {
t.Errorf("Expected version 3 after 'up', got %d", ver)
}
if err := Reset(db, ""); err != nil {
t.Errorf("Failed to run 'down' migrations: %s", err)
}
ver, err = GetDBVersion(db)
if err != nil {
t.Fatalf("Failed to get migrations version: %s", err)
}
if ver != 0 {
t.Errorf("Expected version 0 after 'reset', got %d", ver)
}
})
t.Run("Create uses os fs", func(t *testing.T) {
tmpDir := t.TempDir()
if err := Create(db, tmpDir, "test", "sql"); err != nil {
t.Errorf("Failed to create migration: %s", err)
}
paths, _ := filepath.Glob(filepath.Join(tmpDir, "*test.sql"))
if len(paths) == 0 {
t.Errorf("Failed to find created migration")
}
if err := Fix(tmpDir); err != nil {
t.Errorf("Failed to 'fix' migrations: %s", err)
}
_, err = os.Stat(filepath.Join(tmpDir, "00001_test.sql"))
if err != nil {
t.Errorf("Failed to locate fixed migration: %s", err)
}
})
}