Fixed LCD tests

This commit is contained in:
Matt Bell 2018-05-21 10:46:09 +09:00
parent ae9a9eaaa3
commit cb107c7383
1 changed files with 36 additions and 47 deletions

View File

@ -33,8 +33,7 @@ import (
client "github.com/cosmos/cosmos-sdk/client" client "github.com/cosmos/cosmos-sdk/client"
keys "github.com/cosmos/cosmos-sdk/client/keys" keys "github.com/cosmos/cosmos-sdk/client/keys"
bapp "github.com/cosmos/cosmos-sdk/examples/basecoin/app" gapp "github.com/cosmos/cosmos-sdk/cmd/gaia/app"
btypes "github.com/cosmos/cosmos-sdk/examples/basecoin/types"
tests "github.com/cosmos/cosmos-sdk/tests" tests "github.com/cosmos/cosmos-sdk/tests"
sdk "github.com/cosmos/cosmos-sdk/types" sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/cosmos/cosmos-sdk/x/stake" "github.com/cosmos/cosmos-sdk/x/stake"
@ -321,9 +320,6 @@ func TestCandidates(t *testing.T) {
func TestBond(t *testing.T) { func TestBond(t *testing.T) {
acc := getAccount(t, sendAddr)
initialBalance := acc.GetCoins()
// create bond TX // create bond TX
resultTx := doBond(t, port, seed) resultTx := doBond(t, port, seed)
tests.WaitForHeight(resultTx.Height+1, port) tests.WaitForHeight(resultTx.Height+1, port)
@ -333,22 +329,17 @@ func TestBond(t *testing.T) {
assert.Equal(t, uint32(0), resultTx.DeliverTx.Code) assert.Equal(t, uint32(0), resultTx.DeliverTx.Code)
// query sender // query sender
acc = getAccount(t, sendAddr) acc := getAccount(t, sendAddr)
coins := acc.GetCoins() coins := acc.GetCoins()
mycoins := coins[0] assert.Equal(t, int64(9999900), coins.AmountOf(stakeDenom))
assert.Equal(t, coinDenom, mycoins.Denom)
assert.Equal(t, initialBalance[0].Amount-1, mycoins.Amount)
// query candidate // query candidate
bond := getDelegatorBond(t, sendAddr, candidateAddr1) bond := getDelegatorBond(t, sendAddr, candidateAddr1)
assert.Equal(t, "foo", bond.Shares.String()) assert.Equal(t, "100/1", bond.Shares.String())
} }
func TestUnbond(t *testing.T) { func TestUnbond(t *testing.T) {
acc := getAccount(t, sendAddr)
initialBalance := acc.GetCoins()
// create unbond TX // create unbond TX
resultTx := doUnbond(t, port, seed) resultTx := doUnbond(t, port, seed)
tests.WaitForHeight(resultTx.Height+1, port) tests.WaitForHeight(resultTx.Height+1, port)
@ -358,15 +349,13 @@ func TestUnbond(t *testing.T) {
assert.Equal(t, uint32(0), resultTx.DeliverTx.Code) assert.Equal(t, uint32(0), resultTx.DeliverTx.Code)
// query sender // query sender
acc = getAccount(t, sendAddr) acc := getAccount(t, sendAddr)
coins := acc.GetCoins() coins := acc.GetCoins()
mycoins := coins[0] assert.Equal(t, int64(9999911), coins.AmountOf(stakeDenom))
assert.Equal(t, coinDenom, mycoins.Denom)
assert.Equal(t, initialBalance[0].Amount, mycoins.Amount)
// query candidate // query candidate
bond := getDelegatorBond(t, sendAddr, candidateAddr1) bond := getDelegatorBond(t, sendAddr, candidateAddr1)
assert.Equal(t, "foo", bond.Shares.String()) assert.Equal(t, "99/1", bond.Shares.String())
} }
//__________________________________________________________ //__________________________________________________________
@ -398,12 +387,12 @@ func startTMAndLCD() (*nm.Node, net.Listener, error) {
config.Consensus.SkipTimeoutCommit = false config.Consensus.SkipTimeoutCommit = false
logger := log.NewTMLogger(log.NewSyncWriter(os.Stdout)) logger := log.NewTMLogger(log.NewSyncWriter(os.Stdout))
logger = log.NewFilter(logger, log.AllowError()) // logger = log.NewFilter(logger, log.AllowError())
privValidatorFile := config.PrivValidatorFile() privValidatorFile := config.PrivValidatorFile()
privVal := pvm.LoadOrGenFilePV(privValidatorFile) privVal := pvm.LoadOrGenFilePV(privValidatorFile)
db := dbm.NewMemDB() db := dbm.NewMemDB()
app := bapp.NewBasecoinApp(logger, db) app := gapp.NewGaiaApp(logger, db)
cdc = bapp.MakeCodec() // XXX cdc = gapp.MakeCodec() // XXX
genesisFile := config.GenesisFile() genesisFile := config.GenesisFile()
genDoc, err := tmtypes.GenesisDocFromFile(genesisFile) genDoc, err := tmtypes.GenesisDocFromFile(genesisFile)
@ -415,27 +404,24 @@ func startTMAndLCD() (*nm.Node, net.Listener, error) {
tmtypes.GenesisValidator{ tmtypes.GenesisValidator{
PubKey: crypto.GenPrivKeyEd25519().PubKey(), PubKey: crypto.GenPrivKeyEd25519().PubKey(),
Power: 1, Power: 1,
Name: "val1", Name: "val",
},
tmtypes.GenesisValidator{
PubKey: crypto.GenPrivKeyEd25519().PubKey(),
Power: 1,
Name: "val2",
}, },
) )
candidateAddr1 = hex.EncodeToString(genDoc.Validators[1].PubKey.Address()) candidateAddr1 = hex.EncodeToString(genDoc.Validators[0].PubKey.Address())
candidateAddr2 = hex.EncodeToString(genDoc.Validators[2].PubKey.Address()) candidateAddr2 = hex.EncodeToString(genDoc.Validators[1].PubKey.Address())
coins := sdk.Coins{{coinDenom, coinAmount}} coins := sdk.Coins{
appState := map[string]interface{}{ {coinDenom, coinAmount},
"accounts": []*btypes.GenesisAccount{ {stakeDenom, coinAmount},
}
appState := gapp.GenesisState{
Accounts: []gapp.GenesisAccount{
{ {
Name: "tester",
Address: pubKey.Address(), Address: pubKey.Address(),
Coins: coins, Coins: coins,
}, },
}, },
"stake": stake.GenesisState{ StakeData: stake.GenesisState{
Pool: stake.Pool{ Pool: stake.Pool{
TotalSupply: 1650, TotalSupply: 1650,
BondedShares: sdk.NewRat(200, 1), BondedShares: sdk.NewRat(200, 1),
@ -456,9 +442,9 @@ func startTMAndLCD() (*nm.Node, net.Listener, error) {
Candidates: []stake.Candidate{ Candidates: []stake.Candidate{
{ {
Status: 1, Status: 1,
Address: genDoc.Validators[1].PubKey.Address(), Address: genDoc.Validators[0].PubKey.Address(),
PubKey: genDoc.Validators[1].PubKey, PubKey: genDoc.Validators[0].PubKey,
Assets: sdk.NewRat(100, 1), Assets: sdk.NewRat(1000, 1),
Liabilities: sdk.ZeroRat(), Liabilities: sdk.ZeroRat(),
Description: stake.Description{ Description: stake.Description{
Moniker: "validator1", Moniker: "validator1",
@ -468,8 +454,8 @@ func startTMAndLCD() (*nm.Node, net.Listener, error) {
}, },
{ {
Status: 1, Status: 1,
Address: genDoc.Validators[2].PubKey.Address(), Address: genDoc.Validators[1].PubKey.Address(),
PubKey: genDoc.Validators[2].PubKey, PubKey: genDoc.Validators[1].PubKey,
Assets: sdk.NewRat(100, 1), Assets: sdk.NewRat(100, 1),
Liabilities: sdk.ZeroRat(), Liabilities: sdk.ZeroRat(),
Description: stake.Description{ Description: stake.Description{
@ -482,7 +468,7 @@ func startTMAndLCD() (*nm.Node, net.Listener, error) {
}, },
} }
stateBytes, err := json.Marshal(appState) stateBytes, err := cdc.MarshalJSONIndent(appState, "", " ")
if err != nil { if err != nil {
return nil, nil, err return nil, nil, err
} }
@ -618,7 +604,7 @@ func doIBCTransfer(t *testing.T, port, seed string) (resultTx ctypes.ResultBroad
func getDelegatorBond(t *testing.T, delegatorAddr, candidateAddr string) stake.DelegatorBond { func getDelegatorBond(t *testing.T, delegatorAddr, candidateAddr string) stake.DelegatorBond {
// get the account to get the sequence // get the account to get the sequence
res, body := request(t, port, "GET", "/stake/"+delegatorAddr+"/bonding_info/"+candidateAddr, nil) res, body := request(t, port, "GET", "/stake/"+delegatorAddr+"/bonding_status/"+candidateAddr, nil)
require.Equal(t, http.StatusOK, res.StatusCode, body) require.Equal(t, http.StatusOK, res.StatusCode, body)
var bond stake.DelegatorBond var bond stake.DelegatorBond
err := cdc.UnmarshalJSON([]byte(body), &bond) err := cdc.UnmarshalJSON([]byte(body), &bond)
@ -657,10 +643,11 @@ func doBond(t *testing.T, port, seed string) (resultTx ctypes.ResultBroadcastTxC
res, body := request(t, port, "POST", "/stake/bondunbond", jsonStr) res, body := request(t, port, "POST", "/stake/bondunbond", jsonStr)
require.Equal(t, http.StatusOK, res.StatusCode, body) require.Equal(t, http.StatusOK, res.StatusCode, body)
err := cdc.UnmarshalJSON([]byte(body), &resultTx) var results []ctypes.ResultBroadcastTxCommit
err := cdc.UnmarshalJSON([]byte(body), &results)
require.Nil(t, err) require.Nil(t, err)
return return results[0]
} }
func doUnbond(t *testing.T, port, seed string) (resultTx ctypes.ResultBroadcastTxCommit) { func doUnbond(t *testing.T, port, seed string) (resultTx ctypes.ResultBroadcastTxCommit) {
@ -684,10 +671,11 @@ func doUnbond(t *testing.T, port, seed string) (resultTx ctypes.ResultBroadcastT
res, body := request(t, port, "POST", "/stake/bondunbond", jsonStr) res, body := request(t, port, "POST", "/stake/bondunbond", jsonStr)
require.Equal(t, http.StatusOK, res.StatusCode, body) require.Equal(t, http.StatusOK, res.StatusCode, body)
err := cdc.UnmarshalJSON([]byte(body), &resultTx) var results []ctypes.ResultBroadcastTxCommit
err := cdc.UnmarshalJSON([]byte(body), &results)
require.Nil(t, err) require.Nil(t, err)
return return results[0]
} }
func doMultiBond(t *testing.T, port, seed string) (resultTx ctypes.ResultBroadcastTxCommit) { func doMultiBond(t *testing.T, port, seed string) (resultTx ctypes.ResultBroadcastTxCommit) {
@ -720,8 +708,9 @@ func doMultiBond(t *testing.T, port, seed string) (resultTx ctypes.ResultBroadca
res, body := request(t, port, "POST", "/stake/bondunbond", jsonStr) res, body := request(t, port, "POST", "/stake/bondunbond", jsonStr)
require.Equal(t, http.StatusOK, res.StatusCode, body) require.Equal(t, http.StatusOK, res.StatusCode, body)
err := cdc.UnmarshalJSON([]byte(body), &resultTx) var results []ctypes.ResultBroadcastTxCommit
err := cdc.UnmarshalJSON([]byte(body), &results)
require.Nil(t, err) require.Nil(t, err)
return return results[0]
} }