-
Notifications
You must be signed in to change notification settings - Fork 610
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 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
- Loading branch information
1 parent
0fa2978
commit 94d0840
Showing
3 changed files
with
124 additions
and
2 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
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