2020-06-24 10:52:23 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2021-01-26 10:53:27 +00:00
|
|
|
"github.com/filecoin-project/lotus/testplans/lotus-soup/paych"
|
|
|
|
"github.com/filecoin-project/lotus/testplans/lotus-soup/rfwp"
|
|
|
|
"github.com/filecoin-project/lotus/testplans/lotus-soup/testkit"
|
2020-07-02 15:44:13 +00:00
|
|
|
|
2020-07-07 12:58:09 +00:00
|
|
|
"github.com/testground/sdk-go/run"
|
2020-06-24 10:52:23 +00:00
|
|
|
)
|
|
|
|
|
2020-07-01 16:29:09 +00:00
|
|
|
var cases = map[string]interface{}{
|
2020-07-27 11:57:01 +00:00
|
|
|
"deals-e2e": testkit.WrapTestEnvironment(dealsE2E),
|
|
|
|
"recovery-failed-windowed-post": testkit.WrapTestEnvironment(rfwp.RecoveryFromFailedWindowedPoStE2E),
|
|
|
|
"deals-stress": testkit.WrapTestEnvironment(dealsStress),
|
|
|
|
"drand-halting": testkit.WrapTestEnvironment(dealsE2E),
|
2020-09-16 10:51:23 +00:00
|
|
|
"drand-outage": testkit.WrapTestEnvironment(dealsE2E),
|
2020-09-16 15:29:37 +00:00
|
|
|
"paych-stress": testkit.WrapTestEnvironment(paych.Stress),
|
2020-06-24 10:52:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func main() {
|
2020-07-07 16:36:22 +00:00
|
|
|
sanityCheck()
|
|
|
|
|
2020-07-01 16:29:09 +00:00
|
|
|
run.InvokeMap(cases)
|
2020-06-24 10:52:23 +00:00
|
|
|
}
|