mirror of
https://github.com/aceld/kis-flow.git
synced 2025-01-23 07:30:23 +08:00
31 lines
603 B
Go
31 lines
603 B
Go
package test
|
|
|
|
import (
|
|
"context"
|
|
"github.com/aceld/kis-flow/file"
|
|
"github.com/aceld/kis-flow/kis"
|
|
"testing"
|
|
)
|
|
|
|
func TestParams(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
// 1. 加载配置文件并构建Flow
|
|
if err := file.ConfigImportYaml("load_conf/"); err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
// 2. 获取Flow
|
|
flow1 := kis.Pool().GetFlow("flowName1")
|
|
|
|
// 3. 提交原始数据
|
|
_ = flow1.CommitRow("This is Data1 from Test")
|
|
_ = flow1.CommitRow("This is Data2 from Test")
|
|
_ = flow1.CommitRow("This is Data3 from Test")
|
|
|
|
// 4. 执行flow1
|
|
if err := flow1.Run(ctx); err != nil {
|
|
panic(err)
|
|
}
|
|
}
|