2020-03-10 22:29:16 +00:00
|
|
|
package keeper_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
2020-03-27 18:34:03 +00:00
|
|
|
"time"
|
2020-03-10 23:16:22 +00:00
|
|
|
|
2022-01-08 00:39:27 +00:00
|
|
|
govtypes "github.com/cosmos/cosmos-sdk/x/gov/types"
|
2020-03-10 22:29:16 +00:00
|
|
|
"github.com/stretchr/testify/suite"
|
|
|
|
|
2022-01-08 00:39:27 +00:00
|
|
|
"github.com/kava-labs/kava/x/committee/testutil"
|
2020-03-11 19:27:36 +00:00
|
|
|
"github.com/kava-labs/kava/x/committee/types"
|
2020-03-10 22:29:16 +00:00
|
|
|
)
|
|
|
|
|
2022-01-08 00:39:27 +00:00
|
|
|
type keeperTestSuite struct {
|
|
|
|
testutil.Suite
|
2020-03-10 22:29:16 +00:00
|
|
|
}
|
|
|
|
|
2022-01-08 00:39:27 +00:00
|
|
|
func (suite *keeperTestSuite) SetupTest() {
|
|
|
|
suite.Suite.SetupTest()
|
2020-03-10 22:29:16 +00:00
|
|
|
}
|
|
|
|
|
2022-01-08 00:39:27 +00:00
|
|
|
func (suite *keeperTestSuite) TestGetSetDeleteCommittee() {
|
|
|
|
cdc := suite.App.AppCodec()
|
|
|
|
|
2020-03-11 00:58:42 +00:00
|
|
|
// setup test
|
2022-01-08 00:39:27 +00:00
|
|
|
com := mustNewTestMemberCommittee(suite.Addresses)
|
2020-03-10 23:16:22 +00:00
|
|
|
|
|
|
|
// write and read from store
|
2022-01-08 00:39:27 +00:00
|
|
|
suite.Keeper.SetCommittee(suite.Ctx, com)
|
|
|
|
readCommittee, found := suite.Keeper.GetCommittee(suite.Ctx, com.ID)
|
2020-03-10 23:16:22 +00:00
|
|
|
|
|
|
|
// check before and after match
|
2022-01-08 00:39:27 +00:00
|
|
|
suite.Require().True(found)
|
|
|
|
expectedJson, err := cdc.MarshalJSON(com)
|
|
|
|
suite.Require().NoError(err)
|
|
|
|
actualJson, err := cdc.MarshalJSON(readCommittee)
|
|
|
|
suite.Require().NoError(err)
|
|
|
|
suite.Equal(expectedJson, actualJson)
|
|
|
|
suite.Require().Equal(com.GetPermissions(), readCommittee.GetPermissions())
|
2020-03-10 23:28:25 +00:00
|
|
|
|
|
|
|
// delete from store
|
2022-01-08 00:39:27 +00:00
|
|
|
suite.Keeper.DeleteCommittee(suite.Ctx, com.ID)
|
2020-03-10 23:28:25 +00:00
|
|
|
|
|
|
|
// check does not exist
|
2022-01-08 00:39:27 +00:00
|
|
|
_, found = suite.Keeper.GetCommittee(suite.Ctx, com.ID)
|
|
|
|
suite.Require().False(found)
|
2020-03-10 23:16:22 +00:00
|
|
|
}
|
|
|
|
|
2022-01-08 00:39:27 +00:00
|
|
|
func (suite *keeperTestSuite) TestGetSetDeleteProposal() {
|
2020-03-10 23:16:22 +00:00
|
|
|
// test setup
|
2022-01-08 00:39:27 +00:00
|
|
|
prop, err := types.NewProposal(
|
|
|
|
govtypes.NewTextProposal("A Title", "A description of this proposal."),
|
|
|
|
12,
|
|
|
|
0,
|
|
|
|
time.Date(1998, time.January, 1, 0, 0, 0, 0, time.UTC),
|
|
|
|
)
|
|
|
|
suite.Require().NoError(err)
|
2020-03-10 23:16:22 +00:00
|
|
|
|
|
|
|
// write and read from store
|
2022-01-08 00:39:27 +00:00
|
|
|
suite.Keeper.SetProposal(suite.Ctx, prop)
|
|
|
|
readProposal, found := suite.Keeper.GetProposal(suite.Ctx, prop.ID)
|
2020-03-10 23:16:22 +00:00
|
|
|
|
|
|
|
// check before and after match
|
|
|
|
suite.True(found)
|
|
|
|
suite.Equal(prop, readProposal)
|
2020-03-10 23:28:25 +00:00
|
|
|
|
|
|
|
// delete from store
|
2022-01-08 00:39:27 +00:00
|
|
|
suite.Keeper.DeleteProposal(suite.Ctx, prop.ID)
|
2020-03-10 23:28:25 +00:00
|
|
|
|
|
|
|
// check does not exist
|
2022-01-08 00:39:27 +00:00
|
|
|
_, found = suite.Keeper.GetProposal(suite.Ctx, prop.ID)
|
2020-03-10 23:28:25 +00:00
|
|
|
suite.False(found)
|
2020-03-10 22:29:16 +00:00
|
|
|
}
|
|
|
|
|
2022-01-08 00:39:27 +00:00
|
|
|
func (suite *keeperTestSuite) TestGetSetDeleteVote() {
|
2020-03-10 23:16:22 +00:00
|
|
|
// test setup
|
|
|
|
vote := types.Vote{
|
|
|
|
ProposalID: 12,
|
2022-01-08 00:39:27 +00:00
|
|
|
Voter: suite.Addresses[0],
|
2020-03-10 23:16:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// write and read from store
|
2022-01-08 00:39:27 +00:00
|
|
|
suite.Keeper.SetVote(suite.Ctx, vote)
|
|
|
|
readVote, found := suite.Keeper.GetVote(suite.Ctx, vote.ProposalID, vote.Voter)
|
2020-03-10 23:16:22 +00:00
|
|
|
|
|
|
|
// check before and after match
|
|
|
|
suite.True(found)
|
|
|
|
suite.Equal(vote, readVote)
|
2020-03-10 23:28:25 +00:00
|
|
|
|
|
|
|
// delete from store
|
2022-01-08 00:39:27 +00:00
|
|
|
suite.Keeper.DeleteVote(suite.Ctx, vote.ProposalID, vote.Voter)
|
2020-03-10 23:28:25 +00:00
|
|
|
|
|
|
|
// check does not exist
|
2022-01-08 00:39:27 +00:00
|
|
|
_, found = suite.Keeper.GetVote(suite.Ctx, vote.ProposalID, vote.Voter)
|
2020-03-10 23:28:25 +00:00
|
|
|
suite.False(found)
|
2020-03-10 23:16:22 +00:00
|
|
|
}
|
2020-03-10 22:29:16 +00:00
|
|
|
|
2022-01-08 00:39:27 +00:00
|
|
|
func (suite *keeperTestSuite) TestGetCommittees() {
|
|
|
|
committeesCount := 10
|
|
|
|
for i := 0; i < committeesCount; i++ {
|
|
|
|
com := mustNewTestMemberCommittee(suite.Addresses)
|
|
|
|
com.ID = uint64(i)
|
|
|
|
suite.Keeper.SetCommittee(suite.Ctx, com)
|
|
|
|
}
|
|
|
|
committees := suite.Keeper.GetCommittees(suite.Ctx)
|
|
|
|
suite.Require().Len(committees, committeesCount)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (suite *keeperTestSuite) TestGetAndSetProposal() {
|
|
|
|
proposal := mustNewTestProposal()
|
|
|
|
|
|
|
|
// Get no proposal
|
|
|
|
actualProposal, found := suite.Keeper.GetProposal(suite.Ctx, proposal.ID)
|
|
|
|
suite.Require().False(found)
|
|
|
|
suite.Require().Equal(types.Proposal{}, actualProposal)
|
|
|
|
|
|
|
|
// Set and get new proposal
|
|
|
|
suite.Keeper.SetProposal(suite.Ctx, proposal)
|
|
|
|
actualProposal, found = suite.Keeper.GetProposal(suite.Ctx, proposal.ID)
|
|
|
|
suite.Require().True(found)
|
|
|
|
suite.Require().Equal(proposal, actualProposal)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (suite *keeperTestSuite) TestGetProposalsByCommittee() {
|
|
|
|
committee := mustNewTestMemberCommittee(suite.Addresses)
|
|
|
|
proposalsCount := 4
|
|
|
|
for i := 0; i < proposalsCount; i++ {
|
|
|
|
proposal := mustNewTestProposal()
|
|
|
|
proposal.ID = uint64(i)
|
|
|
|
proposal.CommitteeID = committee.ID
|
|
|
|
suite.Keeper.SetProposal(suite.Ctx, proposal)
|
|
|
|
}
|
|
|
|
proposal := mustNewTestProposal()
|
|
|
|
proposal.ID = uint64(proposalsCount)
|
|
|
|
proposal.CommitteeID = committee.ID + 1
|
|
|
|
suite.Keeper.SetProposal(suite.Ctx, proposal)
|
|
|
|
|
|
|
|
// No proposals
|
|
|
|
actualProposals := suite.Keeper.GetProposalsByCommittee(suite.Ctx, committee.ID+2)
|
|
|
|
suite.Require().Len(actualProposals, 0)
|
|
|
|
|
|
|
|
// Proposals for existing committees
|
|
|
|
actualProposals = suite.Keeper.GetProposalsByCommittee(suite.Ctx, committee.ID)
|
|
|
|
suite.Require().Len(actualProposals, proposalsCount)
|
|
|
|
actualProposals = suite.Keeper.GetProposalsByCommittee(suite.Ctx, committee.ID+1)
|
|
|
|
suite.Require().Len(actualProposals, 1)
|
|
|
|
|
|
|
|
// Make sure proposals have expected data
|
|
|
|
suite.Require().Equal(proposal, actualProposals[0])
|
|
|
|
}
|
|
|
|
|
|
|
|
func (suite *keeperTestSuite) TestGetVotesByProposal() {
|
|
|
|
proposal := mustNewTestProposal()
|
|
|
|
suite.Keeper.SetProposal(suite.Ctx, proposal)
|
|
|
|
votes := []types.Vote{
|
|
|
|
types.NewVote(proposal.ID, suite.Addresses[0], types.VOTE_TYPE_NO),
|
|
|
|
types.NewVote(proposal.ID, suite.Addresses[1], types.VOTE_TYPE_ABSTAIN),
|
|
|
|
types.NewVote(proposal.ID, suite.Addresses[1], types.VOTE_TYPE_YES),
|
|
|
|
}
|
|
|
|
expectedVotes := []types.Vote{votes[0], votes[2]}
|
|
|
|
for _, vote := range votes {
|
|
|
|
suite.Keeper.SetVote(suite.Ctx, vote)
|
|
|
|
}
|
|
|
|
actualVotes := suite.Keeper.GetVotesByProposal(suite.Ctx, proposal.ID)
|
|
|
|
suite.Require().Len(actualVotes, len(expectedVotes))
|
|
|
|
suite.Require().ElementsMatch(expectedVotes, actualVotes)
|
|
|
|
}
|
|
|
|
|
2020-03-10 22:29:16 +00:00
|
|
|
func TestKeeperTestSuite(t *testing.T) {
|
2022-01-08 00:39:27 +00:00
|
|
|
suite.Run(t, new(keeperTestSuite))
|
2020-03-10 23:16:22 +00:00
|
|
|
}
|