Some checks failed
CodeQL / Analyze (push) Waiting to run
golangci-lint / lint (push) Waiting to run
Tests / Code Coverage / build (amd64) (push) Waiting to run
Tests / Code Coverage / build (arm64) (push) Waiting to run
Tests / Code Coverage / unit-tests (map[additional-args:-tags="test_e2e" name:e2e path:./e2e]) (push) Waiting to run
Tests / Code Coverage / unit-tests (map[name:08-wasm path:./modules/light-clients/08-wasm]) (push) Waiting to run
Tests / Code Coverage / unit-tests (map[name:ibc-go path:.]) (push) Waiting to run
Docker Build & Push Simapp (main) / docker-build (push) Has been cancelled
99 lines
3.6 KiB
Go
99 lines
3.6 KiB
Go
//go:build !test_e2e
|
|
|
|
package transfer
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
test "github.com/cosmos/interchaintest/v10/testutil"
|
|
testifysuite "github.com/stretchr/testify/suite"
|
|
|
|
govtypes "git.cw.tr/mukan-network/mukan-sdk/x/gov/types"
|
|
paramsproposaltypes "git.cw.tr/mukan-network/mukan-sdk/x/params/types/proposal"
|
|
|
|
"github.com/cosmos/ibc-go/e2e/testsuite"
|
|
"github.com/cosmos/ibc-go/e2e/testsuite/query"
|
|
"github.com/cosmos/ibc-go/e2e/testvalues"
|
|
transfertypes "git.cw.tr/mukan-network/mukan-ibc/modules/apps/transfer/types"
|
|
ibctesting "git.cw.tr/mukan-network/mukan-ibc/testing"
|
|
)
|
|
|
|
// compatibility:from_version: v7.10.0
|
|
func TestTransferTestSuiteSendEnabled(t *testing.T) {
|
|
testifysuite.Run(t, new(TransferTestSuiteSendEnabled))
|
|
}
|
|
|
|
type TransferTestSuiteSendEnabled struct {
|
|
transferTester
|
|
}
|
|
|
|
func (s *TransferTestSuiteSendEnabled) SetupSuite() {
|
|
s.SetupChains(context.TODO(), 2, nil, func(options *testsuite.ChainOptions) {
|
|
options.RelayerCount = 1
|
|
})
|
|
}
|
|
|
|
// TestSendEnabledParam tests changing ics20 SendEnabled parameter
|
|
func (s *TransferTestSuiteSendEnabled) TestSendEnabledParam() {
|
|
t := s.T()
|
|
ctx := context.TODO()
|
|
|
|
testName := t.Name()
|
|
// Note: explicitly not using t.Parallel() in this test as it makes chain wide changes
|
|
s.CreateTransferPath(testName)
|
|
|
|
chainA, chainB := s.GetChains()
|
|
|
|
channelA := s.GetChainAChannelForTest(testName)
|
|
chainAVersion := chainA.Config().Images[0].Version
|
|
chainADenom := chainA.Config().Denom
|
|
|
|
chainAWallet := s.CreateUserOnChainA(ctx, testvalues.StartingTokenAmount)
|
|
chainAAddress := chainAWallet.FormattedAddress()
|
|
|
|
chainBWallet := s.CreateUserOnChainB(ctx, testvalues.StartingTokenAmount)
|
|
chainBAddress := chainBWallet.FormattedAddress()
|
|
|
|
isSelfManagingParams := testvalues.SelfParamsFeatureReleases.IsSupported(chainAVersion)
|
|
|
|
govModuleAddress, err := query.ModuleAccountAddress(ctx, govtypes.ModuleName, chainA)
|
|
s.Require().NoError(err)
|
|
s.Require().NotNil(govModuleAddress)
|
|
|
|
s.Require().NoError(test.WaitForBlocks(ctx, 1, chainA, chainB), "failed to wait for blocks")
|
|
|
|
t.Run("ensure transfer sending is enabled", func(t *testing.T) {
|
|
enabled := s.QueryTransferParams(ctx, chainA).SendEnabled
|
|
s.Require().True(enabled)
|
|
})
|
|
|
|
t.Run("ensure packets can be sent", func(t *testing.T) {
|
|
transferTxResp := s.Transfer(ctx, chainA, chainAWallet, channelA.PortID, channelA.ChannelID, testvalues.DefaultTransferAmount(chainADenom), chainAAddress, chainBAddress, s.GetTimeoutHeight(ctx, chainB), 0, "")
|
|
s.AssertTxSuccess(transferTxResp)
|
|
})
|
|
|
|
t.Run("change send enabled parameter to disabled", func(t *testing.T) {
|
|
if isSelfManagingParams {
|
|
msg := transfertypes.NewMsgUpdateParams(govModuleAddress.String(), transfertypes.NewParams(false, true))
|
|
s.ExecuteAndPassGovV1Proposal(ctx, msg, chainA, chainAWallet)
|
|
} else {
|
|
changes := []paramsproposaltypes.ParamChange{
|
|
paramsproposaltypes.NewParamChange(transfertypes.StoreKey, string(transfertypes.KeySendEnabled), "false"),
|
|
}
|
|
|
|
proposal := paramsproposaltypes.NewParameterChangeProposal(ibctesting.Title, ibctesting.Description, changes)
|
|
s.ExecuteAndPassGovV1Beta1Proposal(ctx, chainA, chainAWallet, proposal)
|
|
}
|
|
})
|
|
|
|
t.Run("ensure transfer params are disabled", func(t *testing.T) {
|
|
enabled := s.QueryTransferParams(ctx, chainA).SendEnabled
|
|
s.Require().False(enabled)
|
|
})
|
|
|
|
t.Run("ensure ics20 transfer fails", func(t *testing.T) {
|
|
transferTxResp := s.Transfer(ctx, chainA, chainAWallet, channelA.PortID, channelA.ChannelID, testvalues.DefaultTransferAmount(chainADenom), chainAAddress, chainBAddress, s.GetTimeoutHeight(ctx, chainB), 0, "")
|
|
s.AssertTxFailure(transferTxResp, transfertypes.ErrSendDisabled)
|
|
})
|
|
}
|