Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for NewSuite (0.14 sec)

  1. tests/integration/telemetry/api/setup_test.go

    var (
    	apps cdeployment.SingleNamespaceView
    
    	mockProm echo.Instances
    	ist      istio.Instance
    	promInst prometheus.Instance
    	ingr     []ingress.Instance
    )
    
    func TestMain(m *testing.M) {
    	framework.NewSuite(m).
    		Label(label.CustomSetup).
    		// TODO: Remove this restriction once we validate our prometheus helm chart version is high enough
    		Label(label.IPv4). // https://github.com/istio/istio/issues/35915
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. tests/integration/telemetry/policy/envoy_ratelimit_test.go

    			defer cleanup()
    			sendTrafficAndCheckIfRatelimited(t)
    		})
    }
    
    func TestMain(m *testing.M) {
    	// nolint: staticcheck
    	framework.
    		NewSuite(m).
    		Label(label.CustomSetup).
    		Setup(istio.Setup(&ist, nil)).
    		Setup(testSetup).
    		Setup(setupPrometheus).
    		Run()
    }
    
    func setupPrometheus(ctx resource.Context) (err error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. tests/integration/pilot/proxyconfig/proxyconfig_test.go

    	"istio.io/istio/pkg/test/framework/resource"
    	"istio.io/istio/pkg/test/util/retry"
    	"istio.io/istio/pkg/test/util/tmpl"
    )
    
    var i istio.Instance
    
    func TestMain(m *testing.M) {
    	framework.
    		NewSuite(m).
    		Skip("used for feature development, no need to run in CI").
    		Label(label.CustomSetup).
    		Setup(istio.Setup(&i, func(ctx resource.Context, cfg *istio.Config) {
    			cfg.ControlPlaneValues = `
    values:
      meshConfig:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  4. tests/integration/security/filebased_tls_origination/main_test.go

    	externalService echo.Instances
    	appNS           namespace.Instance
    	serviceNS       namespace.Instance
    	customConfig    []echo.Config
    )
    
    func TestMain(m *testing.M) {
    	// nolint: staticcheck
    	framework.
    		NewSuite(m).
    		Label(label.CustomSetup).
    		Setup(istio.Setup(&inst, setupConfig, cert.CreateCustomEgressSecret)).
    		Setup(namespace.Setup(&appNS, namespace.Config{Prefix: "appns", Inject: true})).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  5. tests/integration/security/cacert_rotation/main_test.go

    	"istio.io/istio/tests/integration/security/util/cert"
    	"istio.io/istio/tests/integration/security/util/reachability"
    )
    
    var apps deployment.SingleNamespaceView
    
    func TestMain(m *testing.M) {
    	framework.
    		NewSuite(m).
    		Label(label.CustomSetup).
    		Setup(istio.Setup(nil, setupConfig, cert.CreateCASecret)).
    		Setup(deployment.SetupSingleNamespace(&apps, deployment.Config{})).
    		Setup(func(ctx resource.Context) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  6. tests/integration/security/ca_custom_root/main_test.go

    	serverNakedFooAlt echo.Instances
    	customConfig      []echo.Config
    	echo1NS           namespace.Instance
    	config            deployment.Config
    )
    
    func TestMain(m *testing.M) {
    	framework.
    		NewSuite(m).
    		// k8s is required because the plugin CA key and certificate are stored in a k8s secret.
    		Label(label.CustomSetup).
    		Setup(istio.Setup(&inst, setupConfig, cert.CreateCASecret)).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  7. tests/integration/pilot/multiplecontrolplanes/main_test.go

    	apps       deployment.Echos
    )
    
    // TestMain defines the entrypoint for multiple controlplane tests using revisions and discoverySelectors.
    func TestMain(m *testing.M) {
    	// nolint: staticcheck
    	framework.
    		NewSuite(m).
    		RequireMultiPrimary().
    		// Requires two CPs with specific names to be configured.
    		Label(label.CustomSetup).
    		// We are deploying two isolated environments, which CNI doesn't support.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 16:52:52 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top