fix many lcd errors, restructure lcd init

This commit is contained in:
rigelrozanski 2018-05-25 10:17:49 -04:00
parent 2efb637f81
commit 57d86cc04c
10 changed files with 89 additions and 135 deletions

47
Gopkg.lock generated
View File

@ -13,51 +13,6 @@
packages = ["btcec"] packages = ["btcec"]
revision = "1432d294a5b055c297457c25434efbf13384cc46" revision = "1432d294a5b055c297457c25434efbf13384cc46"
[[projects]]
name = "github.com/cosmos/cosmos-sdk"
packages = [
"baseapp",
"client",
"client/context",
"client/keys",
"client/lcd",
"client/rpc",
"client/tx",
"cmd/gaia/app",
"examples/basecoin/app",
"examples/basecoin/types",
"examples/democoin/app",
"examples/democoin/types",
"examples/democoin/x/cool",
"examples/democoin/x/cool/client/cli",
"examples/democoin/x/pow",
"examples/democoin/x/pow/client/cli",
"examples/democoin/x/simplestake",
"examples/democoin/x/simplestake/client/cli",
"examples/democoin/x/sketchy",
"mock",
"server",
"store",
"tests",
"types",
"version",
"wire",
"x/auth",
"x/auth/client/cli",
"x/auth/client/rest",
"x/bank",
"x/bank/client",
"x/bank/client/cli",
"x/bank/client/rest",
"x/ibc",
"x/ibc/client/cli",
"x/ibc/client/rest",
"x/stake",
"x/stake/client/cli"
]
revision = "187be1a5df81de1fd71da9053102d3a4868ec979"
version = "v0.17.2"
[[projects]] [[projects]]
name = "github.com/davecgh/go-spew" name = "github.com/davecgh/go-spew"
packages = ["spew"] packages = ["spew"]
@ -502,6 +457,6 @@
[solve-meta] [solve-meta]
analyzer-name = "dep" analyzer-name = "dep"
analyzer-version = 1 analyzer-version = 1
inputs-digest = "9b6ee069da61cf1815c332c5624e8af99b51ea72e2e9b91d780db92299598dcc" inputs-digest = "7540d2ecdb5d7d5084ab4e6132e929bbd501bd6add3006d8f08a6b2c127e0c7d"
solver-name = "gps-cdcl" solver-name = "gps-cdcl"
solver-version = 1 solver-version = 1

View File

