-
Notifications
You must be signed in to change notification settings - Fork 0
/
flow_runner_test.go
63 lines (53 loc) · 1.07 KB
/
flow_runner_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
package wfe
import (
"context"
"errors"
"testing"
)
func TestRun(t *testing.T) {
t.Parallel()
ctx := context.Background()
t.Run("success", func(t *testing.T) {
flow := New[any]("Flow1")
flow.AddAction("ActionRef1", func(ctx context.Context, p any) error {
return nil
})
nodes := []Node{
{
Name: "Node1",
ActionRef: "ActionRef1",
},
{
Name: "Node2",
ActionRef: "ActionRef2",
},
}
err := run(ctx, nil, flow, nodes)
if err != nil {
t.Errorf("Expected no error, but got: %v", err)
}
})
t.Run("error", func(t *testing.T) {
flow := New[any]("Flow1")
flow.AddAction("ActionRef1", func(ctx context.Context, p any) error {
return nil
})
flow.AddAction("ActionRef2", func(ctx context.Context, p any) error {
return errors.New("ActionRef2 failed")
})
nodes := []Node{
{
Name: "Node1",
ActionRef: "ActionRef1",
},
{
Name: "Node2",
ActionRef: "ActionRef2",
},
}
err := run(ctx, nil, flow, nodes)
if err == nil {
t.Errorf("Expected an error, but got nil")
}
})
}