-
Notifications
You must be signed in to change notification settings - Fork 0
/
main_test.go
116 lines (109 loc) · 2.52 KB
/
main_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
package migrate
import (
"errors"
"github.com/stretchr/testify/assert"
"strconv"
"strings"
"testing"
)
func TestExecuteOption(t *testing.T) {
testScenarios := []struct {
option string
userInput string
migrationInstance *mockMigration
expectedFuncCall string
expectedError error
}{
{
option: optionUp,
userInput: "",
migrationInstance: &mockMigration{},
expectedFuncCall: "Up",
expectedError: nil,
},
{
option: optionUp,
userInput: "",
migrationInstance: &mockMigration{
db: mockDB{
migrationVersion: 1,
},
lastMigrationCall: "",
},
expectedFuncCall: "Up",
expectedError: nil,
},
{
option: optionDown,
userInput: "",
migrationInstance: &mockMigration{
db: mockDB{
migrationVersion: 1,
},
lastMigrationCall: "",
}, expectedFuncCall: "Down",
expectedError: nil,
},
{
option: optionDown,
userInput: "",
migrationInstance: &mockMigration{
db: mockDB{
migrationVersion: 0,
},
lastMigrationCall: "",
},
expectedFuncCall: "Down",
expectedError: nil,
},
{
option: optionDrop,
userInput: "",
migrationInstance: &mockMigration{},
expectedFuncCall: "Drop",
expectedError: nil,
},
{
option: optionForce,
userInput: "1",
migrationInstance: &mockMigration{},
expectedFuncCall: "Force(1)",
expectedError: nil,
},
{
option: optionForce,
userInput: "some string",
migrationInstance: &mockMigration{},
expectedFuncCall: "",
expectedError: errors.New("expected integer"),
},
{
option: optionFullReset,
userInput: "",
migrationInstance: &mockMigration{},
expectedFuncCall: "Drop",
expectedError: nil,
},
{
option: optionNothing,
userInput: "",
migrationInstance: &mockMigration{},
expectedFuncCall: "",
expectedError: nil,
},
}
for i, scenario := range testScenarios {
t.Run(strconv.Itoa(i), func(t *testing.T) {
r := strings.NewReader(scenario.userInput)
err := executeOption(r, scenario.migrationInstance, scenario.option)
if scenario.expectedError != nil {
assert.EqualError(t, err, scenario.expectedError.Error())
}
if scenario.expectedError == nil {
assert.NoError(t, err)
}
assert.Equal(t, scenario.expectedFuncCall, scenario.migrationInstance.lastMigrationCall)
scenario.migrationInstance.lastMigrationCall = ""
})
}
}