128 lines
4.1 KiB
Go
128 lines
4.1 KiB
Go
package app
|
|
|
|
import (
|
|
"encoding/hex"
|
|
"encoding/json"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
|
|
cmn "github.com/tendermint/tmlibs/common"
|
|
"github.com/tendermint/tmlibs/log"
|
|
|
|
"github.com/tendermint/basecoin/modules/coin"
|
|
)
|
|
|
|
const genesisFilepath = "./testdata/genesis.json"
|
|
const genesisAcctFilepath = "./testdata/genesis2.json"
|
|
|
|
func TestLoadGenesisDoNotFailIfAppOptionsAreMissing(t *testing.T) {
|
|
logger := log.TestingLogger()
|
|
store, err := NewStore("", 0, logger)
|
|
require.Nil(t, err, "%+v", err)
|
|
app := NewBasecoin(DefaultHandler("mycoin"), store, logger)
|
|
err = app.LoadGenesis("./testdata/genesis3.json")
|
|
require.Nil(t, err, "%+v", err)
|
|
}
|
|
|
|
func TestLoadGenesis(t *testing.T) {
|
|
assert, require := assert.New(t), require.New(t)
|
|
|
|
logger := log.TestingLogger()
|
|
store, err := NewStore("", 0, logger)
|
|
require.Nil(err, "%+v", err)
|
|
|
|
app := NewBasecoin(DefaultHandler("mycoin"), store, logger)
|
|
err = app.LoadGenesis(genesisFilepath)
|
|
require.Nil(err, "%+v", err)
|
|
|
|
// check the chain id
|
|
assert.Equal("foo_bar_chain", app.GetChainID())
|
|
|
|
// and check the account info - previously calculated values
|
|
addr, _ := hex.DecodeString("eb98e0688217cfdeb70eddf4b33cdcc37fc53197")
|
|
|
|
coins, err := getAddr(addr, app.GetState())
|
|
require.Nil(err)
|
|
assert.True(coins.IsPositive())
|
|
|
|
// make sure balance is proper
|
|
assert.Equal(2, len(coins))
|
|
assert.True(coins.IsValid())
|
|
// note, that we now sort them to be valid
|
|
assert.EqualValues(654321, coins[0].Amount)
|
|
assert.EqualValues("ETH", coins[0].Denom)
|
|
assert.EqualValues(12345, coins[1].Amount)
|
|
assert.EqualValues("blank", coins[1].Denom)
|
|
}
|
|
|
|
// Fix for issue #89, change the parse format for accounts in genesis.json
|
|
func TestLoadGenesisAccountAddress(t *testing.T) {
|
|
assert, require := assert.New(t), require.New(t)
|
|
|
|
logger := log.TestingLogger()
|
|
store, err := NewStore("", 0, logger)
|
|
require.Nil(err, "%+v", err)
|
|
|
|
app := NewBasecoin(DefaultHandler("mycoin"), store, logger)
|
|
err = app.LoadGenesis(genesisAcctFilepath)
|
|
require.Nil(err, "%+v", err)
|
|
|
|
// check the chain id
|
|
assert.Equal("addr_accounts_chain", app.GetChainID())
|
|
|
|
// make sure the accounts were set properly
|
|
cases := []struct {
|
|
addr string
|
|
exists bool
|
|
hasPubkey bool
|
|
coins coin.Coins
|
|
}{
|
|
// this comes from a public key, should be stored proper (alice)
|
|
{"62035D628DE7543332544AA60D90D3693B6AD51B", true, true, coin.Coins{{"one", 111}}},
|
|
// this comes from an address, should be stored proper (bob)
|
|
{"C471FB670E44D219EE6DF2FC284BE38793ACBCE1", true, false, coin.Coins{{"two", 222}}},
|
|
// this one had a mismatched address and pubkey, should not store under either (carl)
|
|
{"1234ABCDD18E8EFE3FFC4B0506BF9BF8E5B0D9E9", false, false, nil}, // this is given addr
|
|
{"700BEC5ED18E8EFE3FFC4B0506BF9BF8E5B0D9E9", false, false, nil}, // this is addr of the given pubkey
|
|
// this comes from a secp256k1 public key, should be stored proper (sam)
|
|
{"979F080B1DD046C452C2A8A250D18646C6B669D4", true, true, coin.Coins{{"four", 444}}},
|
|
}
|
|
|
|
for i, tc := range cases {
|
|
addr, err := hex.DecodeString(tc.addr)
|
|
require.Nil(err, tc.addr)
|
|
coins, err := getAddr(addr, app.GetState())
|
|
require.Nil(err, "%+v", err)
|
|
if !tc.exists {
|
|
assert.True(coins.IsZero(), "%d", i)
|
|
} else if assert.False(coins.IsZero(), "%d", i) {
|
|
// it should and does exist...
|
|
assert.True(coins.IsValid())
|
|
assert.Equal(tc.coins, coins)
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestParseGenesisList(t *testing.T) {
|
|
assert, require := assert.New(t), require.New(t)
|
|
|
|
bytes, err := cmn.ReadFile(genesisFilepath)
|
|
require.Nil(err, "loading genesis file %+v", err)
|
|
|
|
// the basecoin genesis go-wire/data :)
|
|
genDoc := new(FullGenesisDoc)
|
|
err = json.Unmarshal(bytes, genDoc)
|
|
require.Nil(err, "unmarshaling genesis file %+v", err)
|
|
|
|
pluginOpts, err := parseGenesisList(genDoc.AppOptions.PluginOptions)
|
|
require.Nil(err, "%+v", err)
|
|
genDoc.AppOptions.pluginOptions = pluginOpts
|
|
|
|
assert.Equal(genDoc.AppOptions.pluginOptions[0].Key, "plugin1/key1")
|
|
assert.Equal(genDoc.AppOptions.pluginOptions[1].Key, "plugin1/key2")
|
|
assert.Equal(genDoc.AppOptions.pluginOptions[0].Value, "value1")
|
|
assert.Equal(genDoc.AppOptions.pluginOptions[1].Value, "value2")
|
|
}
|