Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 37 for NewSuite (0.16 sec)

  1. tests/integration/helm/upgrade/main_test.go

    //  limitations under the License.
    
    package helmupgrade
    
    import (
    	"testing"
    
    	"istio.io/istio/pkg/test/framework"
    )
    
    func TestMain(m *testing.M) {
    	// nolint: staticcheck
    	framework.
    		NewSuite(m).
    		Setup(initVersions).
    		RequireSingleCluster().
    		Run()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 07 15:01:04 UTC 2023
    - 852 bytes
    - Viewed (0)
  2. tests/integration/operator/main_test.go

    //  limitations under the License.
    
    package operator
    
    import (
    	"testing"
    
    	"istio.io/istio/pkg/test/framework"
    )
    
    func TestMain(m *testing.M) {
    	// nolint: staticcheck
    	framework.
    		NewSuite(m).
    		RequireSingleCluster().
    		Run()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 11 21:47:00 UTC 2022
    - 826 bytes
    - Viewed (0)
  3. pkg/test/framework/integration/main_test.go

    package integration
    
    import (
    	"testing"
    
    	"istio.io/istio/pkg/test/framework"
    	"istio.io/istio/pkg/test/framework/resource"
    )
    
    func TestMain(m *testing.M) {
    	framework.NewSuite(m).EnvironmentFactory(resource.NilEnvironmentFactory).Run()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 18 20:37:32 UTC 2020
    - 826 bytes
    - Viewed (0)
  4. tests/integration/security/fuzz/main_test.go

    	"istio.io/istio/pkg/test/framework"
    	"istio.io/istio/pkg/test/framework/components/istio"
    	"istio.io/istio/pkg/test/framework/resource"
    )
    
    var ist istio.Instance
    
    func TestMain(m *testing.M) {
    	framework.NewSuite(m).Setup(istio.Setup(&ist, setupConfig)).Run()
    }
    
    func setupConfig(ctx resource.Context, cfg *istio.Config) {
    	if cfg == nil {
    		return
    	}
    
    	cfg.ControlPlaneValues = `
    meshConfig:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 18 02:28:30 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  5. tests/integration/helm/main_test.go

    //  limitations under the License.
    
    package helm
    
    import (
    	"testing"
    
    	"istio.io/istio/pkg/test/framework"
    )
    
    func TestMain(m *testing.M) {
    	// nolint: staticcheck
    	framework.
    		NewSuite(m).
    		RequireSingleCluster().
    		Run()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 11 21:47:00 UTC 2022
    - 822 bytes
    - Viewed (0)
  6. tests/integration/pilot/localwatcher/localsecretwatcher_test.go

    	// its doing something unique to that specific test.
    	apps = deployment.SingleNamespaceView{}
    )
    
    func TestMain(m *testing.M) {
    	// nolint: staticcheck
    	framework.
    		NewSuite(m).
    		RequireExternalControlPlaneTopology().
    		RequireMinVersion(17).
    		RequireMinClusters(2).
    		Setup(istio.Setup(&i, func(t resource.Context, cfg *istio.Config) {
    			cfg.ControlPlaneValues = `
    values:
      pilot:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. tests/integration/security/remote_jwks/main_test.go

    	echoNS    namespace.Instance
    	systemNs  namespace.Instance
    )
    
    // remote_jwks is to test fully delegating Envoy to fetch JWKs server (PILOT_JWT_ENABLE_REMOTE_JWKS: envoy).
    func TestMain(m *testing.M) {
    	framework.
    		NewSuite(m).
    		Label(label.CustomSetup).
    		Setup(istio.Setup(&ist, setupConfig)).
    		Setup(func(ctx resource.Context) error {
    			var err error
    			systemNs, err = istio.ClaimSystemNamespace(ctx)
    			return err
    		}).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 01:47:52 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. tests/integration/pilot/analysis/main_test.go

    // If a test requires a custom install it should go into its own package, otherwise it should go
    // here to reuse a single install across tests.
    func TestMain(m *testing.M) {
    	framework.
    		NewSuite(m).
    		Setup(istio.Setup(nil, func(_ resource.Context, cfg *istio.Config) {
    			cfg.ControlPlaneValues = `
    values:
      pilot:
        env:
          PILOT_ENABLE_STATUS: true
          PILOT_ENABLE_CONFIG_DISTRIBUTION_TRACKING: true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 22 18:52:14 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  9. tests/integration/telemetry/tracing/zipkin/main_test.go

    	"istio.io/istio/pkg/test/framework/label"
    	"istio.io/istio/pkg/test/framework/resource"
    	"istio.io/istio/tests/integration/telemetry/tracing"
    )
    
    func TestMain(m *testing.M) {
    	framework.NewSuite(m).
    		Label(label.CustomSetup).
    		Setup(istio.Setup(tracing.GetIstioInstance(), setupConfig)).
    		Setup(tracing.TestSetup).
    		Run()
    }
    
    func setupConfig(ctx resource.Context, cfg *istio.Config) {
    	if cfg == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 07 16:59:18 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. tests/integration/security/ecc_signature_algorithm/main_test.go

    	"istio.io/istio/pkg/test/framework/resource"
    )
    
    var (
    	inst istio.Instance
    	apps deployment.SingleNamespaceView
    )
    
    func TestMain(m *testing.M) {
    	framework.
    		NewSuite(m).
    		// Needed as it requires an environmental variable
    		Label(label.CustomSetup).
    		Setup(istio.Setup(&inst, setupConfig)).
    		Setup(deployment.SetupSingleNamespace(&apps, deployment.Config{})).
    		Run()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 05 22:29:44 UTC 2022
    - 1.5K bytes
    - Viewed (0)
Back to top