package types
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
|
|
abci "github.com/tendermint/tendermint/abci/types"
|
|
"github.com/tendermint/tendermint/crypto"
|
|
"github.com/tendermint/tendermint/crypto/ed25519"
|
|
"github.com/tendermint/tendermint/crypto/encoding"
|
|
)
|
|
|
|
func TestABCIPubKey(t *testing.T) {
|
|
pkEd := ed25519.GenPrivKey().PubKey()
|
|
err := testABCIPubKey(t, pkEd, ABCIPubKeyTypeEd25519)
|
|
assert.NoError(t, err)
|
|
}
|
|
|
|
func testABCIPubKey(t *testing.T, pk crypto.PubKey, typeStr string) error {
|
|
abciPubKey, err := encoding.PubKeyToProto(pk)
|
|
require.NoError(t, err)
|
|
pk2, err := encoding.PubKeyFromProto(abciPubKey)
|
|
require.NoError(t, err)
|
|
require.Equal(t, pk, pk2)
|
|
return nil
|
|
}
|
|
|
|
func TestABCIValidators(t *testing.T) {
|
|
pkEd := ed25519.GenPrivKey().PubKey()
|
|
|
|
// correct validator
|
|
tmValExpected := NewValidator(pkEd, 10)
|
|
|
|
tmVal := NewValidator(pkEd, 10)
|
|
|
|
abciVal := TM2PB.ValidatorUpdate(tmVal)
|
|
tmVals, err := PB2TM.ValidatorUpdates([]abci.ValidatorUpdate{abciVal})
|
|
assert.Nil(t, err)
|
|
assert.Equal(t, tmValExpected, tmVals[0])
|
|
|
|
abciVals := TM2PB.ValidatorUpdates(NewValidatorSet(tmVals))
|
|
assert.Equal(t, []abci.ValidatorUpdate{abciVal}, abciVals)
|
|
|
|
// val with address
|
|
tmVal.Address = pkEd.Address()
|
|
|
|
abciVal = TM2PB.ValidatorUpdate(tmVal)
|
|
tmVals, err = PB2TM.ValidatorUpdates([]abci.ValidatorUpdate{abciVal})
|
|
assert.Nil(t, err)
|
|
assert.Equal(t, tmValExpected, tmVals[0])
|
|
}
|
|
|
|
func TestABCIValidatorWithoutPubKey(t *testing.T) {
|
|
pkEd := ed25519.GenPrivKey().PubKey()
|
|
|
|
abciVal := TM2PB.Validator(NewValidator(pkEd, 10))
|
|
|
|
// pubkey must be nil
|
|
tmValExpected := abci.Validator{
|
|
Address: pkEd.Address(),
|
|
Power: 10,
|
|
}
|
|
|
|
assert.Equal(t, tmValExpected, abciVal)
|
|
}
|