github.com/smartcontractkit/chainlink-testing-framework/libs@v0.0.0-20240227141906-ec710b4eb1a3/k8s/e2e/local-runner/envs_test.go (about)

     1  package env_test
     2  
     3  import (
     4  	"testing"
     5  
     6  	"github.com/smartcontractkit/chainlink-testing-framework/libs/k8s/config"
     7  	"github.com/smartcontractkit/chainlink-testing-framework/libs/k8s/e2e/common"
     8  )
     9  
    10  func TestMultiStageMultiManifestConnection(t *testing.T) {
    11  	common.TestMultiStageMultiManifestConnection(t)
    12  }
    13  
    14  func TestConnectWithoutManifest(t *testing.T) {
    15  	common.TestConnectWithoutManifest(t)
    16  }
    17  
    18  func Test5NodesSoakEnvironmentWithPVCs(t *testing.T) {
    19  	common.Test5NodesSoakEnvironmentWithPVCs(t)
    20  }
    21  
    22  func TestWithSingleNodeEnv(t *testing.T) {
    23  	common.TestWithSingleNodeEnvParallel(t)
    24  }
    25  
    26  func TestWithSingleNodeEnvLocalCharts(t *testing.T) {
    27  	t.Setenv(config.EnvVarLocalCharts, "true")
    28  	common.TestWithSingleNodeEnv(t)
    29  }
    30  
    31  func TestMultipleNodeWithDiffDBVersionEnv(t *testing.T) {
    32  	common.TestMultipleNodeWithDiffDBVersionEnv(t)
    33  }
    34  
    35  func TestMinResources5NodesEnv(t *testing.T) {
    36  	common.TestMinResources5NodesEnv(t)
    37  }
    38  
    39  func TestMinResources5NodesEnvWithBlockscout(t *testing.T) {
    40  	common.TestMinResources5NodesEnvWithBlockscout(t)
    41  }
    42  
    43  func TestMultipleInstancesOfTheSameType(t *testing.T) {
    44  	common.TestMultipleInstancesOfTheSameType(t)
    45  }
    46  
    47  func Test5NodesPlus2MiningGethsReorgEnv(t *testing.T) {
    48  	common.Test5NodesPlus2MiningGethsReorgEnv(t)
    49  }
    50  
    51  func TestWithChaos(t *testing.T) {
    52  	common.TestWithChaos(t)
    53  }
    54  
    55  func TestEmptyEnvironmentStartup(t *testing.T) {
    56  	common.TestEmptyEnvironmentStartup(t)
    57  }
    58  
    59  func TestRolloutRestartUpdate(t *testing.T) {
    60  	common.TestRolloutRestart(t, true)
    61  }
    62  
    63  func TestRolloutRestartBySelector(t *testing.T) {
    64  	common.TestRolloutRestart(t, false)
    65  }
    66  
    67  func TestReplaceHelm(t *testing.T) {
    68  	common.TestReplaceHelm(t)
    69  }
    70  
    71  func TestRunTimeout(t *testing.T) {
    72  	common.TestRunTimeout(t)
    73  }
    74  
    75  func TestReallyLongLogs(t *testing.T) {
    76  	common.TestReallyLongLogs(t)
    77  }