You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
973 B

  1. package client_test
  2. import (
  3. "context"
  4. "fmt"
  5. "io/ioutil"
  6. "os"
  7. "testing"
  8. "github.com/stretchr/testify/require"
  9. "github.com/tendermint/tendermint/abci/example/kvstore"
  10. "github.com/tendermint/tendermint/config"
  11. "github.com/tendermint/tendermint/libs/service"
  12. rpctest "github.com/tendermint/tendermint/rpc/test"
  13. )
  14. func NodeSuite(t *testing.T) (service.Service, *config.Config) {
  15. t.Helper()
  16. ctx, cancel := context.WithCancel(context.Background())
  17. conf, err := rpctest.CreateConfig(t.Name())
  18. require.NoError(t, err)
  19. // start a tendermint node in the background to test against
  20. dir, err := ioutil.TempDir("/tmp", fmt.Sprint("rpc-client-test-", t.Name()))
  21. require.NoError(t, err)
  22. app := kvstore.NewPersistentKVStoreApplication(dir)
  23. node, closer, err := rpctest.StartTendermint(ctx, conf, app, rpctest.SuppressStdout)
  24. require.NoError(t, err)
  25. t.Cleanup(func() {
  26. _ = closer(ctx)
  27. cancel()
  28. app.Close()
  29. _ = os.RemoveAll(dir)
  30. })
  31. return node, conf
  32. }