lotus/lotus-soup/main.go

29 lines
627 B
Go
Raw Normal View History

package main
import (
"fmt"
"github.com/testground/sdk-go/run"
"github.com/testground/sdk-go/runtime"
)
var testplans = map[string]interface{}{
"lotus-baseline": doRun(basicRoles),
2020-06-26 14:07:35 +00:00
"drand-halting": doRun(basicRoles),
}
func main() {
run.InvokeMap(testplans)
}
func doRun(roles map[string]func(*TestEnvironment) error) run.InitializedTestCaseFn {
return func(runenv *runtime.RunEnv, initCtx *run.InitContext) error {
role := runenv.StringParam("role")
2020-06-24 11:02:20 +00:00
proc, ok := roles[role]
if ok {
return proc(&TestEnvironment{RunEnv: runenv, InitContext: initCtx})
}
return fmt.Errorf("Unknown role: %s", role)
}
}