Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 183 for NewTest (0.1 sec)

  1. tests/integration/pilot/revisioned_upgrade_test.go

    	successThreshold = 0.95
    )
    
    // TestRevisionedUpgrade tests a revision-based upgrade from the specified versions to current master
    func TestRevisionedUpgrade(t *testing.T) {
    	// nolint: staticcheck
    	framework.NewTest(t).
    		RequiresSingleCluster().
    		RequiresLocalControlPlane().
    		// Requires installation of CPs from manifests, won't succeed
    		// if existing CPs have different root cert
    		Label(label.CustomSetup).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  2. tests/integration/pilot/locality_test.go

    const localityDistribute = `
    distribute:
    - from: region
      to:
        nearregion: 80
        region: 20`
    
    func TestLocality(t *testing.T) {
    	// nolint: staticcheck
    	framework.
    		NewTest(t).
    		RequiresSingleCluster().
    		Run(func(t framework.TestContext) {
    			destA := apps.B[0]
    			destB := apps.C[0]
    			destC := apps.Naked[0]
    			if !t.Settings().Skip(echo.VM) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  3. tests/integration/ambient/cnirepair/main_test.go

    	apps.Sidecar = match.ServiceName(echo.NamespacedName{Name: Sidecar, Namespace: apps.Namespace}).GetMatches(echos)
    
    	return nil
    }
    
    func TestTrafficWithCNIRepair(t *testing.T) {
    	framework.NewTest(t).
    		TopLevel().
    		Run(func(t framework.TestContext) {
    			apps := common_deploy.NewOrFail(t, t, common_deploy.Config{
    				NoExternalNamespace: true,
    				IncludeExtAuthz:     false,
    			})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 09 09:12:45 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. tests/integration/ambient/gateway_conformance_test.go

    	"gateway-conformance-app-backend",
    	"gateway-conformance-web-backend",
    	"gateway-conformance-mesh",
    }
    
    var skippedTests = map[string]string{}
    
    func TestGatewayConformance(t *testing.T) {
    	framework.
    		NewTest(t).
    		Run(func(ctx framework.TestContext) {
    			// Precreate the GatewayConformance namespaces, and apply the Image Pull Secret to them.
    			if ctx.Settings().Image.PullSecret != "" {
    				for _, ns := range conformanceNamespaces {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 6K bytes
    - Viewed (0)
  5. tests/integration/security/ca_custom_root/trust_domain_validation_test.go

    // - works for both HTTP and TCP protocol
    // - works for pass through filter chains
    func TestTrustDomainValidation(t *testing.T) {
    	framework.NewTest(t).Run(
    		func(ctx framework.TestContext) {
    			testNS := apps.EchoNamespace.Namespace
    
    			ctx.ConfigIstio().YAML(testNS.Name(), fmt.Sprintf(policy, testNS.Name())).ApplyOrFail(ctx)
    
    			trustDomains := map[string]struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. tests/integration/pilot/multi_version_revision_test.go

    // should test all possible revisioned namespace pairings to test traffic between all versions
    func TestMultiVersionRevision(t *testing.T) {
    	// nolint: staticcheck
    	framework.NewTest(t).
    		RequiresSingleCluster().
    		RequiresLocalControlPlane().
    		// Requires installation of CPs from manifests, won't succeed
    		// if existing CPs have different root cert
    		Label(label.CustomSetup).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. tests/integration/pilot/proxyconfig/proxyconfig_test.go

            A: "1"
            B: "2"
          `
    		})).
    		Run()
    }
    
    type proxyConfigInstance struct {
    	namespace string
    	config    string
    }
    
    func TestProxyConfig(t *testing.T) {
    	framework.NewTest(t).
    		RequireIstioVersion("1.13").
    		Run(func(ctx framework.TestContext) {
    			ns := namespace.NewOrFail(ctx, ctx, namespace.Config{
    				Prefix: "pc-test",
    				Inject: true,
    			})
    			cases := []struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  8. tests/integration/pilot/workloadentry_test.go

    // Each case tests a different way of using local resources to reach remote destination(s).
    func TestWorkloadEntryGateway(t *testing.T) {
    	// nolint: staticcheck
    	framework.NewTest(t).
    		RequiresMinClusters(2).
    		Run(func(t framework.TestContext) {
    			crd.DeployGatewayAPIOrSkip(t)
    			i := istio.GetOrFail(t, t)
    			type gwAddr struct {
    				ip   string
    				port int
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  9. tests/integration/ambient/wasm_test.go

    	case "service":
    		return "Service", "\"\"", targetName
    	default:
    		return "", "", ""
    	}
    }
    
    func TestWasmPluginConfigurations(t *testing.T) {
    	framework.NewTest(t).
    		Run(func(t framework.TestContext) {
    			testCases := []struct {
    				desc         string
    				name         string
    				testHostname string
    				targetType   string
    				targetName   string
    			}{
    				{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 21:02:05 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  10. tests/integration/ambient/cacert_rotation_test.go

    	"istio.io/istio/pkg/test/util/retry"
    	"istio.io/istio/security/pkg/pki/util"
    	"istio.io/istio/tests/integration/security/util/cert"
    )
    
    func TestIntermediateCertificateRefresh(t *testing.T) {
    	framework.NewTest(t).
    		Run(func(t framework.TestContext) {
    			t.Skip("https://github.com/istio/istio/issues/49648")
    			istioCfg := istio.DefaultConfigOrFail(t, t)
    			istioCtl := istioctl.NewOrFail(t, t, istioctl.Config{})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 03:28:36 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top