Skip to content
Open
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
2 changes: 2 additions & 0 deletions deployment/ccip/changeset/solana_v0_1_1/self_serve_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import (
"github.com/gagliardetto/solana-go/programs/token"

chainSelectors "github.com/smartcontractkit/chain-selectors"
"github.com/smartcontractkit/quarantine"
"github.com/stretchr/testify/require"

lockrelease "github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings/v0_1_1/lockrelease_token_pool"
Expand Down Expand Up @@ -43,6 +44,7 @@ func TestOnboardTokenPoolForSelfServeWithMCMs(t *testing.T) {
}

func TestOnboardTokenPoolForSelfServeWithoutMCMs(t *testing.T) {
quarantine.Flaky(t, "DX-2361")
t.Parallel()
doTestOnboardTokenPoolForSelfServe(t, false)
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import (

"github.com/ethereum/go-ethereum/common"
chain_selectors "github.com/smartcontractkit/chain-selectors"
"github.com/smartcontractkit/quarantine"
"github.com/stretchr/testify/require"

"github.com/smartcontractkit/chainlink-ccip/chains/evm/gobindings/generated/v1_0_0/rmn_proxy_contract"
Expand All @@ -26,6 +27,7 @@ import (
)

func TestDeployTokenPoolFactoryChangeset(t *testing.T) {
quarantine.Flaky(t, "DX-2894")
t.Parallel()

tests := []struct {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ import (

"github.com/stretchr/testify/require"

"github.com/smartcontractkit/quarantine"

"github.com/smartcontractkit/chainlink-evm/pkg/utils"

cldf "github.com/smartcontractkit/chainlink-deployments-framework/deployment"
Expand Down Expand Up @@ -301,6 +303,7 @@ func TestProposeAdminRoleChangeset_ExecutionWithExternalAdmin(t *testing.T) {
}

func TestProposeAdminRoleChangesetV2_Validations(t *testing.T) {
quarantine.Flaky(t, "DX-2887")
t.Parallel()

e, _, selectorB, _ := testhelpers.SetupTwoChainEnvironmentWithTokens(t, logger.TestLogger(t), true)
Expand Down Expand Up @@ -454,6 +457,7 @@ func TestProposeAdminRoleChangesetV2_Validations(t *testing.T) {
}

func TestProposeAdminRoleChangesetV2_ExecutionWithMCMS(t *testing.T) {
quarantine.Flaky(t, "DX-2889")
t.Parallel()

mcmsConfig := &proposalutils.TimelockConfig{MinDelay: 0 * time.Second}
Expand Down Expand Up @@ -556,6 +560,7 @@ func TestProposeAdminRoleChangesetV2_ExecutionWithoutMCMS(t *testing.T) {
}

func TestProposeAdminRoleChangesetV2_MultipleTokensPerChain(t *testing.T) {
quarantine.Flaky(t, "DX-2892")
t.Parallel()

mcmsConfig := &proposalutils.TimelockConfig{MinDelay: 0 * time.Second}
Expand Down Expand Up @@ -615,6 +620,7 @@ func TestProposeAdminRoleChangesetV2_MultipleTokensPerChain(t *testing.T) {
}

func TestProposeAdminRoleChangesetV2_EmptyConfigReturnsError(t *testing.T) {
quarantine.Flaky(t, "DX-2891")
t.Parallel()

e, _, _, _ := testhelpers.SetupTwoChainEnvironmentWithTokens(t, logger.TestLogger(t), true)
Expand All @@ -633,6 +639,7 @@ func TestProposeAdminRoleChangesetV2_EmptyConfigReturnsError(t *testing.T) {
}

func TestProposeAdminRoleChangesetV2_PendingAdminValidation(t *testing.T) {
quarantine.Flaky(t, "DX-2897")
t.Parallel()

mcmsConfig := &proposalutils.TimelockConfig{MinDelay: 0 * time.Second}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ import (
"github.com/ethereum/go-ethereum/common"
"github.com/stretchr/testify/require"

"github.com/smartcontractkit/quarantine"

"github.com/smartcontractkit/chainlink-evm/pkg/utils"

"github.com/smartcontractkit/chainlink/deployment/ccip/changeset/testhelpers"
Expand All @@ -19,6 +21,7 @@ import (
)

func TestUpdateAdminRoleChangesetV2_Validations(t *testing.T) {
quarantine.Flaky(t, "DX-2890")
t.Parallel()

mcmsConfig := &proposalutils.TimelockConfig{MinDelay: 0 * time.Second}
Expand Down Expand Up @@ -153,6 +156,7 @@ func TestUpdateAdminRoleChangesetV2_EmptyConfigIsGracefullyHandled(t *testing.T)
}

func TestUpdateAdminRoleChangesetV2_ExecutionWithoutMCMS(t *testing.T) {
quarantine.Flaky(t, "DX-2895")
t.Parallel()

e, selectorA, selectorB, _ := testhelpers.SetupTwoChainEnvironmentWithTokens(t, logger.TestLogger(t), false)
Expand Down Expand Up @@ -306,6 +310,7 @@ func TestUpdateAdminRoleChangesetV2_ExecutionWithMCMS(t *testing.T) {
}

func TestUpdateAdminRoleChangesetV2_MultipleTokensPerChain(t *testing.T) {
quarantine.Flaky(t, "DX-2888")
t.Parallel()

mcmsConfig := &proposalutils.TimelockConfig{MinDelay: 0 * time.Second}
Expand Down
Loading