mirror of
https://github.com/tendermint/tendermint.git
synced 2026-09-21 07:24:36 +00:00
Full test coverage for rpc client
This commit is contained in:
+62
-31
@@ -17,22 +17,59 @@ func TestStatus(t *testing.T) {
|
|||||||
c := rpctest.GetClient()
|
c := rpctest.GetClient()
|
||||||
chainID := rpctest.GetConfig().GetString("chain_id")
|
chainID := rpctest.GetConfig().GetString("chain_id")
|
||||||
status, err := c.Status()
|
status, err := c.Status()
|
||||||
if assert.Nil(t, err) {
|
require.Nil(t, err, "%+v", err)
|
||||||
assert.Equal(t, chainID, status.NodeInfo.Network)
|
assert.Equal(t, chainID, status.NodeInfo.Network)
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Make sure info is correct (we connect properly)
|
// Make sure info is correct (we connect properly)
|
||||||
func TestInfo(t *testing.T) {
|
func TestInfo(t *testing.T) {
|
||||||
c := rpctest.GetClient()
|
c := rpctest.GetClient()
|
||||||
status, err := c.Status()
|
status, err := c.Status()
|
||||||
require.Nil(t, err)
|
require.Nil(t, err, "%+v", err)
|
||||||
info, err := c.ABCIInfo()
|
info, err := c.ABCIInfo()
|
||||||
require.Nil(t, err)
|
require.Nil(t, err, "%+v", err)
|
||||||
assert.EqualValues(t, status.LatestBlockHeight, info.Response.LastBlockHeight)
|
assert.EqualValues(t, status.LatestBlockHeight, info.Response.LastBlockHeight)
|
||||||
assert.True(t, strings.HasPrefix(info.Response.Data, "size:"))
|
assert.True(t, strings.HasPrefix(info.Response.Data, "size:"))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestNetInfo(t *testing.T) {
|
||||||
|
c := rpctest.GetClient()
|
||||||
|
netinfo, err := c.NetInfo()
|
||||||
|
require.Nil(t, err, "%+v", err)
|
||||||
|
assert.True(t, netinfo.Listening)
|
||||||
|
assert.Equal(t, 0, len(netinfo.Peers))
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestDialSeeds(t *testing.T) {
|
||||||
|
c := rpctest.GetClient()
|
||||||
|
// FIXME: fix server so it doesn't panic on invalid input
|
||||||
|
_, err := c.DialSeeds([]string{"12.34.56.78:12345"})
|
||||||
|
require.Nil(t, err, "%+v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestGenesisAndValidators(t *testing.T) {
|
||||||
|
c := rpctest.GetClient()
|
||||||
|
chainID := rpctest.GetConfig().GetString("chain_id")
|
||||||
|
|
||||||
|
// make sure this is the right genesis file
|
||||||
|
gen, err := c.Genesis()
|
||||||
|
require.Nil(t, err, "%+v", err)
|
||||||
|
assert.Equal(t, chainID, gen.Genesis.ChainID)
|
||||||
|
// get the genesis validator
|
||||||
|
require.Equal(t, 1, len(gen.Genesis.Validators))
|
||||||
|
gval := gen.Genesis.Validators[0]
|
||||||
|
|
||||||
|
// get the current validators
|
||||||
|
vals, err := c.Validators()
|
||||||
|
require.Nil(t, err, "%+v", err)
|
||||||
|
require.Equal(t, 1, len(vals.Validators))
|
||||||
|
val := vals.Validators[0]
|
||||||
|
|
||||||
|
// make sure the current set is also the genesis set
|
||||||
|
assert.Equal(t, gval.Amount, val.VotingPower)
|
||||||
|
assert.Equal(t, gval.PubKey, val.PubKey)
|
||||||
|
}
|
||||||
|
|
||||||
// Make some app checks
|
// Make some app checks
|
||||||
func TestAppCalls(t *testing.T) {
|
func TestAppCalls(t *testing.T) {
|
||||||
assert, require := assert.New(t), require.New(t)
|
assert, require := assert.New(t), require.New(t)
|
||||||
@@ -41,9 +78,9 @@ func TestAppCalls(t *testing.T) {
|
|||||||
assert.NotNil(err) // no block yet
|
assert.NotNil(err) // no block yet
|
||||||
k, v, tx := MakeTxKV()
|
k, v, tx := MakeTxKV()
|
||||||
_, err = c.BroadcastTxCommit(tx)
|
_, err = c.BroadcastTxCommit(tx)
|
||||||
require.Nil(err)
|
require.Nil(err, "%+v", err)
|
||||||
// wait before querying
|
// wait before querying
|
||||||
time.Sleep(time.Second * 2)
|
time.Sleep(time.Second * 1)
|
||||||
qres, err := c.ABCIQuery("/key", k, false)
|
qres, err := c.ABCIQuery("/key", k, false)
|
||||||
if assert.Nil(err) && assert.True(qres.Response.Code.IsOK()) {
|
if assert.Nil(err) && assert.True(qres.Response.Code.IsOK()) {
|
||||||
data := qres.Response
|
data := qres.Response
|
||||||
@@ -52,20 +89,35 @@ func TestAppCalls(t *testing.T) {
|
|||||||
}
|
}
|
||||||
// and we can even check the block is added
|
// and we can even check the block is added
|
||||||
block, err := c.Block(3)
|
block, err := c.Block(3)
|
||||||
assert.Nil(err) // now it's good :)
|
require.Nil(err, "%+v", err)
|
||||||
appHash := block.BlockMeta.Header.AppHash
|
appHash := block.BlockMeta.Header.AppHash
|
||||||
assert.True(len(appHash) > 0)
|
assert.True(len(appHash) > 0)
|
||||||
|
assert.EqualValues(3, block.BlockMeta.Header.Height)
|
||||||
|
|
||||||
|
// check blockchain info, now that we know there is info
|
||||||
|
// TODO: is this commented somewhere that they are returned
|
||||||
|
// in order of descending height???
|
||||||
|
info, err := c.BlockchainInfo(1, 3)
|
||||||
|
require.Nil(err, "%+v", err)
|
||||||
|
assert.True(info.LastHeight > 2)
|
||||||
|
if assert.Equal(3, len(info.BlockMetas)) {
|
||||||
|
lastMeta := info.BlockMetas[0]
|
||||||
|
assert.EqualValues(3, lastMeta.Header.Height)
|
||||||
|
bMeta := block.BlockMeta
|
||||||
|
assert.Equal(bMeta.Header.AppHash, lastMeta.Header.AppHash)
|
||||||
|
assert.Equal(bMeta.BlockID, lastMeta.BlockID)
|
||||||
|
}
|
||||||
|
|
||||||
// and get the corresponding commit with the same apphash
|
// and get the corresponding commit with the same apphash
|
||||||
commit, err := c.Commit(3)
|
commit, err := c.Commit(3)
|
||||||
assert.Nil(err) // now it's good :)
|
require.Nil(err, "%+v", err)
|
||||||
cappHash := commit.Header.AppHash
|
cappHash := commit.Header.AppHash
|
||||||
assert.Equal(appHash, cappHash)
|
assert.Equal(appHash, cappHash)
|
||||||
assert.NotNil(commit.Commit)
|
assert.NotNil(commit.Commit)
|
||||||
|
|
||||||
// compare the commits (note Commit(2) has commit from Block(3))
|
// compare the commits (note Commit(2) has commit from Block(3))
|
||||||
commit2, err := c.Commit(2)
|
commit2, err := c.Commit(2)
|
||||||
assert.Nil(err) // now it's good :)
|
require.Nil(err, "%+v", err)
|
||||||
assert.Equal(block.Block.LastCommit, commit2.Commit)
|
assert.Equal(block.Block.LastCommit, commit2.Commit)
|
||||||
|
|
||||||
// and we got a proof that works!
|
// and we got a proof that works!
|
||||||
@@ -82,27 +134,6 @@ func TestAppCalls(t *testing.T) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// run most calls just to make sure no syntax errors
|
|
||||||
func TestNoErrors(t *testing.T) {
|
|
||||||
assert := assert.New(t)
|
|
||||||
c := rpctest.GetClient()
|
|
||||||
_, err := c.NetInfo()
|
|
||||||
assert.Nil(err)
|
|
||||||
_, err = c.BlockchainInfo(0, 4)
|
|
||||||
assert.Nil(err)
|
|
||||||
// TODO: check with a valid height
|
|
||||||
_, err = c.Block(1000)
|
|
||||||
assert.NotNil(err)
|
|
||||||
// maybe this is an error???
|
|
||||||
// _, err = c.DialSeeds([]string{"one", "two"})
|
|
||||||
// assert.Nil(err)
|
|
||||||
gen, err := c.Genesis()
|
|
||||||
if assert.Nil(err) {
|
|
||||||
chainID := rpctest.GetConfig().GetString("chain_id")
|
|
||||||
assert.Equal(chainID, gen.Genesis.ChainID)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestSubscriptions(t *testing.T) {
|
func TestSubscriptions(t *testing.T) {
|
||||||
assert, require := assert.New(t), require.New(t)
|
assert, require := assert.New(t), require.New(t)
|
||||||
c := rpctest.GetClient()
|
c := rpctest.GetClient()
|
||||||
|
|||||||
Reference in New Issue
Block a user