-
Notifications
You must be signed in to change notification settings - Fork 805
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add tests for persistence/workflow_execution_info.go
Additionally rename file to match snake_case standard.
- Loading branch information
Showing
2 changed files
with
236 additions
and
0 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,236 @@ | ||
package persistence | ||
|
||
import ( | ||
"fmt" | ||
"github.com/stretchr/testify/assert" | ||
"testing" | ||
) | ||
|
||
var ( | ||
workflowStates = map[string]int{ | ||
"Void": WorkflowStateVoid, | ||
"Created": WorkflowStateCreated, | ||
"Running": WorkflowStateRunning, | ||
"Completed": WorkflowStateCompleted, | ||
"Zombie": WorkflowStateZombie, | ||
} | ||
workflowCloseStatuses = map[string]int{ | ||
"None": WorkflowCloseStatusNone, | ||
"Completed": WorkflowCloseStatusCompleted, | ||
"Failed": WorkflowCloseStatusFailed, | ||
"Canceled": WorkflowCloseStatusCanceled, | ||
"Terminated": WorkflowCloseStatusTerminated, | ||
"ContinuedAsNew": WorkflowCloseStatusContinuedAsNew, | ||
"TimedOut": WorkflowCloseStatusTimedOut, | ||
} | ||
) | ||
|
||
func TestWorkflowExecutionInfoSetNextEventID(t *testing.T) { | ||
info := &WorkflowExecutionInfo{NextEventID: 1} | ||
info.SetNextEventID(2) | ||
|
||
assert.Equal(t, int64(2), info.NextEventID) | ||
} | ||
|
||
func TestWorkflowExecutionInfoIncreaseNextEventID(t *testing.T) { | ||
info := &WorkflowExecutionInfo{NextEventID: 1} | ||
|
||
info.IncreaseNextEventID() | ||
|
||
assert.Equal(t, int64(2), info.NextEventID) | ||
} | ||
|
||
func TestWorkflowExecutionInfoSetLastFirstEventID(t *testing.T) { | ||
info := &WorkflowExecutionInfo{LastFirstEventID: 1} | ||
|
||
info.SetLastFirstEventID(2) | ||
|
||
assert.Equal(t, int64(2), info.LastFirstEventID) | ||
} | ||
|
||
func TestWorkflowExecutionInfoIsRunning(t *testing.T) { | ||
tests := map[string]struct { | ||
state int | ||
expected bool | ||
}{ | ||
"Created": { | ||
WorkflowStateCreated, true, | ||
}, | ||
"Running": { | ||
WorkflowStateRunning, true, | ||
}, | ||
"Completed": { | ||
WorkflowStateCompleted, false, | ||
}, | ||
"Zombie": { | ||
WorkflowStateZombie, false, | ||
}, | ||
"Corrupted": { | ||
WorkflowStateCorrupted, false, | ||
}, | ||
} | ||
for name, test := range tests { | ||
t.Run(name, func(t *testing.T) { | ||
info := &WorkflowExecutionInfo{ | ||
State: test.state, | ||
} | ||
assert.Equal(t, test.expected, info.IsRunning()) | ||
}) | ||
} | ||
} | ||
|
||
type transitionChecker func(executionInfo *WorkflowExecutionInfo, toState, closeStatus int) bool | ||
type stateChecker func(executionInfo *WorkflowExecutionInfo, closeStatus int) bool | ||
type testCase struct { | ||
name string | ||
fromState int | ||
fromStatus int | ||
toState int | ||
toStatus int | ||
} | ||
|
||
func TestWorkflowExecutionInfoUpdateWorkflowStateCloseStatus(t *testing.T) { | ||
expectedTransitions := map[int]transitionChecker{ | ||
WorkflowStateVoid: toAnyState(), | ||
WorkflowStateCreated: toStates(map[int]stateChecker{ | ||
WorkflowStateCreated: withCloseStatusNone(), | ||
WorkflowStateRunning: withCloseStatusNone(), | ||
WorkflowStateCompleted: withCloseStatus(WorkflowCloseStatusTerminated, WorkflowCloseStatusTimedOut, WorkflowCloseStatusContinuedAsNew), | ||
WorkflowStateZombie: withCloseStatusNone(), | ||
}), | ||
WorkflowStateRunning: toStates(map[int]stateChecker{ | ||
WorkflowStateRunning: withCloseStatusNone(), | ||
WorkflowStateCompleted: withAnyCloseStatusExcept(WorkflowCloseStatusNone), | ||
WorkflowStateZombie: withCloseStatusNone(), | ||
}), | ||
WorkflowStateCompleted: toStates(map[int]stateChecker{ | ||
WorkflowStateCompleted: func(executionInfo *WorkflowExecutionInfo, closeStatus int) bool { | ||
return executionInfo.CloseStatus == closeStatus | ||
}, | ||
}), | ||
WorkflowStateZombie: toStates(map[int]stateChecker{ | ||
WorkflowStateCreated: withCloseStatusNone(), | ||
WorkflowStateRunning: withCloseStatusNone(), | ||
WorkflowStateCompleted: withAnyCloseStatusExcept(WorkflowCloseStatusNone), | ||
WorkflowStateZombie: withAnyCloseStatusExcept(WorkflowCloseStatusNone), | ||
}), | ||
} | ||
var testCases []*testCase | ||
|
||
// From every state with a CloseStatus of None to every state and close status | ||
for fromStateName, fromState := range workflowStates { | ||
for toStateName, toState := range workflowStates { | ||
for closeStatusName, closeStatus := range workflowCloseStatuses { | ||
testCases = append(testCases, &testCase{ | ||
name: fmt.Sprintf("(%s,None)->(%s,%s)", fromStateName, toStateName, closeStatusName), | ||
fromState: fromState, | ||
fromStatus: WorkflowCloseStatusNone, | ||
toState: toState, | ||
toStatus: closeStatus, | ||
}) | ||
} | ||
} | ||
} | ||
// Ensure Completed doesn't allow for changing the Status | ||
testCases = append(testCases, &testCase{ | ||
name: "(Completed,Failed)->(Completed, Completed)", | ||
fromState: WorkflowStateCompleted, | ||
fromStatus: WorkflowCloseStatusFailed, | ||
toState: WorkflowStateCompleted, | ||
toStatus: WorkflowCloseStatusCompleted, | ||
}) | ||
testCases = append(testCases, &testCase{ | ||
name: "(Completed,Completed)->(Completed,Completed)", | ||
fromState: WorkflowStateCompleted, | ||
fromStatus: WorkflowCloseStatusCompleted, | ||
toState: WorkflowStateCompleted, | ||
toStatus: WorkflowCloseStatusCompleted, | ||
}) | ||
// Invalid states | ||
testCases = append(testCases, &testCase{ | ||
name: "(Completed,Completed)->(?,Completed)", | ||
fromState: WorkflowStateCompleted, | ||
fromStatus: WorkflowCloseStatusCompleted, | ||
toState: 100000, | ||
toStatus: WorkflowCloseStatusCompleted, | ||
}) | ||
testCases = append(testCases, &testCase{ | ||
name: "(?,Completed)->(Completed,Completed)", | ||
fromState: 100000, | ||
fromStatus: WorkflowCloseStatusCompleted, | ||
toState: WorkflowStateCompleted, | ||
toStatus: WorkflowCloseStatusCompleted, | ||
}) | ||
|
||
for _, test := range testCases { | ||
t.Run(test.name, func(t *testing.T) { | ||
executionInfo := &WorkflowExecutionInfo{ | ||
State: test.fromState, | ||
CloseStatus: test.fromStatus, | ||
} | ||
|
||
var noErr bool | ||
if isValid, ok := expectedTransitions[test.fromState]; ok { | ||
noErr = isValid(executionInfo, test.toState, test.toStatus) | ||
} else { | ||
noErr = false | ||
} | ||
|
||
err := executionInfo.UpdateWorkflowStateCloseStatus(test.toState, test.toStatus) | ||
|
||
if noErr { | ||
assert.NoError(t, err) | ||
assert.Equal(t, test.toState, executionInfo.State) | ||
assert.Equal(t, test.toStatus, executionInfo.CloseStatus) | ||
} else { | ||
assert.Error(t, err) | ||
} | ||
|
||
}) | ||
} | ||
} | ||
|
||
func toAnyState() transitionChecker { | ||
return func(workflowExecutionInfo *WorkflowExecutionInfo, toState, closeStatus int) bool { | ||
return true | ||
} | ||
} | ||
|
||
func toStates(validStates map[int]stateChecker) transitionChecker { | ||
return func(workflowExecutionInfo *WorkflowExecutionInfo, toState, closeStatus int) bool { | ||
if checker, ok := validStates[toState]; ok { | ||
return checker(workflowExecutionInfo, closeStatus) | ||
} | ||
return false | ||
} | ||
} | ||
|
||
func withCloseStatusNone() stateChecker { | ||
return withCloseStatus(WorkflowCloseStatusNone) | ||
} | ||
|
||
func withCloseStatus(closeStatuses ...int) stateChecker { | ||
return func(workflowExecutionInfo *WorkflowExecutionInfo, closeStatus int) bool { | ||
return contains(closeStatuses, closeStatus) | ||
} | ||
} | ||
|
||
func withAnyCloseStatusExcept(closeStatuses ...int) stateChecker { | ||
return func(workflowExecutionInfo *WorkflowExecutionInfo, closeStatus int) bool { | ||
for _, v := range closeStatuses { | ||
if v == closeStatus { | ||
return false | ||
} | ||
} | ||
return true | ||
} | ||
} | ||
|
||
func contains(slice []int, value int) bool { | ||
for _, v := range slice { | ||
if v == value { | ||
return true | ||
} | ||
} | ||
return false | ||
} |