Move some of the test functions around for readability
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
5dc0d173f4
commit
631dc539f2
65
main_test.go
65
main_test.go
@ -43,38 +43,7 @@ func assertNotEqual(t *testing.T, actual, expected interface{}, msg string) {
|
||||
}
|
||||
}
|
||||
|
||||
// TestParseDuration tests the parseDuration function
|
||||
func TestParseDuration(t *testing.T) {
|
||||
tests := []struct {
|
||||
input string
|
||||
expected time.Duration
|
||||
hasError bool
|
||||
}{
|
||||
{"10", 10 * time.Minute, false},
|
||||
{"1h", 1 * time.Hour, false},
|
||||
{"invalid", 0, true},
|
||||
}
|
||||
|
||||
for _, test := range tests {
|
||||
result, err := parseDuration(test.input)
|
||||
if test.hasError {
|
||||
assertNotEqual(t, err, nil, "Expected an error for input "+test.input)
|
||||
} else {
|
||||
assertEqual(t, err, nil, "Did not expect an error for input "+test.input)
|
||||
assertEqual(t, result, test.expected, "Expected duration for input "+test.input)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// TestRunCommands tests the runCommands function
|
||||
func TestRunCommands(t *testing.T) {
|
||||
m := newModelBasic(false, "#ffdd57", "#57ddff")
|
||||
m.onFocusStart = []string{"echo Focus Start"}
|
||||
|
||||
m.Init()
|
||||
m.startCommands(m.onFocusStart)
|
||||
}
|
||||
|
||||
// keyMsgs converts a series of strings or KeyTypes into a slice of KeyMsgs
|
||||
func keyMsgs(keys ...interface{}) []tea.KeyMsg {
|
||||
keyMessages := []tea.KeyMsg{}
|
||||
|
||||
@ -239,6 +208,38 @@ func TestSendKeys(t *testing.T) {
|
||||
}
|
||||
}
|
||||
|
||||
// TestParseDuration tests the parseDuration function
|
||||
func TestParseDuration(t *testing.T) {
|
||||
tests := []struct {
|
||||
input string
|
||||
expected time.Duration
|
||||
hasError bool
|
||||
}{
|
||||
{"10", 10 * time.Minute, false},
|
||||
{"1h", 1 * time.Hour, false},
|
||||
{"invalid", 0, true},
|
||||
}
|
||||
|
||||
for _, test := range tests {
|
||||
result, err := parseDuration(test.input)
|
||||
if test.hasError {
|
||||
assertNotEqual(t, err, nil, "Expected an error for input "+test.input)
|
||||
} else {
|
||||
assertEqual(t, err, nil, "Did not expect an error for input "+test.input)
|
||||
assertEqual(t, result, test.expected, "Expected duration for input "+test.input)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// TestRunCommands tests the runCommands function
|
||||
func TestRunCommands(t *testing.T) {
|
||||
m := newModelBasic(false, "#ffdd57", "#57ddff")
|
||||
m.onFocusStart = []string{"echo Focus Start"}
|
||||
|
||||
m.Init()
|
||||
m.startCommands(m.onFocusStart)
|
||||
}
|
||||
|
||||
// TestInputView tests the Update method of the model for the input view
|
||||
func TestInputView(t *testing.T) {
|
||||
m := newModel(false, "#ffdd57", "#57ddff", 0, 0, 0, []string{}, []string{}, []string{})
|
||||
|
Loading…
Reference in New Issue
Block a user