-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
38 changed files
with
863 additions
and
269 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
package keeper | ||
|
||
import ( | ||
sdk "github.com/Finschia/finschia-sdk/types" | ||
"github.com/Finschia/finschia-sdk/x/fswap/types" | ||
) | ||
|
||
// GetSwapped get all parameters as types.Swapped | ||
func (k Keeper) GetSwapped(ctx sdk.Context) types.Swapped { | ||
store := ctx.KVStore(k.storeKey) | ||
bz := store.Get([]byte{types.SwappedKey}) | ||
var swapped types.Swapped | ||
|
||
if bz == nil { | ||
panic(types.ErrSwappedNotFound) | ||
} | ||
k.cdc.MustUnmarshal(bz, &swapped) | ||
return swapped | ||
} | ||
|
||
// SetSwapped set the types.Swapped | ||
func (k Keeper) SetSwapped(ctx sdk.Context, swapped types.Swapped) error { | ||
store := ctx.KVStore(k.storeKey) | ||
bz, err := k.cdc.Marshal(&swapped) | ||
if err != nil { | ||
return err | ||
} | ||
store.Set([]byte{types.SwappedKey}, bz) | ||
return nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
package keeper | ||
|
||
import ( | ||
sdk "github.com/Finschia/finschia-sdk/types" | ||
"github.com/Finschia/finschia-sdk/x/fswap/types" | ||
) | ||
|
||
// InitGenesis initializes the module's state from a provided genesis | ||
// state. | ||
func (k Keeper) InitGenesis(ctx sdk.Context, genState types.GenesisState) { | ||
if err := k.SetParams(ctx, genState.Params); err != nil { | ||
panic(err) | ||
} | ||
if err := k.SetSwapped(ctx, genState.Swapped); err != nil { | ||
panic(err) | ||
} | ||
} | ||
|
||
// ExportGenesis returns the capability module's exported genesis. | ||
func (k Keeper) ExportGenesis(ctx sdk.Context) *types.GenesisState { | ||
return &types.GenesisState{ | ||
Params: k.GetParams(ctx), | ||
Swapped: k.GetSwapped(ctx), | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package keeper_test | ||
|
||
import ( | ||
"github.com/Finschia/finschia-sdk/x/fswap/types" | ||
) | ||
|
||
func (s *KeeperTestSuite) TestInitAndExportGenesis() { | ||
s.keeper.InitGenesis(s.sdkCtx, *types.DefaultGenesis()) | ||
got := s.keeper.ExportGenesis(s.sdkCtx) | ||
s.Require().NotNil(got) | ||
s.Require().Equal(types.DefaultParams(), got.Params) | ||
s.Require().Equal(types.DefaultSwapped(), got.Swapped) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
package keeper_test | ||
|
||
import ( | ||
"context" | ||
"testing" | ||
|
||
"github.com/golang/mock/gomock" | ||
"github.com/stretchr/testify/suite" | ||
tmproto "github.com/tendermint/tendermint/proto/tendermint/types" | ||
|
||
"github.com/Finschia/finschia-sdk/simapp" | ||
sdk "github.com/Finschia/finschia-sdk/types" | ||
"github.com/Finschia/finschia-sdk/x/fswap/keeper" | ||
"github.com/Finschia/finschia-sdk/x/fswap/testutil" | ||
"github.com/Finschia/finschia-sdk/x/fswap/types" | ||
) | ||
|
||
type KeeperTestSuite struct { | ||
suite.Suite | ||
sdkCtx sdk.Context | ||
goCtx context.Context | ||
keeper keeper.Keeper | ||
bankKeeper types.BankKeeper | ||
|
||
msgServer types.MsgServer | ||
} | ||
|
||
func TestKeeperTestSuite(t *testing.T) { | ||
suite.Run(t, new(KeeperTestSuite)) | ||
} | ||
|
||
func (s *KeeperTestSuite) SetupTest() { | ||
ctrl := gomock.NewController(s.T()) | ||
bankKeeper := testutil.NewMockBankKeeper(ctrl) | ||
s.bankKeeper = bankKeeper | ||
checkTx := false | ||
app := simapp.Setup(checkTx) | ||
s.sdkCtx = app.BaseApp.NewContext(checkTx, tmproto.Header{}) | ||
s.goCtx = sdk.WrapSDKContext(s.sdkCtx) | ||
s.keeper = app.FswapKeeper | ||
|
||
s.msgServer = keeper.NewMsgServerImpl(s.keeper) | ||
} |
Oops, something went wrong.