Skip to content
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

[CCIP-2691] Adds E2E Test for Individual Token Pool Rate Limits #1132

Merged
merged 2 commits into from
Jul 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -342,6 +342,12 @@ jobs:
os: ubuntu-latest
file: ccip
run: -run ^TestSmokeCCIPRateLimit$
- name: ccip-smoke-rate-limit
nodes: 1
dir: ccip-tests/smoke
os: ubuntu-latest
file: ccip
run: -run ^TestSmokeCCIPTokenPoolRateLimits$
- name: ccip-smoke-multicall
nodes: 1
dir: ccip-tests/smoke
Expand Down
3 changes: 1 addition & 2 deletions integration-tests/ccip-tests/actions/ccip_helpers.go
Original file line number Diff line number Diff line change
Expand Up @@ -3094,7 +3094,6 @@ func ExpectPhaseToFail(phase testreporters.Phase, phaseSpecificOptions ...PhaseS
// If not, just pass in nil.
func (lane *CCIPLane) ValidateRequests(validationOptionFuncs ...ValidationOptionFunc) {
var opts validationOptions
require.LessOrEqual(lane.Test, len(validationOptionFuncs), 1, "only one validation option function can be passed in to ValidateRequests")
for _, f := range validationOptionFuncs {
if f != nil {
f(lane.Logger, &opts)
Expand Down Expand Up @@ -3151,7 +3150,7 @@ func (lane *CCIPLane) ValidateRequestByTxHash(txHash common.Hash, opts validatio
}
for _, msgLog := range msgLogs {
seqNumber := msgLog.SequenceNumber
lane.Logger = ptr.Ptr(lane.Logger.With().Str("msgId ", fmt.Sprintf("0x%x", msgLog.MessageId[:])).Logger())
lane.Logger = ptr.Ptr(lane.Logger.With().Str("msgId", fmt.Sprintf("0x%x", msgLog.MessageId[:])).Logger())
var reqStat *testreporters.RequestStat
for _, stat := range reqStats {
if stat.SeqNum == seqNumber {
Expand Down
131 changes: 131 additions & 0 deletions integration-tests/ccip-tests/smoke/ccip_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -531,6 +531,7 @@ func TestSmokeCCIPOnRampLimits(t *testing.T) {
Msg("Limited token transfer failed on source chain (a good thing in this context)")

// Set a high price for the tokens to more easily trigger aggregate rate limits
// Aggregate rate limits are based on USD price of the tokens
err = src.Common.PriceRegistry.UpdatePrices([]contracts.InternalTokenPriceUpdate{
{
SourceToken: aggRateToken.ContractAddress,
Expand Down Expand Up @@ -614,6 +615,136 @@ func TestSmokeCCIPOffRampAggRateLimit(t *testing.T) {
testOffRampRateLimits(t, aggRateLimited)
}

func TestSmokeCCIPTokenPoolRateLimits(t *testing.T) {
t.Parallel()

log := logging.GetTestLogger(t)
TestCfg := testsetups.NewCCIPTestConfig(t, log, testconfig.Smoke, testsetups.WithNoTokensPerMessage(4), testsetups.WithTokensPerChain(4))
require.False(t, pointer.GetBool(TestCfg.TestGroupInput.ExistingDeployment),
"This test modifies contract state. Before running it, ensure you are willing and able to do so.",
)
err := contracts.MatchContractVersionsOrAbove(map[contracts.Name]contracts.Version{
contracts.OffRampContract: contracts.V1_5_0_dev,
contracts.OnRampContract: contracts.V1_5_0_dev,
})
require.NoError(t, err, "Required contract versions not met")

setUpOutput := testsetups.CCIPDefaultTestSetUp(t, &log, "smoke-ccip", nil, TestCfg)
if len(setUpOutput.Lanes) == 0 {
return
}
t.Cleanup(func() {
require.NoError(t, setUpOutput.TearDown())
})

var tests []testDefinition
for _, lane := range setUpOutput.Lanes {
tests = append(tests, testDefinition{
testName: fmt.Sprintf("Network %s to network %s",
lane.ForwardLane.SourceNetworkName, lane.ForwardLane.DestNetworkName),
lane: lane.ForwardLane,
})
}

var (
capacityLimit = big.NewInt(1e16)
overCapacityAmount = new(big.Int).Add(capacityLimit, big.NewInt(1))

// token without any limits
freeTokenIndex = 0
// token with rate limits
limitedTokenIndex = 1
)

for _, tc := range tests {
t.Run(fmt.Sprintf("%s - Token Pool Rate Limits", tc.testName), func(t *testing.T) {
tc.lane.Test = t
src := tc.lane.Source
dest := tc.lane.Dest
require.GreaterOrEqual(t, len(src.Common.BridgeTokens), 2, "At least two bridge tokens needed for test")
require.GreaterOrEqual(t, len(src.Common.BridgeTokenPools), 2, "At least two bridge token pools needed for test")
require.GreaterOrEqual(t, len(dest.Common.BridgeTokens), 2, "At least two bridge tokens needed for test")
require.GreaterOrEqual(t, len(dest.Common.BridgeTokenPools), 2, "At least two bridge token pools needed for test")
addLiquidity(t, src.Common, new(big.Int).Mul(capacityLimit, big.NewInt(20)))
addLiquidity(t, dest.Common, new(big.Int).Mul(capacityLimit, big.NewInt(20)))

var (
freeToken = src.Common.BridgeTokens[freeTokenIndex]
limitedToken = src.Common.BridgeTokens[limitedTokenIndex]
limitedTokenPool = src.Common.BridgeTokenPools[limitedTokenIndex]
)
tc.lane.Logger.Info().
Str("Free Token", freeToken.ContractAddress.Hex()).
Str("Limited Token", limitedToken.ContractAddress.Hex()).
Msg("Tokens for rate limit testing")
err := tc.lane.DisableAllRateLimiting() // Make sure this is pure
require.NoError(t, err, "Error disabling rate limits")

// Check capacity limits
err = limitedTokenPool.SetRemoteChainRateLimits(src.DestChainSelector, token_pool.RateLimiterConfig{
IsEnabled: true,
Capacity: capacityLimit,
Rate: new(big.Int).Sub(capacityLimit, big.NewInt(1)), // Set as high rate as possible to avoid it getting in the way
})
require.NoError(t, err, "Error setting token pool rate limit")
err = src.Common.ChainClient.WaitForEvents()
require.NoError(t, err, "Error waiting for events")

// Send all tokens under their limits and ensure they succeed
src.TransferAmount[freeTokenIndex] = overCapacityAmount
src.TransferAmount[limitedTokenIndex] = big.NewInt(1)
tc.lane.RecordStateBeforeTransfer()
err = tc.lane.SendRequests(1, big.NewInt(actions.DefaultDestinationGasLimit))
require.NoError(t, err)
tc.lane.ValidateRequests()

// Send limited token over capacity and ensure it fails
src.TransferAmount[freeTokenIndex] = big.NewInt(0)
src.TransferAmount[limitedTokenIndex] = overCapacityAmount
failedTx, _, _, err := tc.lane.Source.SendRequest(tc.lane.Dest.ReceiverDapp.EthAddress, big.NewInt(actions.DefaultDestinationGasLimit))
require.Error(t, err, "Limited token transfer should immediately revert")
errReason, _, err := src.Common.ChainClient.RevertReasonFromTx(failedTx, lock_release_token_pool.LockReleaseTokenPoolABI)
require.NoError(t, err)
require.Equal(t, "TokenMaxCapacityExceeded", errReason, "Expected token capacity error")
tc.lane.Logger.
Info().
Str("Token", limitedToken.ContractAddress.Hex()).
Msg("Limited token transfer failed on source chain (a good thing in this context)")

// Check rate limit
err = limitedTokenPool.SetRemoteChainRateLimits(src.DestChainSelector, token_pool.RateLimiterConfig{
IsEnabled: true,
Capacity: new(big.Int).Mul(capacityLimit, big.NewInt(2)), // Set a high capacity to avoid it getting in the way
Rate: big.NewInt(1),
})
require.NoError(t, err, "Error setting token pool rate limit")
err = src.Common.ChainClient.WaitForEvents()
require.NoError(t, err, "Error waiting for events")

// Send all tokens under their limits and ensure they succeed
src.TransferAmount[freeTokenIndex] = overCapacityAmount
src.TransferAmount[limitedTokenIndex] = capacityLimit
tc.lane.RecordStateBeforeTransfer()
err = tc.lane.SendRequests(1, big.NewInt(actions.DefaultDestinationGasLimit))
require.NoError(t, err)
tc.lane.ValidateRequests()

// Send limited token over rate limit and ensure it fails
src.TransferAmount[freeTokenIndex] = big.NewInt(0)
src.TransferAmount[limitedTokenIndex] = capacityLimit
failedTx, _, _, err = tc.lane.Source.SendRequest(tc.lane.Dest.ReceiverDapp.EthAddress, big.NewInt(actions.DefaultDestinationGasLimit))
require.Error(t, err, "Limited token transfer should immediately revert")
errReason, _, err = src.Common.ChainClient.RevertReasonFromTx(failedTx, lock_release_token_pool.LockReleaseTokenPoolABI)
require.NoError(t, err)
require.Equal(t, "TokenRateLimitReached", errReason, "Expected rate limit reached error")
tc.lane.Logger.
Info().
Str("Token", limitedToken.ContractAddress.Hex()).
Msg("Limited token transfer failed on source chain (a good thing in this context)")
})
}
}

func TestSmokeCCIPMulticall(t *testing.T) {
t.Parallel()
log := logging.GetTestLogger(t)
Expand Down
Loading