ce8a94a98e
* Changes necessary for enforced custom account encoding/decoding and keyring keybase changes * updates cosmos dependency and fixes inconsistency in gas usage for simulated/real txs * Update PR changes * Remove unused password prompt when using OS keyring * Update from changes to sdk * Update to merged PR commit :the_horns: * updated code to handle keyring backend options * update documentation and replace cosmos-sdk with fork (temporarily) * update cosmos dependency from fork * update documentation
59 lines
1.6 KiB
Go
59 lines
1.6 KiB
Go
package types
|
|
|
|
import (
|
|
"encoding/json"
|
|
"testing"
|
|
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
"github.com/cosmos/cosmos-sdk/x/auth"
|
|
"github.com/stretchr/testify/require"
|
|
tmamino "github.com/tendermint/tendermint/crypto/encoding/amino"
|
|
"github.com/tendermint/tendermint/crypto/secp256k1"
|
|
|
|
emintcrypto "github.com/cosmos/ethermint/crypto"
|
|
)
|
|
|
|
func init() {
|
|
tmamino.RegisterKeyType(emintcrypto.PubKeySecp256k1{}, emintcrypto.PubKeyAminoName)
|
|
tmamino.RegisterKeyType(emintcrypto.PrivKeySecp256k1{}, emintcrypto.PrivKeyAminoName)
|
|
}
|
|
|
|
func TestEthermintAccountJSON(t *testing.T) {
|
|
pubkey := secp256k1.GenPrivKey().PubKey()
|
|
addr := sdk.AccAddress(pubkey.Address())
|
|
coins := sdk.NewCoins(sdk.NewInt64Coin("test", 5))
|
|
baseAcc := auth.NewBaseAccount(addr, coins, pubkey, 10, 50)
|
|
ethAcc := Account{BaseAccount: baseAcc, CodeHash: []byte{1, 2}}
|
|
|
|
bz, err := json.Marshal(ethAcc)
|
|
require.NoError(t, err)
|
|
|
|
bz1, err := ethAcc.MarshalJSON()
|
|
require.NoError(t, err)
|
|
require.Equal(t, string(bz1), string(bz))
|
|
|
|
var a Account
|
|
require.NoError(t, json.Unmarshal(bz, &a))
|
|
require.Equal(t, ethAcc.String(), a.String())
|
|
require.Equal(t, ethAcc.PubKey, a.PubKey)
|
|
}
|
|
|
|
func TestEthermintPubKeyJSON(t *testing.T) {
|
|
privkey, err := emintcrypto.GenerateKey()
|
|
require.NoError(t, err)
|
|
bz := privkey.PubKey().Bytes()
|
|
|
|
pubk, err := tmamino.PubKeyFromBytes(bz)
|
|
require.NoError(t, err)
|
|
require.Equal(t, pubk, privkey.PubKey())
|
|
}
|
|
|
|
func TestSecpPubKeyJSON(t *testing.T) {
|
|
pubkey := secp256k1.GenPrivKey().PubKey()
|
|
bz := pubkey.Bytes()
|
|
|
|
pubk, err := tmamino.PubKeyFromBytes(bz)
|
|
require.NoError(t, err)
|
|
require.Equal(t, pubk, pubkey)
|
|
}
|