@ -36,16 +36,18 @@ import (
gapp "github.com/cosmos/cosmos-sdk/cmd/gaia/app" gapp "github.com/cosmos/cosmos-sdk/cmd/gaia/app"
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/wire"
"github.com/cosmos/cosmos-sdk/x/auth"
"github.com/cosmos/cosmos-sdk/x/stake" "github.com/cosmos/cosmos-sdk/x/stake"
) )
var ( var (
coinDenom = "mycoin" coinDenom = "steak"
coinAmount = int64(10000000) coinAmount = int64(10000000)
stakeDenom = "steak" stakeDenom = "steak"
candidateAddr1 = "" validatorAddr1 = ""
candidateAddr2 = "" validatorAddr2 = ""
// XXX bad globals // XXX bad globals
name = "test" name = "test"
@ -222,6 +224,7 @@ func TestValidators(t *testing.T) {
func TestCoinSend(t *testing.T) { func TestCoinSend(t *testing.T) {
// query empty // query empty
//res, body := request(t, port, "GET", "/accounts/8FA6AB57AD6870F6B5B2E57735F38F2F30E73CB6", nil)
res, body := request(t, port, "GET", "/accounts/8FA6AB57AD6870F6B5B2E57735F38F2F30E73CB6", nil) res, body := request(t, port, "GET", "/accounts/8FA6AB57AD6870F6B5B2E57735F38F2F30E73CB6", nil)
require.Equal(t, http.StatusNoContent, res.StatusCode, body) require.Equal(t, http.StatusNoContent, res.StatusCode, body)
@ -327,7 +330,7 @@ func TestBond(t *testing.T) {
assert.Equal(t, int64(9999900), coins.AmountOf(stakeDenom)) assert.Equal(t, int64(9999900), coins.AmountOf(stakeDenom))
// query candidate // query candidate
bond := getDelegation(t, sendAddr, candidateAddr1) bond := getDelegation(t, sendAddr, validatorAddr1)
assert.Equal(t, "100/1", bond.Shares.String()) assert.Equal(t, "100/1", bond.Shares.String())
} }
@ -347,7 +350,7 @@ func TestUnbond(t *testing.T) {
assert.Equal(t, int64(9999911), coins.AmountOf(stakeDenom)) assert.Equal(t, int64(9999911), coins.AmountOf(stakeDenom))
// query candidate // query candidate
bond := getDelegation(t, sendAddr, candidateAddr1) bond := getDelegation(t, sendAddr, validatorAddr1)
assert.Equal(t, "99/1", bond.Shares.String()) assert.Equal(t, "99/1", bond.Shares.String())
} }
@ -366,14 +369,6 @@ func startTMAndLCD() (*nm.Node, net.Listener, error) {
if err != nil { if err != nil {
return nil, nil, err return nil, nil, err
} }
var info cryptoKeys.Info
info, seed, err = kb.Create(name, password, cryptoKeys.AlgoEd25519) // XXX global seed
if err != nil {
return nil, nil, err
}
pubKey := info.PubKey
sendAddr = pubKey.Address().String() // XXX global
config := GetConfig() config := GetConfig()
config.Consensus.TimeoutCommit = 1000 config.Consensus.TimeoutCommit = 1000
@ -400,59 +395,46 @@ func startTMAndLCD() (*nm.Node, net.Listener, error) {
Name: "val", Name: "val",
}, },
) )
candidateAddr1 = hex.EncodeToString(genDoc.Validators[0].PubKey.Address())
candidateAddr2 = hex.EncodeToString(genDoc.Validators[1].PubKey.Address())
coins := sdk.Coins{ pk1 := genDoc.Validators[0].PubKey
{coinDenom, coinAmount}, pk2 := genDoc.Validators[1].PubKey
{stakeDenom, coinAmount}, validatorAddr1 = hex.EncodeToString(pk1.Address())
} validatorAddr2 = hex.EncodeToString(pk2.Address())
appState := gapp.GenesisState{
Accounts: []gapp.GenesisAccount{
{
Address: pubKey.Address(),
Coins: coins,
},
},
StakeData: stake.GenesisState{
Pool: stake.Pool{
BondedShares: sdk.NewRat(200, 1),
UnbondedShares: sdk.ZeroRat(),
Inflation: sdk.NewRat(7, 100),
PrevBondedShares: sdk.ZeroRat(),
},
Params: stake.Params{
InflationRateChange: sdk.NewRat(13, 100),
InflationMax: sdk.NewRat(1, 5),
InflationMin: sdk.NewRat(7, 100),
GoalBonded: sdk.NewRat(67, 100),
MaxValidators: 100,
BondDenom: stakeDenom,
},
Validators: []stake.Validator{
{
Owner: genDoc.Validators[0].PubKey.Address(),
PubKey: genDoc.Validators[0].PubKey,
Description: stake.Description{
Moniker: "validator1",
},
},
{
Owner: genDoc.Validators[1].PubKey.Address(),
PubKey: genDoc.Validators[1].PubKey,
Description: stake.Description{
Moniker: "validator2",
},
},
},
},
}
stateBytes, err := cdc.MarshalJSONIndent(appState, "", " ") // NOTE it's bad practice to reuse pk address for the owner address but doing in the
// test for simplicity
var appGenTxs [2]json.RawMessage
appGenTxs[0], _, _, err = gapp.GaiaAppGenTxNF(cdc, pk1, pk1.Address(), "test_val1", true)
if err != nil { if err != nil {
return nil, nil, err return nil, nil, err
} }
genDoc.AppStateJSON = stateBytes appGenTxs[1], _, _, err = gapp.GaiaAppGenTxNF(cdc, pk2, pk2.Address(), "test_val2", true)
if err != nil {
return nil, nil, err
}
genesisState, err := gapp.GaiaAppGenState(cdc, appGenTxs[:])
if err != nil {
return nil, nil, err
}
// add the sendAddr to genesis
var info cryptoKeys.Info
info, seed, err = kb.Create(name, password, cryptoKeys.AlgoEd25519) // XXX global seed
if err != nil {
return nil, nil, err
}
sendAddr = info.PubKey.Address().String() // XXX global
accAuth := auth.NewBaseAccountWithAddress(info.PubKey.Address())
accAuth.Coins = sdk.Coins{{"steak", 100}}
acc := gapp.NewGenesisAccount(&accAuth)
genesisState.Accounts = append(genesisState.Accounts, acc)
appState, err := wire.MarshalJSONIndent(cdc, genesisState)
if err != nil {
return nil, nil, err
}
genDoc.AppStateJSON = appState
// LCD listen address // LCD listen address
port = fmt.Sprintf("%d", 17377) // XXX port = fmt.Sprintf("%d", 17377) // XXX
@ -609,7 +591,7 @@ func doBond(t *testing.T, port, seed string) (resultTx ctypes.ResultBroadcastTxC
} }
], ],
"unbond": [] "unbond": []
}`, name, password, sequence, candidateAddr1, stakeDenom)) }`, name, password, sequence, validatorAddr1, stakeDenom))
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)
@ -637,7 +619,7 @@ func doUnbond(t *testing.T, port, seed string) (resultTx ctypes.ResultBroadcastT
"shares": "1" "shares": "1"
} }
] ]
}`, name, password, sequence, candidateAddr1)) }`, name, password, sequence, validatorAddr1))
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)
@ -674,7 +656,7 @@ func doMultiBond(t *testing.T, port, seed string) (resultTx ctypes.ResultBroadca
"shares": "1" "shares": "1"
} }
] ]
}`, name, password, sequence, candidateAddr1, stakeDenom, candidateAddr2, stakeDenom, candidateAddr1)) }`, name, password, sequence, validatorAddr1, stakeDenom, validatorAddr2, stakeDenom, validatorAddr1))
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)

