61 lines
1.4 KiB
Go
61 lines
1.4 KiB
Go
package simapp
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"github.com/cosmos/cosmos-sdk/codec"
|
|
"github.com/cosmos/cosmos-sdk/std"
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
"github.com/cosmos/cosmos-sdk/types/kv"
|
|
"github.com/cosmos/cosmos-sdk/types/module"
|
|
authtypes "github.com/cosmos/cosmos-sdk/x/auth/types"
|
|
)
|
|
|
|
func makeCodec(bm module.BasicManager) *codec.LegacyAmino {
|
|
cdc := codec.NewLegacyAmino()
|
|
|
|
bm.RegisterLegacyAminoCodec(cdc)
|
|
std.RegisterLegacyAminoCodec(cdc)
|
|
|
|
return cdc
|
|
}
|
|
|
|
func TestGetSimulationLog(t *testing.T) {
|
|
cdc := makeCodec(ModuleBasics)
|
|
|
|
decoders := make(sdk.StoreDecoderRegistry)
|
|
decoders[authtypes.StoreKey] = func(kvAs, kvBs kv.Pair) string { return "10" }
|
|
|
|
tests := []struct {
|
|
store string
|
|
kvPairs []kv.Pair
|
|
expectedLog string
|
|
}{
|
|
{
|
|
"Empty",
|
|
[]kv.Pair{{}},
|
|
"",
|
|
},
|
|
{
|
|
authtypes.StoreKey,
|
|
[]kv.Pair{{Key: authtypes.GlobalAccountNumberKey, Value: cdc.MustMarshal(uint64(10))}},
|
|
"10",
|
|
},
|
|
{
|
|
"OtherStore",
|
|
[]kv.Pair{{Key: []byte("key"), Value: []byte("value")}},
|
|
fmt.Sprintf("store A %X => %X\nstore B %X => %X\n", []byte("key"), []byte("value"), []byte("key"), []byte("value")),
|
|
},
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
tt := tt
|
|
t.Run(tt.store, func(t *testing.T) {
|
|
require.Equal(t, tt.expectedLog, GetSimulationLog(tt.store, decoders, tt.kvPairs, tt.kvPairs), tt.store)
|
|
})
|
|
}
|
|
}
|