-
Notifications
You must be signed in to change notification settings - Fork 655
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
feat(test): adding test to verify invalid recipient address over incentivized channel #1970
Changes from 6 commits
cb204df
af229e7
05d26c8
8d0f29a
bb96dd2
e3bfb69
76dc4bc
e3dc4a1
857acdf
c9b8a4f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -196,6 +196,122 @@ func (s *FeeMiddlewareTestSuite) TestMsgPayPacketFee_AsyncSingleSender_Succeeds( | |||||
}) | ||||||
} | ||||||
|
||||||
func (s *FeeMiddlewareTestSuite) TestMsgPayPacketFee_InvalidReceiverAccount() { | ||||||
t := s.T() | ||||||
ctx := context.TODO() | ||||||
|
||||||
relayer, channelA := s.SetupChainsRelayerAndChannel(ctx, feeMiddlewareChannelOptions()) | ||||||
chainA, chainB := s.GetChains() | ||||||
|
||||||
var ( | ||||||
chainADenom = chainA.Config().Denom | ||||||
testFee = testvalues.DefaultFee(chainADenom) | ||||||
payPacketFeeTxResp sdk.TxResponse | ||||||
) | ||||||
|
||||||
chainAWallet := s.CreateUserOnChainA(ctx, testvalues.StartingTokenAmount) | ||||||
|
||||||
t.Run("relayer wallets recovered", func(t *testing.T) { | ||||||
err := s.RecoverRelayerWallets(ctx, relayer) | ||||||
s.Require().NoError(err) | ||||||
}) | ||||||
|
||||||
chainARelayerWallet, chainBRelayerWallet, err := s.GetRelayerWallets(relayer) | ||||||
t.Run("relayer wallets fetched", func(t *testing.T) { | ||||||
s.Require().NoError(err) | ||||||
}) | ||||||
|
||||||
s.Require().NoError(test.WaitForBlocks(ctx, 1, chainA, chainB), "failed to wait for blocks") | ||||||
|
||||||
_, chainBRelayerUser := s.GetRelayerUsers(ctx) | ||||||
|
||||||
t.Run("register counter party payee", func(t *testing.T) { | ||||||
resp, err := s.RegisterCounterPartyPayee(ctx, chainB, chainBRelayerUser, channelA.Counterparty.PortID, channelA.Counterparty.ChannelID, chainBRelayerWallet.Address, chainARelayerWallet.Address) | ||||||
s.Require().NoError(err) | ||||||
s.AssertValidTxResponse(resp) | ||||||
}) | ||||||
|
||||||
t.Run("verify counter party payee", func(t *testing.T) { | ||||||
address, err := s.QueryCounterPartyPayee(ctx, chainB, chainBRelayerWallet.Address, channelA.Counterparty.ChannelID) | ||||||
s.Require().NoError(err) | ||||||
s.Require().Equal(chainARelayerWallet.Address, address) | ||||||
}) | ||||||
|
||||||
transferAmount := testvalues.DefaultTransferAmount(chainADenom) | ||||||
|
||||||
t.Run("send IBC transfer", func(t *testing.T) { | ||||||
transferMsg := transfertypes.NewMsgTransfer(channelA.PortID, channelA.ChannelID, transferAmount, chainAWallet.Bech32Address(chainA.Config().Bech32Prefix), testvalues.InvalidAddress, s.GetTimeoutHeight(ctx, chainA), 0) | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
I was a bit worried about this not being clear, but the timeout function returns a valid timeout for the chain referenced. When sending packets, the timeout is for the chain receiving the packet. So if you send from chainA, you want the timeout from chainB There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ah I see, thanks for the clarification. I'll make this change. |
||||||
txResp, err := s.BroadcastMessages(ctx, chainA, chainAWallet, transferMsg) | ||||||
// this message should be successful, as receiver account is not validated on the sending chain. | ||||||
s.Require().NoError(err) | ||||||
s.AssertValidTxResponse(txResp) | ||||||
}) | ||||||
|
||||||
t.Run("tokens are escrowed", func(t *testing.T) { | ||||||
actualBalance, err := s.GetChainANativeBalance(ctx, chainAWallet) | ||||||
s.Require().NoError(err) | ||||||
|
||||||
expected := testvalues.StartingTokenAmount - transferAmount.Amount.Int64() | ||||||
s.Require().Equal(expected, actualBalance) | ||||||
}) | ||||||
|
||||||
t.Run("pay packet fee", func(t *testing.T) { | ||||||
t.Run("no incentivized packets", func(t *testing.T) { | ||||||
packets, err := s.QueryIncentivizedPacketsForChannel(ctx, chainA, channelA.PortID, channelA.ChannelID) | ||||||
s.Require().NoError(err) | ||||||
s.Require().Empty(packets) | ||||||
}) | ||||||
|
||||||
packetId := channeltypes.NewPacketID(channelA.PortID, channelA.ChannelID, 1) | ||||||
packetFee := feetypes.NewPacketFee(testFee, chainAWallet.Bech32Address(chainA.Config().Bech32Prefix), nil) | ||||||
|
||||||
t.Run("should succeed", func(t *testing.T) { | ||||||
payPacketFeeTxResp, err = s.PayPacketFeeAsync(ctx, chainA, chainAWallet, packetId, packetFee) | ||||||
s.Require().NoError(err) | ||||||
s.AssertValidTxResponse(payPacketFeeTxResp) | ||||||
}) | ||||||
|
||||||
t.Run("there should be incentivized packets", func(t *testing.T) { | ||||||
packets, err := s.QueryIncentivizedPacketsForChannel(ctx, chainA, channelA.PortID, channelA.ChannelID) | ||||||
s.Require().NoError(err) | ||||||
s.Require().Len(packets, 1) | ||||||
actualFee := packets[0].PacketFees[0].Fee | ||||||
|
||||||
s.Require().True(actualFee.RecvFee.IsEqual(testFee.RecvFee)) | ||||||
s.Require().True(actualFee.AckFee.IsEqual(testFee.AckFee)) | ||||||
s.Require().True(actualFee.TimeoutFee.IsEqual(testFee.TimeoutFee)) | ||||||
}) | ||||||
|
||||||
t.Run("balance should be lowered by sum of recv ack and timeout", func(t *testing.T) { | ||||||
chatton marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
// The balance should be lowered by the sum of the recv, ack and timeout fees. | ||||||
actualBalance, err := s.GetChainANativeBalance(ctx, chainAWallet) | ||||||
s.Require().NoError(err) | ||||||
|
||||||
expected := testvalues.StartingTokenAmount - transferAmount.Amount.Int64() - testFee.Total().AmountOf(chainADenom).Int64() | ||||||
s.Require().Equal(expected, actualBalance) | ||||||
}) | ||||||
}) | ||||||
|
||||||
t.Run("start relayer", func(t *testing.T) { | ||||||
s.StartRelayer(relayer) | ||||||
}) | ||||||
|
||||||
t.Run("packets are relayed", func(t *testing.T) { | ||||||
packets, err := s.QueryIncentivizedPacketsForChannel(ctx, chainA, channelA.PortID, channelA.ChannelID) | ||||||
s.Require().NoError(err) | ||||||
s.Require().Empty(packets) | ||||||
}) | ||||||
t.Run("timeout fee and transfer amount refunded", func(t *testing.T) { | ||||||
actualBalance, err := s.GetChainANativeBalance(ctx, chainAWallet) | ||||||
s.Require().NoError(err) | ||||||
|
||||||
// once the relayer has relayed the packets, the timeout fee should be refunded. | ||||||
// the address was invalid so the amount sent should be unescrowed. | ||||||
expected := testvalues.StartingTokenAmount - testFee.AckFee.AmountOf(chainADenom).Int64() - testFee.RecvFee.AmountOf(chainADenom).Int64() | ||||||
s.Require().Equal(expected, actualBalance, "the amount sent and timeout fee should have been refunded as there was an invalid receiver address provided") | ||||||
}) | ||||||
} | ||||||
|
||||||
func (s *FeeMiddlewareTestSuite) TestMultiMsg_MsgPayPacketFeeSingleSender() { | ||||||
t := s.T() | ||||||
ctx := context.TODO() | ||||||
|
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.
We reference counterparty as one word throughout the codebase
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.
I updated other occurrences of this as well.