-
Notifications
You must be signed in to change notification settings - Fork 2
/
scenario_test.go
77 lines (65 loc) · 1.73 KB
/
scenario_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
package chatgo_test
import (
"fmt"
"github.com/seeeturtle/chatgo"
)
func ExampleRunScenario_CommonScenario() {
scenario1 := chatgo.CondScenario{}
scenario1.Add(
func(o chatgo.Object) bool { return true },
func(o chatgo.Object) (chatgo.Scenario, chatgo.Object) {
fmt.Println("Behavior 1 from CommonScenario 1")
return nil, nil
},
)
scenario1.Add(
func(o chatgo.Object) bool { return true },
func(o chatgo.Object) (chatgo.Scenario, chatgo.Object) {
fmt.Println("Behavior 2 from CommonScenario 1")
return nil, nil
},
)
chatgo.RunScenario(&scenario1, nil)
// Output:
// Behavior 1 from CommonScenario 1
}
func ExampleRunScenario_Else() {
scenario2 := chatgo.CondScenario{}
scenario2.Add(
func(o chatgo.Object) bool { return false },
func(o chatgo.Object) (chatgo.Scenario, chatgo.Object) {
fmt.Println("Behavior 1 from CommonScenario 2")
return nil, nil
},
)
scenario2.Else(
func(o chatgo.Object) (chatgo.Scenario, chatgo.Object) {
fmt.Println("Else Behavior 1 from CommonScenario 2")
return nil, nil
},
)
chatgo.RunScenario(&scenario2, nil)
// Output:
// Else Behavior 1 from CommonScenario 2
}
func ExmapleRunScenario_Deep() {
var scenario3, scenario4 chatgo.CondScenario
scenario3.Add(
func(o chatgo.Object) bool { return true },
func(o chatgo.Object) (chatgo.Scenario, chatgo.Object) {
fmt.Println("Behavior 1 from CommonScenario 3")
return scenario4, nil
},
)
scenario4.Add(
func(o chatgo.Object) bool { return true },
func(o chatgo.Object) (chatgo.Scenario, chatgo.Object) {
fmt.Println("Behavior 1 from CommonScenario 4")
return nil, nil
},
)
chatgo.RunScenario(&scenario3, nil)
// Output:
// Behavior 1 from CommonScenario 3
// Behavior 1 from CommonScenario 4
}