kis-flow/test/kis_fork_test.go

69 lines
1.7 KiB
Go
Raw Normal View History

2024-02-04 16:27:28 +08:00
package test
import (
"context"
2024-03-29 18:07:57 +08:00
"fmt"
"github.com/aceld/kis-flow/common"
"github.com/aceld/kis-flow/config"
2024-03-26 14:54:50 +08:00
"github.com/aceld/kis-flow/file"
2024-03-29 18:07:57 +08:00
"github.com/aceld/kis-flow/flow"
2024-03-26 14:54:50 +08:00
"github.com/aceld/kis-flow/kis"
2024-02-04 16:27:28 +08:00
"testing"
)
func TestForkFlow(t *testing.T) {
ctx := context.Background()
// 1. 加载配置文件并构建Flow
2024-03-20 18:09:08 +08:00
if err := file.ConfigImportYaml("load_conf/"); err != nil {
2024-02-04 16:27:28 +08:00
panic(err)
}
// 2. 获取Flow
2024-03-29 18:07:57 +08:00
flow1 := kis.Pool().GetFlow("flowFork1")
fmt.Println("----> flow1: ", flow1.GetFuncParamsAllFuncs())
flow1Clone1 := flow1.Fork(ctx)
fmt.Println("----> flow1Clone1: ", flow1Clone1.GetFuncParamsAllFuncs())
// 3. 提交原始数据
_ = flow1Clone1.CommitRow("This is Data1 from Test")
// 4. 执行flow1
if err := flow1Clone1.Run(ctx); err != nil {
panic(err)
}
}
func TestForkFlowWithLink(t *testing.T) {
ctx := context.Background()
// Create a new flow configuration
myFlowConfig1 := config.NewFlowConfig("flowFork1", common.FlowEnable)
// Create new function configuration
func1Config := config.NewFuncConfig("funcName1", common.V, nil, nil)
func3Config := config.NewFuncConfig("funcName3", common.E, nil, nil)
// Create a new flow
flow1 := flow.NewKisFlow(myFlowConfig1)
_ = flow1.Link(func1Config, config.FParam{"school": "TsingHua1", "country": "China1"})
_ = flow1.Link(func3Config, config.FParam{"school": "TsingHua3", "country": "China3"})
fmt.Println("----> flow1: ", flow1.GetFuncParamsAllFuncs())
2024-02-04 16:27:28 +08:00
flow1Clone1 := flow1.Fork(ctx)
2024-03-29 18:07:57 +08:00
fmt.Println("----> flow1Clone1: ", flow1Clone1.GetFuncParamsAllFuncs())
2024-02-04 16:27:28 +08:00
// 3. 提交原始数据
_ = flow1Clone1.CommitRow("This is Data1 from Test")
// 4. 执行flow1
if err := flow1Clone1.Run(ctx); err != nil {
panic(err)
}
}