lotus/itests/cli_test.go

22 lines
511 B
Go
Raw Normal View History

2021-05-17 12:28:09 +00:00
package itests
import (
"os"
"testing"
"time"
"github.com/filecoin-project/lotus/cli"
2021-06-18 18:45:29 +00:00
"github.com/filecoin-project/lotus/itests/kit"
2021-05-17 12:28:09 +00:00
)
// TestClient does a basic test to exercise the client CLI commands.
func TestClient(t *testing.T) {
_ = os.Setenv("BELLMAN_NO_GPU", "1")
2021-06-18 18:45:29 +00:00
kit.QuietMiningLogs()
2021-05-17 12:28:09 +00:00
2021-06-14 10:07:50 +00:00
blockTime := 5 * time.Millisecond
2021-06-18 18:45:29 +00:00
client, _, ens := kit.EnsembleMinimal(t, kit.MockProofs(), kit.ThroughRPC())
2021-06-14 10:07:50 +00:00
ens.InterconnectAll().BeginMining(blockTime)
2021-06-18 18:45:29 +00:00
kit.RunClientTest(t, cli.Commands, client)
2021-05-17 12:28:09 +00:00
}