View File

@ -74,7 +74,7 @@ func GaiaAppInit() server.AppInit {
FlagsAppGenState: fsAppGenState, FlagsAppGenState: fsAppGenState,
FlagsAppGenTx: fsAppGenTx, FlagsAppGenTx: fsAppGenTx,
AppGenTx: GaiaAppGenTx, AppGenTx: GaiaAppGenTx,
AppGenState: GaiaAppGenState, AppGenState: GaiaAppGenStateJSON,
} }
} }
@ -85,19 +85,31 @@ type GaiaGenTx struct {
PubKey crypto.PubKey `json:"pub_key"` PubKey crypto.PubKey `json:"pub_key"`
} }
// Generate a gaia genesis transaction // Generate a gaia genesis transaction with flags
func GaiaAppGenTx(cdc *wire.Codec, pk crypto.PubKey) ( func GaiaAppGenTx(cdc *wire.Codec, pk crypto.PubKey) (
appGenTx, cliPrint json.RawMessage, validator tmtypes.GenesisValidator, err error) { appGenTx, cliPrint json.RawMessage, validator tmtypes.GenesisValidator, err error) {
var addr sdk.Address
var secret string
clientRoot := viper.GetString(flagClientHome) clientRoot := viper.GetString(flagClientHome)
overwrite := viper.GetBool(flagOWK) overwrite := viper.GetBool(flagOWK)
name := viper.GetString(flagName) name := viper.GetString(flagName)
var addr sdk.Address
var secret string
addr, secret, err = server.GenerateSaveCoinKey(clientRoot, name, "1234567890", overwrite) addr, secret, err = server.GenerateSaveCoinKey(clientRoot, name, "1234567890", overwrite)
if err != nil { if err != nil {
return return
} }
mm := map[string]string{"secret": secret}
var bz []byte
bz, err = cdc.MarshalJSON(mm)
if err != nil {
return
}
cliPrint = json.RawMessage(bz)
return GaiaAppGenTxNF(cdc, pk, addr, name, overwrite)
}
// Generate a gaia genesis transaction without flags
func GaiaAppGenTxNF(cdc *wire.Codec, pk crypto.PubKey, addr sdk.Address, name string, overwrite bool) (
appGenTx, cliPrint json.RawMessage, validator tmtypes.GenesisValidator, err error) {
var bz []byte var bz []byte
gaiaGenTx := GaiaGenTx{ gaiaGenTx := GaiaGenTx{
@ -111,13 +123,6 @@ func GaiaAppGenTx(cdc *wire.Codec, pk crypto.PubKey) (
} }
appGenTx = json.RawMessage(bz) appGenTx = json.RawMessage(bz)
mm := map[string]string{"secret": secret}
bz, err = cdc.MarshalJSON(mm)
if err != nil {
return
}
cliPrint = json.RawMessage(bz)
validator = tmtypes.GenesisValidator{ validator = tmtypes.GenesisValidator{
PubKey: pk, PubKey: pk,
Power: freeFermionVal, Power: freeFermionVal,
@ -127,7 +132,7 @@ func GaiaAppGenTx(cdc *wire.Codec, pk crypto.PubKey) (
// Create the core parameters for genesis initialization for gaia // Create the core parameters for genesis initialization for gaia
// note that the pubkey input is this machines pubkey // note that the pubkey input is this machines pubkey
func GaiaAppGenState(cdc *wire.Codec, appGenTxs []json.RawMessage) (appState json.RawMessage, err error) { func GaiaAppGenState(cdc *wire.Codec, appGenTxs []json.RawMessage) (genesisState GenesisState, err error) {
if len(appGenTxs) == 0 { if len(appGenTxs) == 0 {
err = errors.New("must provide at least genesis transaction") err = errors.New("must provide at least genesis transaction")
@ -171,10 +176,21 @@ func GaiaAppGenState(cdc *wire.Codec, appGenTxs []json.RawMessage) (appState jso
} }
// create the final app state // create the final app state
genesisState := GenesisState{ genesisState = GenesisState{
Accounts: genaccs, Accounts: genaccs,
StakeData: stakeData, StakeData: stakeData,
} }
return
}
// GaiaAppGenState but with JSON
func GaiaAppGenStateJSON(cdc *wire.Codec, appGenTxs []json.RawMessage) (appState json.RawMessage, err error) {
// create the final app state
genesisState, err := GaiaAppGenState(cdc, appGenTxs)
if err != nil {
return nil, err
}
appState, err = wire.MarshalJSONIndent(cdc, genesisState) appState, err = wire.MarshalJSONIndent(cdc, genesisState)
return return
} }

View File

@ -22,8 +22,8 @@ func NewGenesisState(pool Pool, params Params, validators []Validator, bonds []D
// get raw genesis raw message for testing // get raw genesis raw message for testing
func DefaultGenesisState() GenesisState { func DefaultGenesisState() GenesisState {
return GenesisState{ return GenesisState{
Pool: initialPool(), Pool: InitialPool(),
Params: defaultParams(), Params: DefaultParams(),
} }
} }

View File

@ -586,7 +586,7 @@ func TestGetTendermintUpdatesInserted(t *testing.T) {
func TestGetTendermintUpdatesNotValidatorCliff(t *testing.T) { func TestGetTendermintUpdatesNotValidatorCliff(t *testing.T) {
ctx, _, keeper := createTestInput(t, false, 0) ctx, _, keeper := createTestInput(t, false, 0)
params := defaultParams() params := DefaultParams()
params.MaxValidators = 2 params.MaxValidators = 2
keeper.setParams(ctx, params) keeper.setParams(ctx, params)
@ -721,7 +721,7 @@ func TestBond(t *testing.T) {
func TestParams(t *testing.T) { func TestParams(t *testing.T) {
ctx, _, keeper := createTestInput(t, false, 0) ctx, _, keeper := createTestInput(t, false, 0)
expParams := defaultParams() expParams := DefaultParams()
//check that the empty keeper loads the default //check that the empty keeper loads the default
resParams := keeper.GetParams(ctx) resParams := keeper.GetParams(ctx)
@ -736,7 +736,7 @@ func TestParams(t *testing.T) {
func TestPool(t *testing.T) { func TestPool(t *testing.T) {
ctx, _, keeper := createTestInput(t, false, 0) ctx, _, keeper := createTestInput(t, false, 0)
expPool := initialPool() expPool := InitialPool()
//check that the empty keeper loads the default //check that the empty keeper loads the default
resPool := keeper.GetPool(ctx) resPool := keeper.GetPool(ctx)

View File

@ -23,7 +23,8 @@ func (p Params) equal(p2 Params) bool {
return bytes.Equal(bz1, bz2) return bytes.Equal(bz1, bz2)
} }
func defaultParams() Params { // default params
func DefaultParams() Params {
return Params{ return Params{
InflationRateChange: sdk.NewRat(13, 100), InflationRateChange: sdk.NewRat(13, 100),
InflationMax: sdk.NewRat(20, 100), InflationMax: sdk.NewRat(20, 100),

View File

@ -31,7 +31,7 @@ func (p Pool) equal(p2 Pool) bool {
} }
// initial pool for testing // initial pool for testing
func initialPool() Pool { func InitialPool() Pool {
return Pool{ return Pool{
LooseUnbondedTokens: 0, LooseUnbondedTokens: 0,
BondedTokens: 0, BondedTokens: 0,

View File

@ -111,8 +111,8 @@ func createTestInput(t *testing.T, isCheckTx bool, initCoins int64) (sdk.Context
) )
ck := bank.NewKeeper(accountMapper) ck := bank.NewKeeper(accountMapper)
keeper := NewKeeper(cdc, keyStake, ck, DefaultCodespace) keeper := NewKeeper(cdc, keyStake, ck, DefaultCodespace)
keeper.setPool(ctx, initialPool()) keeper.setPool(ctx, InitialPool())
keeper.setNewParams(ctx, defaultParams()) keeper.setNewParams(ctx, DefaultParams())
// fill all the addresses with some coins // fill all the addresses with some coins
for _, addr := range addrs { for _, addr := range addrs {

View File

@ -61,7 +61,7 @@ func TestGetInflation(t *testing.T) {
func TestProcessProvisions(t *testing.T) { func TestProcessProvisions(t *testing.T) {
ctx, _, keeper := createTestInput(t, false, 0) ctx, _, keeper := createTestInput(t, false, 0)
params := defaultParams() params := DefaultParams()
params.MaxValidators = 2 params.MaxValidators = 2
keeper.setParams(ctx, params) keeper.setParams(ctx, params)
pool := keeper.GetPool(ctx) pool := keeper.GetPool(ctx)

View File

@ -169,7 +169,7 @@ func randomValidator(r *rand.Rand) Validator {
// generate a random staking state // generate a random staking state
func randomSetup(r *rand.Rand, numValidators int) (Pool, Validators) { func randomSetup(r *rand.Rand, numValidators int) (Pool, Validators) {
pool := initialPool() pool := InitialPool()
validators := make([]Validator, numValidators) validators := make([]Validator, numValidators)
for i := 0; i < numValidators; i++ { for i := 0; i < numValidators; i++ {