forked from zileyuan/goflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
example_test.go
269 lines (237 loc) · 7.34 KB
/
example_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
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
package goflow
import (
"fmt"
"testing"
"github.com/Knetic/govaluate"
_ "github.com/go-sql-driver/mysql"
_ "github.com/lib/pq"
)
//测试表达式
func TestExpression(t *testing.T) {
fmt.Printf("--- Start TestExpression ---\n")
expression1, _ := govaluate.NewEvaluableExpression("content")
parameters1 := make(map[string]interface{})
parameters1["content"] = "toTask1"
next1, _ := expression1.Evaluate(parameters1)
t.Logf("next1 %v", next1)
expression2, _ := govaluate.NewEvaluableExpression("content == 200")
parameters2 := make(map[string]interface{})
parameters2["content"] = 200.0
next2, _ := expression2.Evaluate(parameters2)
t.Logf("next2 %v", next2)
expression3, _ := govaluate.NewEvaluableExpression("content > 200")
parameters3 := make(map[string]interface{})
parameters3["content"] = 200.0
next3, _ := expression3.Evaluate(parameters3)
t.Logf("next3 %v", next3)
expression4, _ := govaluate.NewEvaluableExpression("content < 200")
parameters4 := make(map[string]interface{})
parameters4["content"] = 200.0
next4, _ := expression4.Evaluate(parameters4)
t.Logf("next4 %v", next4)
fmt.Printf("--- End TestExpression ---\n")
}
//测试参与方式ALL
func TestActorAll(t *testing.T) {
fmt.Printf("--- Start TestActorAll ---\n")
bytes := LoadXML("res/actorall.xml")
engine := NewEngineByConfig("conf/app.conf")
processId := engine.Deploy(bytes, "")
args := map[string]interface{}{
"task1.operator": []string{"1", "2"},
}
order := engine.StartInstanceById(processId, "2", args)
t.Logf("OrderId %s", order.Id)
fmt.Printf("--- End TestActorAll ---\n")
}
//测试分叉和合并
func TestForkJoin(t *testing.T) {
fmt.Printf("--- Start TestForkJoin ---\n")
bytes := LoadXML("res/forkjoin.xml")
engine := NewEngineByConfig("conf/app.conf")
processId := engine.Deploy(bytes, "")
args := map[string]interface{}{
"task1.operator": []string{"1"},
"task2.operator": []string{"1"},
"task3.operator": []string{"1"},
}
order := engine.StartInstanceById(processId, "2", args)
t.Logf("OrderId %s", order.Id)
tasks := GetActiveTasksByOrderId(order.Id)
for _, task := range tasks {
engine.ExecuteTask(task.Id, "1", args)
}
fmt.Printf("--- End TestForkJoin ---\n")
}
//测试决策1
func TestDecision1(t *testing.T) {
fmt.Printf("--- Start TestDecision1 ---\n")
bytes := LoadXML("res/decision1.xml")
engine := NewEngineByConfig("conf/app.conf")
processId := engine.Deploy(bytes, "")
args := map[string]interface{}{
"task2.operator": []string{"1"},
"content": "toTask2",
}
order := engine.StartInstanceById(processId, "2", args)
t.Logf("OrderId %s", order.Id)
fmt.Printf("--- End TestDecision1 ---\n")
}
//测试决策2
func TestDecision2(t *testing.T) {
fmt.Printf("--- Start TestDecision2 ---\n")
bytes := LoadXML("res/decision2.xml")
engine := NewEngineByConfig("conf/app.conf")
processId := engine.Deploy(bytes, "")
args := map[string]interface{}{
"task1.operator": []string{"1"},
"task2.operator": []string{"1"},
"task3.operator": []string{"1"},
"content": 250.0,
}
order := engine.StartInstanceById(processId, "2", args)
t.Logf("OrderId %s", order.Id)
fmt.Printf("--- End TestDecision2 ---\n")
}
//简单测试
func TestSimple(t *testing.T) {
fmt.Printf("--- Start TestSimple ---\n")
bytes := LoadXML("res/simple.xml")
engine := NewEngineByConfig("conf/app.conf")
processId := engine.Deploy(bytes, "")
args := map[string]interface{}{
"task1.operator": []string{"1"},
}
order := engine.StartInstanceById(processId, "2", args)
t.Logf("OrderId %s", order.Id)
tasks := GetActiveTasksByOrderId(order.Id)
for _, task := range tasks {
engine.ExecuteTask(task.Id, "1", args)
}
fmt.Printf("--- End TestSimple ---\n")
}
//测试协办流程
func TestAssist(t *testing.T) {
fmt.Printf("--- Start TestAssist ---\n")
bytes := LoadXML("res/assist.xml")
engine := NewEngineByConfig("conf/app.conf")
engine.Deploy(bytes, "")
args := map[string]interface{}{}
order := engine.StartInstanceByName("assist", -1, "2", args)
tasks := GetActiveTasksByOrderId(order.Id)
for _, task := range tasks {
CreateNewTask(task.Id, TO_ASSIST, "test")
}
fmt.Printf("--- End TestAssist ---\n")
}
//测试子流程1
func TestSubProcess1(t *testing.T) {
fmt.Printf("--- Start TestSubProcess1 ---\n")
engine := NewEngineByConfig("conf/app.conf")
bytes := LoadXML("res/subprocess.child.xml")
processId := engine.Deploy(bytes, "")
bytes = LoadXML("res/subprocess.sp1.xml")
processId = engine.Deploy(bytes, "")
args := map[string]interface{}{
"task1.operator": []string{"1"},
}
order := engine.StartInstanceById(processId, "2", args)
t.Logf("OrderId %s", order.Id)
tasks := GetActiveTasksByOrderId(order.Id)
for _, task := range tasks {
engine.ExecuteTask(task.Id, "1", args)
}
fmt.Printf("--- End TestSubProcess1 ---\n")
}
//测试子流程2
func TestSubProcess2(t *testing.T) {
fmt.Printf("--- Start TestSubProcess2 ---\n")
engine := NewEngineByConfig("conf/app.conf")
bytes := LoadXML("res/subprocess.child.xml")
processId := engine.Deploy(bytes, "")
bytes = LoadXML("res/subprocess.sp2.xml")
processId = engine.Deploy(bytes, "")
args := map[string]interface{}{
"task1.operator": []string{"1"},
}
order := engine.StartInstanceById(processId, "2", args)
t.Logf("OrderId %s", order.Id)
tasks := GetActiveTasksByOrderId(order.Id)
for _, task := range tasks {
engine.ExecuteTask(task.Id, "1", args)
}
fmt.Printf("--- End TestSubProcess2 ---\n")
}
//测试小组
func TestGroup(t *testing.T) {
fmt.Printf("--- Start TestGroup ---\n")
bytes := LoadXML("res/group.xml")
engine := NewEngineByConfig("conf/app.conf")
engine.Deploy(bytes, "")
args := map[string]interface{}{
"task1.operator": []string{"role1"},
}
order := engine.StartInstanceByName("group", -1, "2", args)
t.Logf("OrderId %s", order.Id)
tasks := GetActiveTasksByOrderId(order.Id)
for _, task := range tasks {
//操作人改为test时,角色对应test,会无权处理
engine.ExecuteTask(task.Id, "ADMIN", args)
}
fmt.Printf("--- End TestGroup ---\n")
}
//测试权限
func TestRight(t *testing.T) {
fmt.Printf("--- Start TestRight ---\n")
bytes := LoadXML("res/right.xml")
engine := NewEngineByConfig("conf/app.conf")
processId := engine.Deploy(bytes, "")
args := map[string]interface{}{
"task1.operator": []string{"2"},
}
order := engine.StartInstanceById(processId, "2", args)
t.Logf("OrderId %s", order.Id)
tasks := GetActiveTasksByOrderId(order.Id)
for _, task := range tasks {
engine.ExecuteTask(task.Id, string(ER_ADMIN), args)
}
fmt.Printf("--- End TestRight ---\n")
}
//测试任务提取
func TestTake(t *testing.T) {
fmt.Printf("--- Start TestTake ---\n")
bytes := LoadXML("res/take.xml")
engine := NewEngineByConfig("conf/app.conf")
processId := engine.Deploy(bytes, "")
args := map[string]interface{}{
"task1.operator": []string{"1"},
}
order := engine.StartInstanceById(processId, "2", args)
t.Logf("OrderId %s", order.Id)
tasks := GetActiveTasksByOrderId(order.Id)
for _, task := range tasks {
TakeTask(task.Id, "1")
}
fmt.Printf("--- End TestTake ---\n")
}
//测试时限控制
func TestExpire(t *testing.T) {
}
//转派任务测试
func TestTransfer(t *testing.T) {
}
//测试继续Order
func TestResume(t *testing.T) {
}
//测试委托代理
func TestSurrogate(t *testing.T) {
}
//测试驳回
func TestReject(t *testing.T) {
}
//测试抄送
func TestCC(t *testing.T) {
}
//测试局部拦截器
func TestInterceptor(t *testing.T) {
}