-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgen_fsm_test.go
210 lines (173 loc) · 6.14 KB
/
gen_fsm_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
package go_gen_fsm
import (
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
"github.com/stretchr/testify/mock"
"time"
)
var _ = Describe("GenFsm", func() {
const (
State1 = State("State1")
State2 = State("State2")
State3 = State("State3")
Event1 = Event("Event1")
Event2 = Event("Event2")
Event3 = Event("Event3")
)
var (
genFsm *GenFSM
testFsm *testFsmMock
)
Context("Start", func() {
BeforeEach(func() {
testFsm = &testFsmMock{}
testFsm.mock.On("Init", "arg1", "arg2").Return(State1)
})
It("Sets Initial state and Registers Handlers", func() {
genFsm = Start(testFsm, "arg1", "arg2")
Expect(genFsm.currentState).Should(Equal(State1))
Expect(len(genFsm.handlers)).Should(Equal(2))
Expect(len(genFsm.handlers[State1])).Should(Equal(2))
Expect(len(genFsm.handlers[State2])).Should(Equal(2))
Expect(genFsm.handlers[State1][0].event).Should(Equal(Event1))
Expect(genFsm.handlers[State1][1].event).Should(Equal(Event2))
Expect(genFsm.handlers[State2][0].event).Should(Equal(Event1))
Expect(genFsm.handlers[State2][1].event).Should(Equal(Event3))
genFsm.Stop()
})
})
Context("SendEvent", func() {
BeforeEach(func() {
testFsm = &testFsmMock{}
testFsm.mock.On("Init", "arg1", "arg2").Return(State1)
genFsm = Start(testFsm, "arg1", "arg2")
testFsm.mock.On("State1_Event1", 100, true, "SomeString").Return(State2)
testFsm.mock.On("State1_Event1", 100, true, "GoToState3").Return(State3)
})
AfterEach(func() {
genFsm.Stop()
})
Context("Success", func() {
It("Dispatches to right handler and updates state", func() {
genFsm.SendEvent(Event1, 100, true, "SomeString")
time.Sleep(100 * time.Microsecond)
Expect(genFsm.currentState).Should(Equal(State2))
})
It("Updates to a different state for different args", func() {
genFsm.SendEvent(Event1, 100, true, "GoToState3")
time.Sleep(100 * time.Microsecond)
Expect(genFsm.currentState).Should(Equal(State3))
})
})
Context("Fail", func() {
It("Incorrect no of args", func() {
genFsm.SendEvent(Event1, 100)
err := <-genFsm.errorChannel
Expect(err.Error()).Should(Equal("reflect: Call with too few input arguments"))
Expect(genFsm.currentState).Should(Equal(State1))
})
It("Invalid event", func() {
genFsm.SendEvent("Invalid Event", 100, true, "SomeString")
time.Sleep(100 * time.Microsecond)
Expect(genFsm.currentState).Should(Equal(State1))
})
It("Invalid state", func() {
genFsm.currentState = "Invalid State"
genFsm.SendEvent(Event1, 100, true, "SomeString")
time.Sleep(100 * time.Microsecond)
Expect(genFsm.currentState).Should(Equal(State("Invalid State")))
})
})
})
Context("SendSync", func() {
BeforeEach(func() {
testFsm = &testFsmMock{}
testFsm.mock.On("Init", "arg1", "arg2").Return(State1)
genFsm = Start(testFsm, "arg1", "arg2")
testFsm.mock.On("State1_Event1", 100, true, "SomeString").Return(State2)
testFsm.mock.On("State1_Event1", 100, true, "GoToState3").Return(State3)
})
It("Sends no op request and gets response", func() {
genFsm.SendEvent(Event1, 100, true, "SomeString")
resp := genFsm.SendSyncReq(NOOP)
Expect(genFsm.currentState).Should(Equal(State2))
Expect(resp).Should(Equal(NOOP))
genFsm.Stop()
})
It("Gets 404 if there is no handler registered for the request", func() {
genFsm.SendEvent(Event1, 100, true, "SomeString")
resp := genFsm.SendSyncReq("Invalid_Req")
Expect(genFsm.currentState).Should(Equal(State2))
Expect(resp).Should(Equal(404))
genFsm.Stop()
})
It("Shuts down gen fsm go routine ", func() {
genFsm.SendEvent(Event1, 100, true, "SomeString")
resp := genFsm.SendSyncReq(STOP)
Expect(genFsm.currentState).Should(Equal(State2))
Expect(genFsm.shutdown).Should(Equal(true))
Expect(resp).Should(Equal(STOP))
Expect(func() { genFsm.SendEvent(Event1) }).To(Panic())
})
})
Context("Start to finish", func() {
BeforeEach(func() {
testFsm = &testFsmMock{}
testFsm.mock.On("Init", "arg1", "arg2").Return(State1)
genFsm = Start(testFsm, "arg1", "arg2")
testFsm.mock.On("State1_Event1", 100, true, "SomeString").Return(State2)
testFsm.mock.On("State1_Event1", 100, true, "GoToState3").Return(State3)
testFsm.mock.On("State2_Event1", 101, false, "SomeString2").Return(State1)
testFsm.mock.On("State1_Event2", 102, false, "SomeString3").Return(State2)
testFsm.mock.On("State2_Event3", 999, true, "EndIt").Return(State("End"))
})
It("Init -> Dispatch Event -> Next State -> Dispatch Event..", func() {
genFsm.SendEvent(Event1, 100, true, "SomeString")
time.Sleep(100 * time.Microsecond)
Expect(genFsm.currentState).Should(Equal(State2))
genFsm.SendEvent(Event1, 101, false, "SomeString2")
time.Sleep(100 * time.Microsecond)
Expect(genFsm.currentState).Should(Equal(State1))
genFsm.SendEvent(Event2, 102, false, "SomeString3")
time.Sleep(100 * time.Microsecond)
Expect(genFsm.currentState).Should(Equal(State2))
genFsm.SendEvent(Event3, 999, true, "EndIt")
time.Sleep(100 * time.Microsecond)
Expect(genFsm.currentState).Should(Equal(State("End")))
})
AfterEach(func() {
genFsm.Stop()
})
})
})
type testFsmMock struct {
mock mock.Mock
}
// Generate this code later
type testFsm interface {
FSM
State1_Event1(arg1 int, arg2 bool, arg3 string) State
State1_Event2(arg1 int, arg2 bool, arg3 string) State
State2_Event1(arg1 int, arg2 bool, arg3 string) State
State2_Event3(arg1 int, arg2 bool, arg3 string) State
}
func (t *testFsmMock) Init(args ...interface{}) State {
a := t.mock.Called(args...)
return a.Get(0).(State)
}
func (t *testFsmMock) State1_Event1(arg1 int, arg2 bool, arg3 string) State {
args := t.mock.Called(arg1, arg2, arg3)
return args.Get(0).(State)
}
func (t *testFsmMock) State1_Event2(arg1 int, arg2 bool, arg3 string) State {
args := t.mock.Called(arg1, arg2, arg3)
return args.Get(0).(State)
}
func (t *testFsmMock) State2_Event1(arg1 int, arg2 bool, arg3 string) State {
args := t.mock.Called(arg1, arg2, arg3)
return args.Get(0).(State)
}
func (t *testFsmMock) State2_Event3(arg1 int, arg2 bool, arg3 string) State {
args := t.mock.Called(arg1, arg2, arg3)
return args.Get(0).(State)
}