-
Notifications
You must be signed in to change notification settings - Fork 629
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
…2108) * adding new controller msg service, register account types, register interfaces and boilerplate * fixing typo * fixing protodoc and regenerate godocs * adding channel id to MsgRegisterAccountResponse * adding sdk.Msg impl for MsgRegisterAccount * formatting imports * adding additional tests with multiple versions, creating TestAccAddress const (cherry picked from commit 94d0840) # Conflicts: # modules/apps/27-interchain-accounts/controller/types/msgs.go # testing/values.go Co-authored-by: Damian Nolan <damiannolan@gmail.com>
- Loading branch information
1 parent
2acc05b
commit 0f31a6e
Showing
4 changed files
with
125 additions
and
3 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
96 changes: 96 additions & 0 deletions
96
modules/apps/27-interchain-accounts/controller/types/msgs_test.go
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,96 @@ | ||
package types_test | ||
|
||
import ( | ||
"testing" | ||
|
||
sdk "github.com/cosmos/cosmos-sdk/types" | ||
"github.com/stretchr/testify/require" | ||
|
||
"github.com/cosmos/ibc-go/v5/modules/apps/27-interchain-accounts/controller/types" | ||
icatypes "github.com/cosmos/ibc-go/v5/modules/apps/27-interchain-accounts/types" | ||
feetypes "github.com/cosmos/ibc-go/v5/modules/apps/29-fee/types" | ||
ibctesting "github.com/cosmos/ibc-go/v5/testing" | ||
) | ||
|
||
func TestMsgRegisterAccountValidateBasic(t *testing.T) { | ||
var msg *types.MsgRegisterAccount | ||
|
||
testCases := []struct { | ||
name string | ||
malleate func() | ||
expPass bool | ||
}{ | ||
{ | ||
"success", | ||
func() {}, | ||
true, | ||
}, | ||
{ | ||
"success: with empty channel version", | ||
func() { | ||
msg.Version = "" | ||
}, | ||
true, | ||
}, | ||
{ | ||
"success: with fee enabled channel version", | ||
func() { | ||
feeMetadata := feetypes.Metadata{ | ||
FeeVersion: feetypes.Version, | ||
AppVersion: icatypes.NewDefaultMetadataString(ibctesting.FirstConnectionID, ibctesting.FirstConnectionID), | ||
} | ||
|
||
bz := feetypes.ModuleCdc.MustMarshalJSON(&feeMetadata) | ||
msg.Version = string(bz) | ||
}, | ||
true, | ||
}, | ||
{ | ||
"connection id is invalid", | ||
func() { | ||
msg.ConnectionId = "" | ||
}, | ||
false, | ||
}, | ||
{ | ||
"owner address is empty", | ||
func() { | ||
msg.Owner = "" | ||
}, | ||
false, | ||
}, | ||
{ | ||
"owner address is invalid", | ||
func() { | ||
msg.Owner = "invalid_address" | ||
}, | ||
false, | ||
}, | ||
} | ||
|
||
for i, tc := range testCases { | ||
|
||
msg = types.NewMsgRegisterAccount( | ||
ibctesting.FirstConnectionID, | ||
ibctesting.TestAccAddress, | ||
icatypes.NewDefaultMetadataString(ibctesting.FirstConnectionID, ibctesting.FirstConnectionID), | ||
) | ||
|
||
tc.malleate() | ||
|
||
err := msg.ValidateBasic() | ||
if tc.expPass { | ||
require.NoError(t, err, "valid test case %d failed: %s", i, tc.name) | ||
} else { | ||
require.Error(t, err, "invalid test case %d passed: %s", i, tc.name) | ||
} | ||
} | ||
} | ||
|
||
func TestMsgRegisterAccountGetSigners(t *testing.T) { | ||
expSigner, err := sdk.AccAddressFromBech32(ibctesting.TestAccAddress) | ||
require.NoError(t, err) | ||
|
||
msg := types.NewMsgRegisterAccount(ibctesting.FirstConnectionID, ibctesting.TestAccAddress, "") | ||
require.Equal(t, []sdk.AccAddress{expSigner}, msg.GetSigners()) | ||
} |
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