-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathexample_test.go
209 lines (178 loc) · 4.88 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
package orchestrator_test
import (
"context"
"fmt"
"time"
"github.com/RussellLuo/orchestrator"
"github.com/RussellLuo/orchestrator/builtin"
)
func Example() {
flow := builtin.NewSerial("get_todo_user").Timeout(3*time.Second).Tasks(
builtin.NewHTTP("get_todo").Timeout(2*time.Second).Get(
"https://jsonplaceholder.typicode.com/todos/${input.todoId}",
),
builtin.NewHTTP("get_user").Timeout(2*time.Second).Get(
"https://jsonplaceholder.typicode.com/users/${get_todo.body.userId}",
),
).Build()
input := orchestrator.NewInput(map[string]any{"todoId": 1})
output, err := flow.Execute(context.Background(), input)
if err != nil {
fmt.Println(err)
return
}
body := output["body"].(map[string]any)
fmt.Println(body["name"])
// Output:
// Leanne Graham
}
func Example_trace() {
flow := builtin.NewSerial("get_todo_user").Timeout(3*time.Second).Tasks(
builtin.NewHTTP("get_todo").Timeout(2*time.Second).Get(
"https://jsonplaceholder.typicode.com/todos/${input.todoId}",
),
builtin.NewHTTP("get_user").Timeout(2*time.Second).Get(
"https://jsonplaceholder.typicode.com/users/${get_todo.body.userId}",
),
).Build()
input := orchestrator.NewInput(map[string]any{"todoId": 1})
event := orchestrator.TraceTask(context.Background(), flow, input)
// Note that for the stability of the test, we just show the output.
// You may be interested in other properties of the tracing event.
body := event.Output["body"].(map[string]any)
fmt.Println(body["name"])
// Output:
// Leanne Graham
}
func Example_yaml() {
r := orchestrator.NewRegistry()
builtin.MustRegisterSerial(r)
builtin.MustRegisterHTTP(r)
data := []byte(`
name: get_todo_user
type: serial
timeout: 3s
input:
tasks:
- name: get_todo
type: http
timeout: 2s
input:
method: GET
uri: https://jsonplaceholder.typicode.com/todos/${input.todoId}
- name: get_user
type: http
timeout: 2s
input:
method: GET
uri: https://jsonplaceholder.typicode.com/users/${get_todo.body.userId}
`)
flow, err := r.ConstructFromYAML(data)
if err != nil {
fmt.Println(err)
return
}
input := orchestrator.NewInput(map[string]any{"todoId": 1})
output, err := flow.Execute(context.Background(), input)
if err != nil {
fmt.Println(err)
return
}
body := output["body"].(map[string]any)
fmt.Println(body["name"])
// Output:
// Leanne Graham
}
func Example_json() {
r := orchestrator.NewRegistry()
builtin.MustRegisterSerial(r)
builtin.MustRegisterHTTP(r)
data := []byte(`{
"name": "get_todo_user",
"type": "serial",
"timeout": "3s",
"input": {
"tasks": [
{
"name": "get_todo",
"type": "http",
"timeout": "2s",
"input": {
"method": "GET",
"uri": "https://jsonplaceholder.typicode.com/todos/${input.todoId}"
}
},
{
"name": "get_user",
"type": "http",
"timeout": "2s",
"input": {
"method": "GET",
"uri": "https://jsonplaceholder.typicode.com/users/${get_todo.body.userId}"
}
}
]
}
}`)
flow, err := r.ConstructFromJSON(data)
if err != nil {
fmt.Println(err)
return
}
input := orchestrator.NewInput(map[string]any{"todoId": 1})
output, err := flow.Execute(context.Background(), input)
if err != nil {
fmt.Println(err)
return
}
body := output["body"].(map[string]any)
fmt.Println(body["name"])
// Output:
// Leanne Graham
}
func Example_actor() {
flow := builtin.NewSerial("get_todo_user").Async(true).Tasks(
builtin.NewHTTP("get_todo").Timeout(2*time.Second).Get(
"https://jsonplaceholder.typicode.com/todos/${input.todoId}",
),
builtin.NewFunc("echo_once").Func(func(ctx context.Context, input orchestrator.Input) (orchestrator.Output, error) {
behavior, ok := input.Get("actor")["behavior"].(*orchestrator.ActorBehavior)
if !ok {
return nil, fmt.Errorf("task %q must be used within an asynchronous flow", "echo_once")
}
// Send the data, received from the actor's inbox, to the actor's outbox.
data := behavior.Receive()
behavior.Send(data, nil)
return orchestrator.Output{}, nil
}),
builtin.NewHTTP("get_user").Timeout(2*time.Second).Get(
"https://jsonplaceholder.typicode.com/users/${get_todo.body.userId}",
),
).Build()
input := orchestrator.NewInput(map[string]any{"todoId": 1})
output, err := flow.Execute(context.Background(), input)
if err != nil {
fmt.Println(err)
return
}
actor, ok := output.Actor()
if !ok {
fmt.Println("bad actor")
return
}
// Perform a ping-pong action midway.
actor.Inbox() <- map[string]any{"data": "Hello"}
result := <-actor.Outbox()
fmt.Println(result.Output["data"]) // Ignore error handling for simplicity.
// Finally, get the flow result.
result = <-actor.Outbox()
if result.Err != nil {
fmt.Println(result.Err)
return
}
body := result.Output["body"].(map[string]any)
fmt.Println(body["name"])
// Output:
// Hello
// Leanne Graham
}