2020-06-24 10:52:23 +00:00
|
|
|
name = "lotus-soup"
|
|
|
|
extra_sources = { "exec:go" = ["../extra/filecoin-ffi"] }
|
|
|
|
|
|
|
|
[defaults]
|
|
|
|
builder = "docker:go"
|
|
|
|
runner = "local:docker"
|
|
|
|
|
|
|
|
[builders."docker:go"]
|
|
|
|
enabled = true
|
2020-07-01 18:36:46 +00:00
|
|
|
build_base_image = "iptestground/oni-buildbase:v3"
|
2020-07-01 18:48:23 +00:00
|
|
|
runtime_image = "iptestground/oni-runtime:v2"
|
2020-06-24 10:52:23 +00:00
|
|
|
|
|
|
|
[runners."local:docker"]
|
|
|
|
enabled = true
|
|
|
|
|
|
|
|
[runners."cluster:k8s"]
|
|
|
|
enabled = true
|
|
|
|
|
|
|
|
[[testcases]]
|
2020-07-01 16:29:09 +00:00
|
|
|
name = "deals-e2e"
|
2020-06-24 10:52:23 +00:00
|
|
|
instances = { min = 1, max = 100, default = 5 }
|
|
|
|
|
|
|
|
[testcases.params]
|
2020-07-01 16:29:09 +00:00
|
|
|
clients = { type = "int", default = 1 }
|
|
|
|
miners = { type = "int", default = 1 }
|
|
|
|
balance = { type = "int", default = 1 }
|
|
|
|
sectors = { type = "int", default = 1 }
|
|
|
|
role = { type = "string" }
|
2020-06-24 17:39:06 +00:00
|
|
|
|
2020-06-26 13:24:01 +00:00
|
|
|
genesis_timestamp_offset = { type = "int", default = 0 }
|
|
|
|
|
2020-06-25 14:55:44 +00:00
|
|
|
random_beacon_type = { type = "enum", default = "mock", options = ["mock", "local-drand", "external-drand"] }
|
2020-06-24 17:39:06 +00:00
|
|
|
|
2020-06-25 14:55:44 +00:00
|
|
|
# Params relevant to drand nodes. drand nodes should have role="drand", and must all be
|
|
|
|
# in the same composition group. There must be at least threshold drand nodes.
|
|
|
|
# To get lotus nodes to actually use the drand nodes, you must set random_beacon_type="local-drand"
|
|
|
|
# for the lotus node groups.
|
2020-06-24 17:39:06 +00:00
|
|
|
drand_period = { type = "duration", default="10s" }
|
|
|
|
drand_threshold = { type = "int", default = 2 }
|
2020-06-25 14:55:44 +00:00
|
|
|
drand_gossip_relay = { type = "bool", default = true }
|
2020-06-26 15:00:36 +00:00
|
|
|
drand_log_level = { type = "string", default="info" }
|
2020-06-26 11:12:22 +00:00
|
|
|
|
|
|
|
# Params relevant to pubsub tracing
|
|
|
|
enable_pubsub_tracer = { type = "bool", default = false }
|
2020-06-29 16:32:43 +00:00
|
|
|
|
2020-06-26 14:07:35 +00:00
|
|
|
[[testcases]]
|
|
|
|
name = "drand-halting"
|
|
|
|
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" }
|
2020-06-30 14:22:23 +00:00
|
|
|
genesis_timestamp_offset = { type = "int", default = 0 }
|
|
|
|
|
2020-06-26 14:07:35 +00:00
|
|
|
|
|
|
|
random_beacon_type = { type = "enum", default = "local-drand", options = ["mock", "local-drand", "external-drand"] }
|
|
|
|
|
|
|
|
# Params relevant to drand nodes. drand nodes should have role="drand", and must all be
|
|
|
|
# in the same composition group. There must be at least threshold drand nodes.
|
|
|
|
# To get lotus nodes to actually use the drand nodes, you must set random_beacon_type="local-drand"
|
|
|
|
# for the lotus node groups.
|
|
|
|
drand_period = { type = "duration", default="10s" }
|
|
|
|
drand_threshold = { type = "int", default = 2 }
|
|
|
|
drand_gossip_relay = { type = "bool", default = true }
|
2020-06-25 21:21:49 +00:00
|
|
|
drand_log_level = { type = "string", default="info" }
|
2020-06-30 14:17:31 +00:00
|
|
|
suspend_events = { type = "string", default="", desc = "a sequence of halt/resume/wait events separated by '->'" }
|
2020-06-26 14:23:17 +00:00
|
|
|
|
2020-06-26 11:12:22 +00:00
|
|
|
# Params relevant to pubsub tracing
|
2020-06-26 14:23:17 +00:00
|
|
|
enable_pubsub_tracer = { type = "bool", default = false } # Mining Mode: synchronized -vs- natural time
|
2020-06-29 16:32:43 +00:00
|
|
|
mining_mode = { type = "enum", default = "synchronized", options = ["synchronized", "natural"] }
|
2020-06-30 11:07:00 +00:00
|
|
|
|
|
|
|
[[testcases]]
|
2020-07-02 09:49:27 +00:00
|
|
|
name = "deals-stress-test"
|
2020-06-30 11:07:00 +00:00
|
|
|
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" }
|
|
|
|
|
|
|
|
genesis_timestamp_offset = { type = "int", default = 0 }
|
|
|
|
|
|
|
|
random_beacon_type = { type = "enum", default = "mock", options = ["mock", "local-drand", "external-drand"] }
|
|
|
|
|
|
|
|
# Params relevant to drand nodes. drand nodes should have role="drand", and must all be
|
|
|
|
# in the same composition group. There must be at least threshold drand nodes.
|
|
|
|
# To get lotus nodes to actually use the drand nodes, you must set random_beacon_type="local-drand"
|
|
|
|
# for the lotus node groups.
|
|
|
|
drand_period = { type = "duration", default="10s" }
|
|
|
|
drand_threshold = { type = "int", default = 2 }
|
|
|
|
drand_gossip_relay = { type = "bool", default = true }
|
|
|
|
|
|
|
|
# Params relevant to pubsub tracing
|
|
|
|
enable_pubsub_tracer = { type = "bool", default = false }
|
|
|
|
|
|
|
|
# Mining Mode: synchronized -vs- natural time
|
|
|
|
mining_mode = { type = "enum", default = "synchronized", options = ["synchronized", "natural"] }
|
|
|
|
|
|
|
|
deals = { type = "int", default = 1 }
|
|
|
|
deal_mode = { type = "enum", default = "serial", options = ["serial", "concurrent"] }
|