-
Notifications
You must be signed in to change notification settings - Fork 103
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
test(x/ecocredit): add tests for basket events #1408
Merged
Merged
Changes from 1 commit
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
421db41
test: basket event checks
33fe388
docs: util godocs
fdcddc9
style: feature file formatting
39aabd0
style: step ordering
d58a630
Merge branch 'main' into ty/1237-basket_event_checks
technicallyty 0b5958d
Merge branch 'main' into ty/1237-basket_event_checks
738eebf
Merge branch 'ty/1237-basket_event_checks' of https://github.com/rege…
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
package testutil | ||
|
||
import ( | ||
"fmt" | ||
|
||
sdk "github.com/cosmos/cosmos-sdk/types" | ||
"github.com/gogo/protobuf/proto" | ||
abci "github.com/tendermint/tendermint/abci/types" | ||
) | ||
|
||
// MatchEvent matches the values in a proto message struct to the attributes in a sdk.Event. | ||
func MatchEvent(expected proto.Message, emitted sdk.Event) error { | ||
msg, err := sdk.ParseTypedEvent(abci.Event(emitted)) | ||
if err != nil { | ||
return err | ||
} | ||
equal := proto.Equal(expected, msg) | ||
if !equal { | ||
return fmt.Errorf("expected %s\ngot %s", expected.String(), msg.String()) | ||
} | ||
return nil | ||
} | ||
|
||
func GetEvent(msg proto.Message, events []sdk.Event) (e sdk.Event, found bool) { | ||
eventName := proto.MessageName(msg) | ||
for _, e := range events { | ||
if eventName == e.Type { | ||
return e, true | ||
} | ||
} | ||
return e, false | ||
} |
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,61 @@ | ||
package testutil | ||
|
||
import ( | ||
"testing" | ||
|
||
sdk "github.com/cosmos/cosmos-sdk/types" | ||
"github.com/cosmos/cosmos-sdk/x/group" | ||
"github.com/cosmos/cosmos-sdk/x/nft" | ||
"github.com/stretchr/testify/require" | ||
) | ||
|
||
func TestMatchEvent(t *testing.T) { | ||
event := nft.EventSend{ | ||
ClassId: "foo", | ||
Id: "bar", | ||
Sender: "baz", | ||
Receiver: "qux", | ||
} | ||
|
||
sdkEvent, err := sdk.TypedEventToEvent(&event) | ||
require.NoError(t, err) | ||
|
||
err = MatchEvent(&event, sdkEvent) | ||
require.NoError(t, err) | ||
|
||
event.Receiver = "fail" | ||
err = MatchEvent(&event, sdkEvent) | ||
require.Error(t, err) | ||
} | ||
|
||
func TestGetEvent(t *testing.T) { | ||
events := sdk.Events{} | ||
|
||
event := nft.EventSend{ | ||
ClassId: "foo", | ||
Id: "bar", | ||
Sender: "baz", | ||
Receiver: "qux", | ||
} | ||
event2 := group.EventCreateGroup{GroupId: 2} | ||
|
||
sdkEvent, err := sdk.TypedEventToEvent(&event) | ||
require.NoError(t, err) | ||
|
||
sdkEvent2, err := sdk.TypedEventToEvent(&event2) | ||
require.NoError(t, err) | ||
events = append(events, sdkEvent, sdkEvent2) | ||
|
||
gotEvent, found := GetEvent(&event, events) | ||
require.True(t, found) | ||
|
||
require.Equal(t, gotEvent, sdkEvent) | ||
|
||
gotEvent2, found := GetEvent(&event2, events) | ||
require.True(t, found) | ||
require.Equal(t, gotEvent2, sdkEvent2) | ||
|
||
notInEvents := group.EventSubmitProposal{} | ||
_, found = GetEvent(¬InEvents, events) | ||
require.False(t, found) | ||
} |
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
Oops, something went wrong.
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.
needed to set the module address within some of the tests, so had to switch the test package to access the unexported keeper fields.