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.

41 lines
1.0 KiB

  1. package client_test
  2. import (
  3. "context"
  4. "fmt"
  5. "os"
  6. "testing"
  7. "github.com/stretchr/testify/assert"
  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 := os.MkdirTemp("/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, closer(ctx))
  28. assert.NoError(t, app.Close())
  29. node.Wait()
  30. _ = os.RemoveAll(dir)
  31. })
  32. return node, conf
  33. }