-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnon_transactional_route_test.go
108 lines (86 loc) · 3.21 KB
/
non_transactional_route_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
package orchestrator
import (
"github.com/stretchr/testify/assert"
"testing"
)
func TestDefineUnconditionalRoute(t *testing.T) {
r := NewNonTransactionalRoute("TEST_ROUTE").
AddNextStep("1", doActionTest).
AddNextStep("2", doActionTest).
AddNextStep("3", doActionTest)
rr := execTestRoute(r.GetStartState())
assert.Equal(t, 3, rr.statemachine.context.GetVariable("HK"))
}
func TestDefineConditionalRoute(t *testing.T) {
r := NewNonTransactionalRoute("TEST_ROUTE").
AddNextStep("1", doActionTest).
AddNextStep("2", doActionTest).
When(func(ctx context) bool { return true }).
AddNextStep("when_1", doActionTest).
AddNextStep("when_2", doActionTest).
AddNextStep("when_3", doActionTest)
rh := execTestRoute(r.GetStartState())
assert.Equal(t, 5, rh.statemachine.context.GetVariable("HK"))
rf := NewNonTransactionalRoute("TEST_ROUTE").
AddNextStep("1", doActionTest).
AddNextStep("2", doActionTest).
When(func(ctx context) bool { return false }).
AddNextStep("when_1", doActionTest).
AddNextStep("when_2", doActionTest).
AddNextStep("when_3", doActionTest)
rh = execTestRoute(rf.GetStartState())
assert.Equal(t, 2, rh.statemachine.context.GetVariable("HK"))
}
func TestDefineNestedConditionalRoute(t *testing.T) {
r := NewNonTransactionalRoute("TEST_ROUTE").
AddNextStep("1", doActionTest).
AddNextStep("2", doActionTest).
When(func(ctx context) bool { return true }).
AddNextStep("when_1", doActionTest).
When(func(ctx context) bool { return true }).
AddNextStep("when_when_1", doActionTest).
AddNextStep("when_when_2", doActionTest).
AddNextStep("when_when_3", doActionTest)
rh := execTestRoute(r.GetStartState())
assert.Equal(t, 6, rh.statemachine.context.GetVariable("HK"))
}
func TestDefineConditionWithOtherwiseRoute(t *testing.T) {
r := NewNonTransactionalRoute("TEST_ROUTE").
AddNextStep("1", doActionTest).
AddNextStep("2", doActionTest).
When(func(ctx context) bool { return true }).
AddNextStep("when_1", doActionTest).
AddNextStep("when_2", doActionTest).
Otherwise().
AddNextStep("otherwise_1", doActionTest).
AddNextStep("otherwise_2", doActionTest).
AddNextStep("otherwise_3", doActionTest)
rh := execTestRoute(r.GetStartState())
assert.Equal(t, 4, rh.statemachine.context.GetVariable("HK"))
}
func TestDefineConditionWithOtherwiseAndEndRoute(t *testing.T) {
r := NewNonTransactionalRoute("TEST_ROUTE").
AddNextStep("1", doActionTest).
AddNextStep("2", doActionTest).
When(func(ctx context) bool { return false }).
AddNextStep("condition_1", doActionTest).
Otherwise().
AddNextStep("otherwise_1", doActionTest).
AddNextStep("otherwise_2", doActionTest).
AddNextStep("otherwise_3", doActionTest)
rh := execTestRoute(r.GetStartState())
assert.Equal(t, 5, rh.statemachine.context.GetVariable("HK"))
}
func TestDefineRoute(t *testing.T) {
r := NewNonTransactionalRoute("TEST_ROUTE").
AddNextStep("1", doActionTest).
When(func(ctx context) bool { return true }).
AddNextStep("condition_1", doActionTest).
AddNextStep("condition_2", doActionTest).
Otherwise().
AddNextStep("otherwise_1", doActionTest).
End().
AddNextStep("2", doActionTest)
rh := execTestRoute(r.GetStartState())
assert.Equal(t, 4, rh.statemachine.context.GetVariable("HK"))
}