mirror of
https://github.com/fluencelabs/tendermint
synced 2025-04-25 14:52:17 +00:00
Add tests to protobuf objects for pr coverage
This commit is contained in:
parent
9c5e1a824d
commit
eb6d412a82
31
types/types_test.go
Normal file
31
types/types_test.go
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
package types
|
||||||
|
|
||||||
|
import (
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
asrt "github.com/stretchr/testify/assert"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestConsensusParams(t *testing.T) {
|
||||||
|
assert := asrt.New(t)
|
||||||
|
|
||||||
|
params := &ConsensusParams{
|
||||||
|
BlockSize: &BlockSize{MaxGas: 12345},
|
||||||
|
BlockGossip: &BlockGossip{BlockPartSizeBytes: 54321},
|
||||||
|
}
|
||||||
|
var noParams *ConsensusParams // nil
|
||||||
|
|
||||||
|
// no error with nil fields
|
||||||
|
assert.Nil(noParams.GetBlockSize())
|
||||||
|
assert.EqualValues(noParams.GetBlockSize().GetMaxGas(), 0)
|
||||||
|
|
||||||
|
// get values with real fields
|
||||||
|
assert.NotNil(params.GetBlockSize())
|
||||||
|
assert.EqualValues(params.GetBlockSize().GetMaxTxs(), 0)
|
||||||
|
assert.EqualValues(params.GetBlockSize().GetMaxGas(), 12345)
|
||||||
|
assert.NotNil(params.GetBlockGossip())
|
||||||
|
assert.EqualValues(params.GetBlockGossip().GetBlockPartSizeBytes(), 54321)
|
||||||
|
assert.Nil(params.GetTxSize())
|
||||||
|
assert.EqualValues(params.GetTxSize().GetMaxBytes(), 0)
|
||||||
|
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user