mirror of
https://github.com/fluencelabs/tendermint
synced 2025-04-24 22:32:15 +00:00
* remove gogoproto from tools because it's not a binary * update protobuf version to 3.6.1 in `make get_protoc` * update libs/common/types.pb.go and rpc/grpc/types.pb.go * fix app tests
34 lines
832 B
Go
34 lines
832 B
Go
package core_grpc_test
|
|
|
|
import (
|
|
"context"
|
|
"os"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"github.com/tendermint/tendermint/abci/example/kvstore"
|
|
"github.com/tendermint/tendermint/rpc/grpc"
|
|
"github.com/tendermint/tendermint/rpc/test"
|
|
)
|
|
|
|
func TestMain(m *testing.M) {
|
|
// start a tendermint node in the background to test against
|
|
app := kvstore.NewKVStoreApplication()
|
|
node := rpctest.StartTendermint(app)
|
|
code := m.Run()
|
|
|
|
// and shut down proper at the end
|
|
node.Stop()
|
|
node.Wait()
|
|
os.Exit(code)
|
|
}
|
|
|
|
func TestBroadcastTx(t *testing.T) {
|
|
require := require.New(t)
|
|
res, err := rpctest.GetGRPCClient().BroadcastTx(context.Background(), &core_grpc.RequestBroadcastTx{Tx: []byte("this is a tx")})
|
|
require.Nil(err, "%+v", err)
|
|
require.EqualValues(0, res.CheckTx.Code)
|
|
require.EqualValues(0, res.DeliverTx.Code)
|
|
}
|