* Make JSONMarshaler require proto.Message * Use &msg with MarshalJSON * Use *LegacyAmino in queriers instead of JSONMarshaler * Revert ABCIMessageLogs String() and coins tests * Use LegacyAmino in client/debug and fix subspace tests * Use LegacyAmino in all legacy queriers and adapt simulation * Make AminoCodec implement Marshaler and some godoc fixes * Test fixes * Remove unrelevant comment * Use TxConfig.TxJSONEncoder * Use encoding/json in genutil cli migrate/validate genesis cmds * Address simulation related comments * Use JSONMarshaler in cli tests * Use proto.Message as respType in cli tests * Use tmjson for tm GenesisDoc * Update types/module/simulation.go Co-authored-by: Federico Kunze <31522760+fedekunze@users.noreply.github.com> * Update types/module/module_test.go Co-authored-by: Federico Kunze <31522760+fedekunze@users.noreply.github.com> * Add godoc comments * Remove unused InsertKeyJSON * Fix tests Co-authored-by: Aaron Craelius <aaronc@users.noreply.github.com> Co-authored-by: Federico Kunze <31522760+fedekunze@users.noreply.github.com>
66 lines
1.7 KiB
Go
66 lines
1.7 KiB
Go
package keeper_test
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
|
|
"github.com/cosmos/cosmos-sdk/codec"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
abci "github.com/tendermint/tendermint/abci/types"
|
|
|
|
"github.com/cosmos/cosmos-sdk/testutil/testdata"
|
|
keep "github.com/cosmos/cosmos-sdk/x/auth/keeper"
|
|
"github.com/cosmos/cosmos-sdk/x/auth/types"
|
|
)
|
|
|
|
func TestQueryAccount(t *testing.T) {
|
|
app, ctx := createTestApp(true)
|
|
legacyQuerierCdc := codec.NewAminoCodec(app.LegacyAmino())
|
|
|
|
req := abci.RequestQuery{
|
|
Path: "",
|
|
Data: []byte{},
|
|
}
|
|
|
|
path := []string{types.QueryAccount}
|
|
querier := keep.NewQuerier(app.AccountKeeper, legacyQuerierCdc.LegacyAmino)
|
|
|
|
bz, err := querier(ctx, []string{"other"}, req)
|
|
require.Error(t, err)
|
|
require.Nil(t, bz)
|
|
|
|
req = abci.RequestQuery{
|
|
Path: fmt.Sprintf("custom/%s/%s", types.QuerierRoute, types.QueryAccount),
|
|
Data: []byte{},
|
|
}
|
|
res, err := querier(ctx, path, req)
|
|
require.Error(t, err)
|
|
require.Nil(t, res)
|
|
|
|
req.Data = legacyQuerierCdc.MustMarshalJSON(&types.QueryAccountRequest{Address: []byte("")})
|
|
res, err = querier(ctx, path, req)
|
|
require.Error(t, err)
|
|
require.Nil(t, res)
|
|
|
|
_, _, addr := testdata.KeyTestPubAddr()
|
|
req.Data = legacyQuerierCdc.MustMarshalJSON(&types.QueryAccountRequest{Address: addr})
|
|
res, err = querier(ctx, path, req)
|
|
require.Error(t, err)
|
|
require.Nil(t, res)
|
|
|
|
app.AccountKeeper.SetAccount(ctx, app.AccountKeeper.NewAccountWithAddress(ctx, addr))
|
|
res, err = querier(ctx, path, req)
|
|
require.NoError(t, err)
|
|
require.NotNil(t, res)
|
|
|
|
res, err = querier(ctx, path, req)
|
|
require.NoError(t, err)
|
|
require.NotNil(t, res)
|
|
|
|
var account types.AccountI
|
|
err2 := legacyQuerierCdc.LegacyAmino.UnmarshalJSON(res, &account)
|
|
require.Nil(t, err2)
|
|
}
|