Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 82 for NewTest (0.13 sec)

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

    func TestDefaultInPlaceUpgradeFromPreviousMinorRelease(t *testing.T) {
    	framework.
    		NewTest(t).
    		Run(performInPlaceUpgradeFunc(previousSupportedVersion, false))
    }
    
    // TestCanaryUpgradeFromPreviousMinorRelease tests Istio upgrade using Helm with default options for Istio 1.(n-1)
    func TestCanaryUpgradeFromPreviousMinorRelease(t *testing.T) {
    	framework.
    		NewTest(t).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 20:31:47 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. tests/integration/helm/install_test.go

    	overrideValuesStr := `
    global:
      hub: %s
      tag: %s
      variant: %q
    `
    	framework.
    		NewTest(t).
    		Run(setupInstallation(overrideValuesStr, false, DefaultNamespaceConfig, ""))
    }
    
    // TestAmbientInstall tests Istio ambient profile installation using Helm
    func TestAmbientInstall(t *testing.T) {
    	framework.
    		NewTest(t).
    		Run(setupInstallation(ambientProfileOverride, true, DefaultNamespaceConfig, ""))
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  3. tests/integration/pilot/revisions/uninstall_test.go

    	revisionNotFound = "could not find target revision"
    )
    
    var allGVKs = append(helmreconciler.NamespacedResources(), helmreconciler.ClusterCPResources...)
    
    func TestUninstallByRevision(t *testing.T) {
    	framework.
    		NewTest(t).
    		Run(func(t framework.TestContext) {
    			t.NewSubTest("uninstall_revision").Run(func(t framework.TestContext) {
    				istioCtl := istioctl.NewOrFail(t, t, istioctl.Config{})
    				uninstallCmd := []string{
    					"uninstall",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  4. tests/integration/telemetry/policy/envoy_ratelimit_test.go

    )
    
    func TestRateLimiting(t *testing.T) {
    	framework.
    		NewTest(t).
    		Run(func(t framework.TestContext) {
    			cleanup := setupEnvoyFilter(t, "testdata/enable_envoy_ratelimit.yaml")
    			defer cleanup()
    			sendTrafficAndCheckIfRatelimited(t)
    		})
    }
    
    func TestLocalRateLimiting(t *testing.T) {
    	framework.
    		NewTest(t).
    		Run(func(t framework.TestContext) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  5. pkg/scheduler/util/assumecache/assume_cache_test.go

    }
    
    func makeObj(name, version, namespace string) metav1.Object {
    	return &metav1.ObjectMeta{
    		Name:            name,
    		Namespace:       namespace,
    		ResourceVersion: version,
    	}
    }
    
    func newTest(t *testing.T) (ktesting.TContext, *AssumeCache, *testInformer) {
    	return newTestWithIndexer(t, "", nil)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  6. tests/integration/operator/install_test.go

    	command   []string
    	errString string
    }
    
    // TestInstallCommandInput tests istioctl install command with different input arguments
    func TestInstallCommandInput(t *testing.T) {
    	framework.
    		NewTest(t).
    		Run(func(ctx framework.TestContext) {
    			istioCtl := istioctl.NewOrFail(ctx, ctx, istioctl.Config{})
    			testCases := []installTestCase{
    				{
    					command:   []string{"install", "--dry-run", "--revision", ""},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 14:30:43 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  7. tests/integration/pilot/gw_topology_test.go

    	kubetest "istio.io/istio/pkg/test/kube"
    	"istio.io/istio/pkg/test/util/retry"
    	"istio.io/istio/tests/integration/pilot/common"
    )
    
    func TestXFFGateway(t *testing.T) {
    	framework.
    		NewTest(t).
    		Run(func(t framework.TestContext) {
    			inject := false
    			if t.Settings().Compatibility {
    				inject = true
    			}
    			gatewayNs := namespace.NewOrFail(t, t, namespace.Config{Prefix: "custom-gateway", Inject: inject})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 8K bytes
    - Viewed (0)
  8. tests/integration/security/sds_ingress/quic/ingress_test.go

    // private key and server certificate for each TLS gateway. Verifies that client can communicate by
    // using both QUIC and TCP/TLS
    func TestTlsGatewaysWithQUIC(t *testing.T) {
    	// nolint: staticcheck
    	framework.
    		NewTest(t).
    		RequiresSingleCluster().
    		Run(func(t framework.TestContext) {
    			t.NewSubTest("tcp").Run(func(t framework.TestContext) {
    				ingressutil.RunTestMultiTLSGateways(t, inst, namespace.Future(&echo1NS))
    			})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  9. tests/integration/pilot/routing_test.go

    package pilot
    
    import (
    	"testing"
    
    	"istio.io/istio/pkg/test/framework"
    	"istio.io/istio/tests/integration/pilot/common"
    )
    
    func TestTraffic(t *testing.T) {
    	framework.
    		NewTest(t).
    		Run(func(t framework.TestContext) {
    			common.RunAllTrafficTests(t, i, apps)
    		})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 890 bytes
    - Viewed (0)
  10. tests/integration/ambient/traffic_test.go

    	"istio.io/istio/pkg/test/framework"
    	"istio.io/istio/pkg/test/framework/components/echo/common/deployment"
    	"istio.io/istio/tests/integration/pilot/common"
    )
    
    func TestTraffic(t *testing.T) {
    	framework.NewTest(t).
    		TopLevel().
    		Run(func(t framework.TestContext) {
    			apps := deployment.NewOrFail(t, t, deployment.Config{
    				NoExternalNamespace: true,
    				IncludeExtAuthz:     false,
    			})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 1.1K bytes
    - Viewed (0)
Back to top