0g-chain/x/swap/simulation/decoder_test.go
drklee3 3375484f79
Update deprecated Cosmos methods (#1530)
* Use cosmossdk.io/errors for deprecated error methods

* Update error registration with cosmossdk.io/errors

* Use cosmossdk.io/math for deprecated sdk.Int alias

* Fix modified proto file

* Update sdk.Int usage in swap hooks

* Update e2e test deprecated method usage
2023-04-05 16:21:59 -07:00

63 lines
1.8 KiB
Go

package simulation
// import (
// "fmt"
// "testing"
// "github.com/cosmos/cosmos-sdk/codec"
// "github.com/stretchr/testify/require"
// sdk "github.com/cosmos/cosmos-sdk/types"
// "github.com/tendermint/tendermint/crypto"
// "github.com/tendermint/tendermint/libs/kv"
// "github.com/kava-labs/kava/x/swap/types"
// )
// func makeTestCodec() (cdc *codec.Codec) {
// cdc = codec.New()
// sdk.RegisterCodec(cdc)
// types.RegisterCodec(cdc)
// return
// }
// func TestDecodeSwapStore(t *testing.T) {
// cdc := makeTestCodec()
// depositor := sdk.AccAddress(crypto.AddressHash([]byte("DepositorAddress")))
// reserves := sdk.NewCoins(
// sdk.NewCoin("ukava", sdkmath.NewInt(100000000)),
// sdk.NewCoin("usdx", sdkmath.NewInt(200000000)),
// )
// shares := sdkmath.NewInt(123456)
// poolRecord := types.NewPoolRecord(reserves, shares)
// shareRecord := types.NewShareRecord(depositor, poolRecord.PoolID, shares)
// kvPairs := kv.Pairs{
// kv.Pair{Key: types.PoolKeyPrefix, Value: cdc.MustMarshalBinaryLengthPrefixed(poolRecord)},
// kv.Pair{Key: types.DepositorPoolSharesPrefix, Value: cdc.MustMarshalBinaryLengthPrefixed(shareRecord)},
// kv.Pair{Key: []byte{0x99}, Value: []byte{0x99}},
// }
// tests := []struct {
// name string
// expectedLog string
// }{
// {"PoolRecord", fmt.Sprintf("%v\n%v", poolRecord, poolRecord)},
// {"ShareRecord", fmt.Sprintf("%v\n%v", shareRecord, shareRecord)},
// {"other", ""},
// }
// for i, tt := range tests {
// i, tt := i, tt
// t.Run(tt.name, func(t *testing.T) {
// switch i {
// case len(tests) - 1:
// require.Panics(t, func() { DecodeStore(cdc, kvPairs[i], kvPairs[i]) }, tt.name)
// default:
// require.Equal(t, tt.expectedLog, DecodeStore(cdc, kvPairs[i], kvPairs[i]), tt.name)
// }
// })
// }
// }