448bbf3710
* test plan scaffolding * generify the testplan role dispatch * manifest.toml * initial go.mod and go.sum * correct name * gomod: update from build * node construction in scaffolding * fix test runner return type * remove offending comments * add initial composition, and fix context bug * debug lines * check errors from node construction * specify Repo after Online option * add power/proof type initialization code * fix baseline composition * use new docker-images (build/run) introduced in the #48 PR * upgrade go-sdk to master (#51) * fix types for run.InvokeMap * fix miner actor sequence address * explictly specify listen address for nodes on the data network * make a separate full node for the miner * initialize the wallet for the full node before creating the storage node * go mod tidy * also set the listen address for the miner node * circleci to build the soup testplan * extract topics * test runner: pass the role map to doRun for generic runner * use a wrapper TestEnvironment to encapsulate the runenv and initCtx * embed RunEnv and InitContext into TestEnvironment for better ergonomics * remove empty import * extract stateReady Co-authored-by: Anton Evangelatov <anton.evangelatov@gmail.com>
31 lines
714 B
TOML
31 lines
714 B
TOML
name = "lotus-soup"
|
|
extra_sources = { "exec:go" = ["../extra/filecoin-ffi"] }
|
|
|
|
[defaults]
|
|
builder = "docker:go"
|
|
runner = "local:docker"
|
|
|
|
[builders."docker:go"]
|
|
enabled = true
|
|
build_base_image = "iptestground/oni-buildbase:v1"
|
|
runtime_image = "iptestground/oni-runtime:v1"
|
|
enable_go_build_cache = true
|
|
skip_runtime_image = false
|
|
|
|
[runners."local:docker"]
|
|
enabled = true
|
|
|
|
[runners."cluster:k8s"]
|
|
enabled = true
|
|
|
|
[[testcases]]
|
|
name = "lotus-baseline"
|
|
instances = { min = 1, max = 100, default = 5 }
|
|
|
|
[testcases.params]
|
|
clients = { type = "int", default = 1 }
|
|
miners = { type = "int", default = 1 }
|
|
balance = { type = "int", default = 1 }
|
|
sectors = { type = "int", default = 1 }
|
|
role = { type = "string" }
|