-
Notifications
You must be signed in to change notification settings - Fork 196
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(perp): add proper stateless genesis validation #857
Merged
+358
−54
Merged
Changes from 1 commit
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
e48f661
chore: minor cleanups and removal of unused funcs
569a2ee
add: genesis position validation
5ccb6a5
add: pair metadata tests
b6ec7d7
add: prepaid bad debt checks
7e36367
chore: lint
212c447
chore: CHANGELOG.md
855aa34
chore: CHANGELOG.md
0563bde
add: benchmark for Position.Validate
dd2914f
Merge branch 'master' into mercilex/pricefeed-genesis
AgentSmithMatrix 712fdf3
Update CHANGELOG.
jgimeno d64e14a
add: genesis tests
176f95f
chore: lint
cb8d7a4
Merge branch 'master' into mercilex/pricefeed-genesis
testinginprod File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
add: genesis tests
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
package types | ||
|
||
import ( | ||
"github.com/NibiruChain/nibiru/x/common" | ||
"github.com/NibiruChain/nibiru/x/testutil/sample" | ||
sdk "github.com/cosmos/cosmos-sdk/types" | ||
"testing" | ||
) | ||
|
||
func TestGenesisState_Validate(t *testing.T) { | ||
type test struct { | ||
g *GenesisState | ||
wantErr bool | ||
} | ||
|
||
cases := map[string]test{ | ||
"success": { | ||
g: &GenesisState{ | ||
Params: DefaultParams(), | ||
VaultBalance: sdk.NewCoins(), | ||
PerpEfBalance: sdk.NewCoins(), | ||
FeePoolBalance: sdk.NewCoins(), | ||
PairMetadata: []*PairMetadata{ | ||
{ | ||
Pair: common.MustNewAssetPair("pair1:pair2"), | ||
CumulativePremiumFractions: []sdk.Dec{sdk.MustNewDecFromStr("0.1")}, | ||
}, | ||
}, | ||
Positions: []*Position{ | ||
{ | ||
TraderAddress: sample.AccAddress().String(), | ||
Pair: common.MustNewAssetPair("valid:pair"), | ||
Size_: sdk.MustNewDecFromStr("1000"), | ||
Margin: sdk.MustNewDecFromStr("1000"), | ||
OpenNotional: sdk.MustNewDecFromStr("1000"), | ||
LastUpdateCumulativePremiumFraction: sdk.MustNewDecFromStr("1"), | ||
BlockNumber: 0, | ||
}, | ||
}, | ||
PrepaidBadDebts: []*PrepaidBadDebt{ | ||
{ | ||
Denom: "pair", | ||
Amount: sdk.NewInt(10), | ||
}, | ||
}, | ||
WhitelistedAddresses: []string{sample.AccAddress().String()}, | ||
}, | ||
wantErr: false, | ||
}, | ||
"bad params": { | ||
g: &GenesisState{Params: Params{FeePoolFeeRatio: sdk.MustNewDecFromStr("-1.0")}}, | ||
wantErr: true, | ||
}, | ||
"bad position": { | ||
g: &GenesisState{ | ||
Params: DefaultParams(), | ||
Positions: []*Position{ | ||
{ | ||
TraderAddress: sample.AccAddress().String(), | ||
Pair: common.AssetPair{}, | ||
}, | ||
}, | ||
}, | ||
wantErr: true, | ||
}, | ||
"bad whitelisted addr": { | ||
g: &GenesisState{Params: DefaultParams(), WhitelistedAddresses: []string{"bad"}}, | ||
wantErr: true, | ||
}, | ||
"bad pair metadata": { | ||
g: &GenesisState{Params: DefaultParams(), PairMetadata: []*PairMetadata{{Pair: common.AssetPair{}}}}, | ||
wantErr: true, | ||
}, | ||
|
||
"bad prepaid bad debt": { | ||
g: &GenesisState{Params: DefaultParams(), PrepaidBadDebts: []*PrepaidBadDebt{{ | ||
Denom: ":invalid:Denom", | ||
Amount: sdk.Int{}, | ||
}}}, | ||
wantErr: true, | ||
}, | ||
} | ||
|
||
for name, tc := range cases { | ||
tc := tc | ||
t.Run(name, func(t *testing.T) { | ||
err := tc.g.Validate() | ||
if tc.wantErr && err == nil { | ||
t.Fatal("expected an error") | ||
} else if !tc.wantErr && err != nil { | ||
t.Fatalf("unexpected error: %s", err) | ||
} | ||
}) | ||
} | ||
} |
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What about the test of this one.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
added, also found some other bugs which are fixed