-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge PR #4854: Crisis Module Manager Fixes
- Loading branch information
1 parent
1f8cdee
commit c8ee82b
Showing
5 changed files
with
116 additions
and
49 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
package keeper | ||
|
||
import ( | ||
"testing" | ||
|
||
"github.com/stretchr/testify/require" | ||
"github.com/tendermint/tendermint/libs/log" | ||
|
||
"github.com/cosmos/cosmos-sdk/codec" | ||
sdk "github.com/cosmos/cosmos-sdk/types" | ||
"github.com/cosmos/cosmos-sdk/x/crisis/internal/types" | ||
"github.com/cosmos/cosmos-sdk/x/params" | ||
) | ||
|
||
func testPassingInvariant(_ sdk.Context) (string, bool) { | ||
return "", false | ||
} | ||
|
||
func testFailingInvariant(_ sdk.Context) (string, bool) { | ||
return "", true | ||
} | ||
|
||
func testKeeper(checkPeriod uint) Keeper { | ||
cdc := codec.New() | ||
paramsKeeper := params.NewKeeper( | ||
cdc, sdk.NewKVStoreKey(params.StoreKey), sdk.NewTransientStoreKey(params.TStoreKey), params.DefaultCodespace, | ||
) | ||
|
||
return NewKeeper(paramsKeeper.Subspace(types.DefaultParamspace), checkPeriod, nil, "test") | ||
} | ||
|
||
func TestLogger(t *testing.T) { | ||
k := testKeeper(5) | ||
|
||
ctx := sdk.Context{}.WithLogger(log.NewNopLogger()) | ||
require.Equal(t, ctx.Logger(), k.Logger(ctx)) | ||
} | ||
|
||
func TestInvariants(t *testing.T) { | ||
k := testKeeper(5) | ||
require.Equal(t, k.InvCheckPeriod(), uint(5)) | ||
|
||
k.RegisterRoute("testModule", "testRoute", testPassingInvariant) | ||
require.Len(t, k.Routes(), 1) | ||
} | ||
|
||
func TestAssertInvariants(t *testing.T) { | ||
k := testKeeper(5) | ||
ctx := sdk.Context{}.WithLogger(log.NewNopLogger()) | ||
|
||
k.RegisterRoute("testModule", "testRoute1", testPassingInvariant) | ||
require.NotPanics(t, func() { k.AssertInvariants(ctx) }) | ||
|
||
k.RegisterRoute("testModule", "testRoute2", testFailingInvariant) | ||
require.Panics(t, func() { k.AssertInvariants(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