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.

42 lines
1.0 KiB

  1. package client_test
  2. import (
  3. "context"
  4. "fmt"
  5. "io/ioutil"
  6. "os"
  7. "testing"
  8. "github.com/stretchr/testify/assert"
  9. "github.com/stretchr/testify/require"
  10. "github.com/tendermint/tendermint/abci/example/kvstore"
  11. "github.com/tendermint/tendermint/config"
  12. "github.com/tendermint/tendermint/libs/service"
  13. rpctest "github.com/tendermint/tendermint/rpc/test"
  14. )
  15. func NodeSuite(t *testing.T) (service.Service, *config.Config) {
  16. t.Helper()
  17. ctx, cancel := context.WithCancel(context.Background())
  18. conf := rpctest.CreateConfig(t.Name())
  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. cancel()
  27. assert.NoError(t, node.Stop())
  28. assert.NoError(t, closer(ctx))
  29. assert.NoError(t, app.Close())
  30. node.Wait()
  31. _ = os.RemoveAll(dir)
  32. })
  33. return node, conf
  34. }