## Description Closes: #11092 ## TODOs I'm thinking to do the 2 todos in a separate PR, or else this PR is too big. WDYT? - [ ] #11246 This involves adding a new index ProposalsByVotingPeriodEnd, so might be better to do in another PR - [ ] #11245 Also should be done in a separate PR (as it needs the above index) ### Main change 1: Group policy proto defs have `voting_period` and `min_execution_period` For group policies: ```diff - // Within this times votes and exec messages can be submitted. - // timeout is the duration from submission of a proposal to the end of voting period - google.protobuf.Duration timeout = 2 [(gogoproto.stdduration) = true, (gogoproto.nullable) = false]; + // voting_period is the duration from submission of a proposal to the end of voting period + // Within this times votes can be submitted with MsgVote. + google.protobuf.Duration voting_period = 2 [(gogoproto.stdduration) = true, (gogoproto.nullable) = false]; + // min_execution_period is the minimum duration after the proposal submission + // where members can start sending MsgExec. This means that the window for + // sending a MsgExec transaction is: + // `[ submission + min_execution_period ; submission + voting_period + max_execution_period]` + // where max_execution_period is a app-specific config, defined in the keeper. + // If not set, min_execution_period will default to 0. + google.protobuf.Duration min_execution_period = 3 [(gogoproto.stdduration) = true, (gogoproto.nullable) = false]; ``` ### Main Change 2: We don't update proposal's FinalTallyResult result on MsgVote/MsgSubmitProposal Unless the msg has TryExec set to true, in which case the FinalTallyResult is updated ONLY if the tally is final. ### Main Change 3: Add a keeper-level `MaxExecutionPeriod` MsgExecs will be rejected if they are sent after `voting_period_end + MaxExecutionPeriod` --- ### Author Checklist *All items are required. Please add a note to the item if the item is not applicable and please add links to any relevant follow up issues.* I have... - [ ] included the correct [type prefix](https://github.com/commitizen/conventional-commit-types/blob/v3.0.0/index.json) in the PR title - [ ] added `!` to the type prefix if API or client breaking change - [ ] targeted the correct branch (see [PR Targeting](https://github.com/cosmos/cosmos-sdk/blob/master/CONTRIBUTING.md#pr-targeting)) - [ ] provided a link to the relevant issue or specification - [ ] followed the guidelines for [building modules](https://github.com/cosmos/cosmos-sdk/blob/master/docs/building-modules) - [ ] included the necessary unit and integration [tests](https://github.com/cosmos/cosmos-sdk/blob/master/CONTRIBUTING.md#testing) - [ ] added a changelog entry to `CHANGELOG.md` - [ ] included comments for [documenting Go code](https://blog.golang.org/godoc) - [ ] updated the relevant documentation or specification - [ ] reviewed "Files changed" and left comments if necessary - [ ] confirmed all CI checks have passed ### Reviewers Checklist *All items are required. Please add a note if the item is not applicable and please add your handle next to the items reviewed if you only reviewed selected items.* I have... - [ ] confirmed the correct [type prefix](https://github.com/commitizen/conventional-commit-types/blob/v3.0.0/index.json) in the PR title - [ ] confirmed `!` in the type prefix if API or client breaking change - [ ] confirmed all author checklist items have been addressed - [ ] reviewed state machine logic - [ ] reviewed API design and naming - [ ] reviewed documentation is accurate - [ ] reviewed tests and test coverage - [ ] manually tested (if applicable)
755 lines
16 KiB
Go
755 lines
16 KiB
Go
package group
|
|
|
|
import (
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/cosmos/cosmos-sdk/crypto/keys/secp256k1"
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
banktypes "github.com/cosmos/cosmos-sdk/x/bank/types"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
var (
|
|
memberPub = secp256k1.GenPrivKey().PubKey()
|
|
accPub = secp256k1.GenPrivKey().PubKey()
|
|
accAddr = sdk.AccAddress(accPub.Address())
|
|
memberAddr = sdk.AccAddress(memberPub.Address())
|
|
)
|
|
|
|
func TestGenesisStateValidate(t *testing.T) {
|
|
|
|
submittedAt := time.Now().UTC()
|
|
timeout := submittedAt.Add(time.Second * 1).UTC()
|
|
|
|
groupPolicy := &GroupPolicyInfo{
|
|
Address: accAddr.String(),
|
|
GroupId: 1,
|
|
Admin: accAddr.String(),
|
|
Version: 1,
|
|
Metadata: "policy metadata",
|
|
}
|
|
err := groupPolicy.SetDecisionPolicy(&ThresholdDecisionPolicy{
|
|
Threshold: "1",
|
|
Windows: &DecisionPolicyWindows{
|
|
VotingPeriod: time.Second,
|
|
},
|
|
})
|
|
require.NoError(t, err)
|
|
|
|
// create another group policy to set invalid decision policy for testing
|
|
groupPolicy2 := &GroupPolicyInfo{
|
|
Address: accAddr.String(),
|
|
GroupId: 1,
|
|
Admin: accAddr.String(),
|
|
Version: 1,
|
|
Metadata: "policy metadata",
|
|
}
|
|
err = groupPolicy2.SetDecisionPolicy(&ThresholdDecisionPolicy{
|
|
Threshold: "1",
|
|
Windows: &DecisionPolicyWindows{
|
|
VotingPeriod: 0,
|
|
},
|
|
})
|
|
require.NoError(t, err)
|
|
|
|
proposal := &Proposal{
|
|
Id: 1,
|
|
Address: accAddr.String(),
|
|
Metadata: "proposal metadata",
|
|
GroupVersion: 1,
|
|
GroupPolicyVersion: 1,
|
|
Proposers: []string{
|
|
memberAddr.String(),
|
|
},
|
|
SubmitTime: submittedAt,
|
|
Status: PROPOSAL_STATUS_CLOSED,
|
|
Result: PROPOSAL_RESULT_ACCEPTED,
|
|
FinalTallyResult: TallyResult{
|
|
YesCount: "1",
|
|
NoCount: "0",
|
|
AbstainCount: "0",
|
|
NoWithVetoCount: "0",
|
|
},
|
|
VotingPeriodEnd: timeout,
|
|
ExecutorResult: PROPOSAL_EXECUTOR_RESULT_SUCCESS,
|
|
}
|
|
err = proposal.SetMsgs([]sdk.Msg{&banktypes.MsgSend{
|
|
FromAddress: accAddr.String(),
|
|
ToAddress: memberAddr.String(),
|
|
Amount: sdk.Coins{sdk.NewInt64Coin("test", 100)},
|
|
}})
|
|
require.NoError(t, err)
|
|
|
|
testCases := []struct {
|
|
name string
|
|
genesisState GenesisState
|
|
expErr bool
|
|
}{
|
|
{
|
|
"valid genesisState",
|
|
GenesisState{
|
|
GroupSeq: 2,
|
|
Groups: []*GroupInfo{{Id: 1, Admin: accAddr.String(), Metadata: "1", Version: 1, TotalWeight: "1"}, {Id: 2, Admin: accAddr.String(), Metadata: "2", Version: 2, TotalWeight: "2"}},
|
|
GroupMembers: []*GroupMember{{GroupId: 1, Member: &Member{Address: memberAddr.String(), Weight: "1", Metadata: "member metadata"}}, {GroupId: 2, Member: &Member{Address: memberAddr.String(), Weight: "2", Metadata: "member metadata"}}},
|
|
GroupPolicySeq: 1,
|
|
GroupPolicies: []*GroupPolicyInfo{groupPolicy},
|
|
ProposalSeq: 1,
|
|
Proposals: []*Proposal{proposal},
|
|
Votes: []*Vote{{ProposalId: proposal.Id, Voter: memberAddr.String(), SubmitTime: submittedAt, Option: VOTE_OPTION_YES}},
|
|
},
|
|
false,
|
|
},
|
|
{
|
|
"empty genesisState",
|
|
GenesisState{},
|
|
false,
|
|
},
|
|
{
|
|
"empty group id",
|
|
GenesisState{
|
|
Groups: []*GroupInfo{
|
|
{
|
|
Id: 0,
|
|
Admin: accAddr.String(),
|
|
Metadata: "1",
|
|
Version: 1,
|
|
TotalWeight: "1",
|
|
},
|
|
},
|
|
},
|
|
true,
|
|
},
|
|
{
|
|
"invalid group admin",
|
|
GenesisState{
|
|
Groups: []*GroupInfo{
|
|
{
|
|
Id: 1,
|
|
Admin: "invalid admin",
|
|
Metadata: "1",
|
|
Version: 1,
|
|
TotalWeight: "1",
|
|
},
|
|
},
|
|
},
|
|
true,
|
|
},
|
|
{
|
|
"invalid group version",
|
|
GenesisState{
|
|
Groups: []*GroupInfo{
|
|
{
|
|
Id: 1,
|
|
Admin: accAddr.String(),
|
|
Metadata: "1",
|
|
Version: 0,
|
|
TotalWeight: "1",
|
|
},
|
|
},
|
|
},
|
|
true,
|
|
},
|
|
{
|
|
"invalid group TotalWeight",
|
|
GenesisState{
|
|
Groups: []*GroupInfo{
|
|
{
|
|
Id: 1,
|
|
Admin: accAddr.String(),
|
|
Metadata: "1",
|
|
Version: 1,
|
|
TotalWeight: "-1",
|
|
},
|
|
},
|
|
},
|
|
true,
|
|
},
|
|
{
|
|
"invalid group policy address",
|
|
GenesisState{
|
|
Groups: []*GroupInfo{
|
|
{
|
|
Id: 1,
|
|
Admin: accAddr.String(),
|
|
Metadata: "1",
|
|
Version: 1,
|
|
TotalWeight: "1",
|
|
},
|
|
},
|
|
GroupPolicies: []*GroupPolicyInfo{
|
|
{
|
|
Address: "invalid address",
|
|
GroupId: 1,
|
|
Admin: accAddr.String(),
|
|
Version: 1,
|
|
Metadata: "policy metadata",
|
|
},
|
|
},
|
|
},
|
|
true,
|
|
},
|
|
{
|
|
"invalid group policy admin",
|
|
GenesisState{
|
|
Groups: []*GroupInfo{
|
|
{
|
|
Id: 1,
|
|
Admin: accAddr.String(),
|
|
Metadata: "1",
|
|
Version: 1,
|
|
TotalWeight: "1",
|
|
},
|
|
},
|
|
GroupPolicies: []*GroupPolicyInfo{
|
|
{
|
|
Address: accAddr.String(),
|
|
GroupId: 1,
|
|
Admin: "invalid admin",
|
|
Version: 1,
|
|
Metadata: "policy metadata",
|
|
},
|
|
},
|
|
},
|
|
true,
|
|
},
|
|
{
|
|
"invalid group policy's group id",
|
|
GenesisState{
|
|
Groups: []*GroupInfo{
|
|
{
|
|
Id: 1,
|
|
Admin: accAddr.String(),
|
|
Metadata: "1",
|
|
Version: 1,
|
|
TotalWeight: "1",
|
|
},
|
|
},
|
|
GroupPolicies: []*GroupPolicyInfo{
|
|
{
|
|
Address: accAddr.String(),
|
|
GroupId: 0,
|
|
Admin: accAddr.String(),
|
|
Version: 1,
|
|
Metadata: "policy metadata",
|
|
},
|
|
},
|
|
},
|
|
true,
|
|
},
|
|
{
|
|
"invalid group policy version",
|
|
GenesisState{
|
|
Groups: []*GroupInfo{
|
|
{
|
|
Id: 1,
|
|
Admin: accAddr.String(),
|
|
Metadata: "1",
|
|
Version: 1,
|
|
TotalWeight: "1",
|
|
},
|
|
},
|
|
GroupPolicies: []*GroupPolicyInfo{
|
|
{
|
|
Address: accAddr.String(),
|
|
GroupId: 1,
|
|
Admin: accAddr.String(),
|
|
Version: 0,
|
|
Metadata: "policy metadata",
|
|
},
|
|
},
|
|
},
|
|
true,
|
|
},
|
|
{
|
|
"invalid group policy's decision policy",
|
|
GenesisState{
|
|
Groups: []*GroupInfo{
|
|
{
|
|
Id: 1,
|
|
Admin: accAddr.String(),
|
|
Metadata: "1",
|
|
Version: 1,
|
|
TotalWeight: "1",
|
|
},
|
|
},
|
|
GroupPolicies: []*GroupPolicyInfo{
|
|
{
|
|
Address: accAddr.String(),
|
|
GroupId: 1,
|
|
Admin: accAddr.String(),
|
|
Version: 1,
|
|
Metadata: "policy metadata",
|
|
DecisionPolicy: groupPolicy2.DecisionPolicy,
|
|
},
|
|
},
|
|
},
|
|
true,
|
|
},
|
|
{
|
|
"invalid group member's group id",
|
|
GenesisState{
|
|
Groups: []*GroupInfo{
|
|
{
|
|
Id: 1,
|
|
Admin: accAddr.String(),
|
|
Metadata: "1",
|
|
Version: 1,
|
|
TotalWeight: "1",
|
|
},
|
|
},
|
|
GroupMembers: []*GroupMember{
|
|
{
|
|
GroupId: 0,
|
|
Member: &Member{
|
|
Address: memberAddr.String(),
|
|
Weight: "1", Metadata: "member metadata",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
true,
|
|
},
|
|
{
|
|
"invalid group member address",
|
|
GenesisState{
|
|
Groups: []*GroupInfo{
|
|
{
|
|
Id: 1,
|
|
Admin: accAddr.String(),
|
|
Metadata: "1",
|
|
Version: 1,
|
|
TotalWeight: "1",
|
|
},
|
|
},
|
|
GroupMembers: []*GroupMember{
|
|
{
|
|
GroupId: 1,
|
|
Member: &Member{
|
|
Address: "invalid address",
|
|
Weight: "1", Metadata: "member metadata",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
true,
|
|
},
|
|
{
|
|
"invalid group member weight",
|
|
GenesisState{
|
|
Groups: []*GroupInfo{
|
|
{
|
|
Id: 1,
|
|
Admin: accAddr.String(),
|
|
Metadata: "1",
|
|
Version: 1,
|
|
TotalWeight: "1",
|
|
},
|
|
},
|
|
GroupMembers: []*GroupMember{
|
|
{
|
|
GroupId: 1,
|
|
Member: &Member{
|
|
Address: memberAddr.String(),
|
|
Weight: "-1", Metadata: "member metadata",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
true,
|
|
},
|
|
{
|
|
"invalid proposal id",
|
|
GenesisState{
|
|
Groups: []*GroupInfo{
|
|
{
|
|
Id: 1,
|
|
Admin: accAddr.String(),
|
|
Metadata: "1",
|
|
Version: 1,
|
|
TotalWeight: "1",
|
|
},
|
|
},
|
|
GroupPolicies: []*GroupPolicyInfo{
|
|
groupPolicy,
|
|
},
|
|
Proposals: []*Proposal{
|
|
{
|
|
Id: 0,
|
|
Address: accAddr.String(),
|
|
Metadata: "proposal metadata",
|
|
GroupVersion: 1,
|
|
GroupPolicyVersion: 1,
|
|
},
|
|
},
|
|
},
|
|
true,
|
|
},
|
|
{
|
|
"invalid group policy address of proposal",
|
|
GenesisState{
|
|
Groups: []*GroupInfo{
|
|
{
|
|
Id: 1,
|
|
Admin: accAddr.String(),
|
|
Metadata: "1",
|
|
Version: 1,
|
|
TotalWeight: "1",
|
|
},
|
|
},
|
|
GroupPolicies: []*GroupPolicyInfo{
|
|
groupPolicy,
|
|
},
|
|
Proposals: []*Proposal{
|
|
{
|
|
Id: 1,
|
|
Address: "invalid address",
|
|
Metadata: "proposal metadata",
|
|
GroupVersion: 1,
|
|
GroupPolicyVersion: 1,
|
|
},
|
|
},
|
|
},
|
|
true,
|
|
},
|
|
{
|
|
"invalid group version of proposal",
|
|
GenesisState{
|
|
Groups: []*GroupInfo{
|
|
{
|
|
Id: 1,
|
|
Admin: accAddr.String(),
|
|
Metadata: "1",
|
|
Version: 1,
|
|
TotalWeight: "1",
|
|
},
|
|
},
|
|
GroupPolicies: []*GroupPolicyInfo{
|
|
groupPolicy,
|
|
},
|
|
Proposals: []*Proposal{
|
|
{
|
|
Id: 1,
|
|
Address: accAddr.String(),
|
|
Metadata: "proposal metadata",
|
|
GroupVersion: 0,
|
|
GroupPolicyVersion: 1,
|
|
},
|
|
},
|
|
},
|
|
true,
|
|
},
|
|
{
|
|
"invalid group policy version",
|
|
GenesisState{
|
|
Groups: []*GroupInfo{
|
|
{
|
|
Id: 1,
|
|
Admin: accAddr.String(),
|
|
Metadata: "1",
|
|
Version: 1,
|
|
TotalWeight: "1",
|
|
},
|
|
},
|
|
GroupPolicies: []*GroupPolicyInfo{
|
|
groupPolicy,
|
|
},
|
|
Proposals: []*Proposal{
|
|
{
|
|
Id: 1,
|
|
Address: accAddr.String(),
|
|
Metadata: "proposal metadata",
|
|
GroupVersion: 1,
|
|
GroupPolicyVersion: 0,
|
|
},
|
|
},
|
|
},
|
|
true,
|
|
},
|
|
{
|
|
"invalid FinalTallyResult with negative YesCount",
|
|
GenesisState{
|
|
Groups: []*GroupInfo{
|
|
{
|
|
Id: 1,
|
|
Admin: accAddr.String(),
|
|
Metadata: "1",
|
|
Version: 1,
|
|
TotalWeight: "1",
|
|
},
|
|
},
|
|
GroupPolicies: []*GroupPolicyInfo{
|
|
groupPolicy,
|
|
},
|
|
Proposals: []*Proposal{
|
|
{
|
|
Id: 1,
|
|
Address: accAddr.String(),
|
|
Metadata: "proposal metadata",
|
|
GroupVersion: 1,
|
|
GroupPolicyVersion: 1,
|
|
Proposers: []string{
|
|
memberAddr.String(),
|
|
},
|
|
SubmitTime: submittedAt,
|
|
Status: PROPOSAL_STATUS_CLOSED,
|
|
Result: PROPOSAL_RESULT_ACCEPTED,
|
|
FinalTallyResult: TallyResult{
|
|
YesCount: "-1",
|
|
NoCount: "0",
|
|
AbstainCount: "0",
|
|
NoWithVetoCount: "0",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
true,
|
|
},
|
|
{
|
|
"invalid FinalTallyResult with negative NoCount",
|
|
GenesisState{
|
|
Groups: []*GroupInfo{
|
|
{
|
|
Id: 1,
|
|
Admin: accAddr.String(),
|
|
Metadata: "1",
|
|
Version: 1,
|
|
TotalWeight: "1",
|
|
},
|
|
},
|
|
GroupPolicies: []*GroupPolicyInfo{
|
|
groupPolicy,
|
|
},
|
|
Proposals: []*Proposal{
|
|
{
|
|
Id: 1,
|
|
Address: accAddr.String(),
|
|
Metadata: "proposal metadata",
|
|
GroupVersion: 1,
|
|
GroupPolicyVersion: 1,
|
|
Proposers: []string{
|
|
memberAddr.String(),
|
|
},
|
|
SubmitTime: submittedAt,
|
|
Status: PROPOSAL_STATUS_CLOSED,
|
|
Result: PROPOSAL_RESULT_ACCEPTED,
|
|
FinalTallyResult: TallyResult{
|
|
YesCount: "0",
|
|
NoCount: "-1",
|
|
AbstainCount: "0",
|
|
NoWithVetoCount: "0",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
true,
|
|
},
|
|
{
|
|
"invalid FinalTallyResult with negative AbstainCount",
|
|
GenesisState{
|
|
Groups: []*GroupInfo{
|
|
{
|
|
Id: 1,
|
|
Admin: accAddr.String(),
|
|
Metadata: "1",
|
|
Version: 1,
|
|
TotalWeight: "1",
|
|
},
|
|
},
|
|
GroupPolicies: []*GroupPolicyInfo{
|
|
groupPolicy,
|
|
},
|
|
Proposals: []*Proposal{
|
|
{
|
|
Id: 1,
|
|
Address: accAddr.String(),
|
|
Metadata: "proposal metadata",
|
|
GroupVersion: 1,
|
|
GroupPolicyVersion: 1,
|
|
Proposers: []string{
|
|
memberAddr.String(),
|
|
},
|
|
SubmitTime: submittedAt,
|
|
Status: PROPOSAL_STATUS_CLOSED,
|
|
Result: PROPOSAL_RESULT_ACCEPTED,
|
|
FinalTallyResult: TallyResult{
|
|
YesCount: "0",
|
|
NoCount: "0",
|
|
AbstainCount: "-1",
|
|
NoWithVetoCount: "0",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
true,
|
|
},
|
|
{
|
|
"invalid FinalTallyResult with negative VetoCount",
|
|
GenesisState{
|
|
Groups: []*GroupInfo{
|
|
{
|
|
Id: 1,
|
|
Admin: accAddr.String(),
|
|
Metadata: "1",
|
|
Version: 1,
|
|
TotalWeight: "1",
|
|
},
|
|
},
|
|
GroupPolicies: []*GroupPolicyInfo{
|
|
groupPolicy,
|
|
},
|
|
Proposals: []*Proposal{
|
|
{
|
|
Id: 1,
|
|
Address: accAddr.String(),
|
|
Metadata: "proposal metadata",
|
|
GroupVersion: 1,
|
|
GroupPolicyVersion: 1,
|
|
Proposers: []string{
|
|
memberAddr.String(),
|
|
},
|
|
SubmitTime: submittedAt,
|
|
Status: PROPOSAL_STATUS_CLOSED,
|
|
Result: PROPOSAL_RESULT_ACCEPTED,
|
|
FinalTallyResult: TallyResult{
|
|
YesCount: "0",
|
|
NoCount: "0",
|
|
AbstainCount: "0",
|
|
NoWithVetoCount: "-1",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
true,
|
|
},
|
|
{
|
|
"invalid voter",
|
|
GenesisState{
|
|
Groups: []*GroupInfo{
|
|
{
|
|
Id: 1,
|
|
Admin: accAddr.String(),
|
|
Metadata: "1",
|
|
Version: 1,
|
|
TotalWeight: "1",
|
|
},
|
|
},
|
|
GroupPolicies: []*GroupPolicyInfo{
|
|
groupPolicy,
|
|
},
|
|
Proposals: []*Proposal{
|
|
proposal,
|
|
},
|
|
Votes: []*Vote{
|
|
{
|
|
ProposalId: proposal.Id,
|
|
Voter: "invalid voter",
|
|
SubmitTime: submittedAt,
|
|
Option: VOTE_OPTION_YES,
|
|
},
|
|
},
|
|
},
|
|
true,
|
|
},
|
|
{
|
|
"invalid proposal id",
|
|
GenesisState{
|
|
Groups: []*GroupInfo{
|
|
{
|
|
Id: 1,
|
|
Admin: accAddr.String(),
|
|
Metadata: "1",
|
|
Version: 1,
|
|
TotalWeight: "1",
|
|
},
|
|
},
|
|
GroupPolicies: []*GroupPolicyInfo{
|
|
groupPolicy,
|
|
},
|
|
Proposals: []*Proposal{
|
|
proposal,
|
|
},
|
|
Votes: []*Vote{
|
|
{
|
|
ProposalId: 0,
|
|
Voter: memberAddr.String(),
|
|
SubmitTime: submittedAt,
|
|
Option: VOTE_OPTION_YES,
|
|
},
|
|
},
|
|
},
|
|
true,
|
|
},
|
|
{
|
|
"vote on proposal that doesn't exist",
|
|
GenesisState{
|
|
Groups: []*GroupInfo{
|
|
{
|
|
Id: 1,
|
|
Admin: accAddr.String(),
|
|
Metadata: "1",
|
|
Version: 1,
|
|
TotalWeight: "1",
|
|
},
|
|
},
|
|
GroupPolicies: []*GroupPolicyInfo{
|
|
groupPolicy,
|
|
},
|
|
Proposals: []*Proposal{
|
|
proposal,
|
|
},
|
|
Votes: []*Vote{
|
|
{
|
|
ProposalId: 2,
|
|
Voter: memberAddr.String(),
|
|
SubmitTime: submittedAt,
|
|
Option: VOTE_OPTION_YES,
|
|
},
|
|
},
|
|
},
|
|
true,
|
|
},
|
|
{
|
|
"invalid vote option",
|
|
GenesisState{
|
|
Groups: []*GroupInfo{
|
|
{
|
|
Id: 1,
|
|
Admin: accAddr.String(),
|
|
Metadata: "1",
|
|
Version: 1,
|
|
TotalWeight: "1",
|
|
},
|
|
},
|
|
GroupPolicies: []*GroupPolicyInfo{
|
|
groupPolicy,
|
|
},
|
|
Proposals: []*Proposal{
|
|
proposal,
|
|
},
|
|
Votes: []*Vote{
|
|
{
|
|
ProposalId: proposal.Id,
|
|
Voter: memberAddr.String(),
|
|
SubmitTime: submittedAt,
|
|
Option: VOTE_OPTION_UNSPECIFIED,
|
|
},
|
|
},
|
|
},
|
|
true,
|
|
},
|
|
}
|
|
for _, tc := range testCases {
|
|
tc := tc
|
|
t.Run(tc.name, func(t *testing.T) {
|
|
|
|
err := tc.genesisState.Validate()
|
|
if tc.expErr {
|
|
require.Error(t, err)
|
|
} else {
|
|
require.NoError(t, err)
|
|
}
|
|
})
|
|
}
|
|
}
|