Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 309 for NewTest (0.17 sec)

  1. tests/integration/pilot/mirror_test.go

    				threshold:           0.0,
    				expectedDestination: apps.External.All,
    			},
    		},
    	})
    }
    
    func runMirrorTest(t *testing.T, options mirrorTestOptions) {
    	framework.
    		NewTest(t).
    		Run(func(t framework.TestContext) {
    			for _, c := range options.cases {
    				t.NewSubTest(c.name).Run(func(t framework.TestContext) {
    					mirrorHost := options.mirrorHost
    					if len(mirrorHost) == 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. platforms/software/testing-base/src/testFixtures/groovy/org/gradle/testing/AbstractTestFrameworkIntegrationTest.groovy

            given:
            createPassingFailingTest()
            fails("check")
            when:
            renameTests()
            fails("check")
            then:
            testResult.assertTestClassesExecuted('SomeTest', 'NewTest')
        }
    
        @ToBeFixedForConfigurationCache(bottomSpecs = "XCTestTestFrameworkIntegrationTest")
        def "honors test case filter from --tests flag"() {
            given:
            createPassingFailingTest()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  3. tests/integration/security/cacert_rotation/main_test.go

      meshConfig:
        defaultConfig:
          proxyMetadata:
            PROXY_CONFIG_XDS_AGENT: "true"
    `
    	cfg.ControlPlaneValues = cfgYaml
    }
    
    func TestReachability(t *testing.T) {
    	framework.NewTest(t).
    		Run(func(t framework.TestContext) {
    			istioCfg := istio.DefaultConfigOrFail(t, t)
    			istioCtl := istioctl.NewOrFail(t, t, istioctl.Config{})
    			namespace.ClaimOrFail(t, t, istioCfg.SystemNamespace)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  4. tests/integration/security/ca_custom_root/secure_naming_test.go

    //
    //	is used for data plane to control plane TLS authentication.
    //
    // - Secure naming information is respected in the mTLS handshake.
    func TestSecureNaming(t *testing.T) {
    	framework.NewTest(t).
    		Run(func(t framework.TestContext) {
    			istioCfg := istio.DefaultConfigOrFail(t, t)
    
    			testNamespace := apps.EchoNamespace.Namespace
    			namespace.ClaimOrFail(t, t, istioCfg.SystemNamespace)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  5. tests/integration/pilot/ingress_test.go

    		t.Skip("IngressClass not supported")
    	}
    }
    
    // TestIngress tests that we can route using standard Kubernetes Ingress objects.
    func TestIngress(t *testing.T) {
    	framework.
    		NewTest(t).
    		Run(func(t framework.TestContext) {
    			skipIfIngressClassUnsupported(t)
    			// Set up secret contain some TLS certs for *.example.com
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  6. tests/integration/operator/uninstall_test.go

    	"istio.io/istio/pkg/test/scopes"
    	"istio.io/istio/pkg/test/util/retry"
    )
    
    const deletionTimeout = 5 * time.Minute
    
    func TestReconcileDelete(t *testing.T) {
    	framework.
    		NewTest(t).
    		Run(func(t framework.TestContext) {
    			// For positive casse, use minimal profile, iop file will be deleted
    			t.NewSubTest("delete-iop-success").Run(func(t framework.TestContext) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  7. tests/integration/security/egress_sidecar_tls_origination_test.go

    // It uses CredentialName set in DestinationRule API to fetch secrets from k8s API server.
    func TestSidecarMutualTlsOrigination(t *testing.T) {
    	// nolint: staticcheck
    	framework.NewTest(t).
    		Run(func(t framework.TestContext) {
    			var (
    				credNameGeneric  = "mtls-credential-generic"
    				fakeCredName     = "fake-mtls-credential"
    				credWithCRL      = "mtls-credential-generic-valid-crl"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  8. tests/integration/security/pass_through_filter_chain_test.go

    	"istio.io/istio/pkg/test/framework/components/echo/match"
    )
    
    // TestPassThroughFilterChain tests the authN and authZ policy on the pass through filter chain.
    func TestPassThroughFilterChain(t *testing.T) {
    	framework.
    		NewTest(t).
    		Run(func(t framework.TestContext) {
    			type expect struct {
    				port echo.Port
    				// Plaintext will be sent from Naked pods.
    				plaintextSucceeds bool
    				// MTLS will be sent from all pods other than Naked.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  9. tests/integration/pilot/tunneling_test.go

    	},
    	{
    		configDir: "gateway/tls/istio-mutual",
    	},
    	{
    		configDir: "gateway/tls/passthrough",
    	},
    }
    
    func TestTunnelingOutboundTraffic(t *testing.T) {
    	framework.
    		NewTest(t).
    		RequireIstioVersion("1.15.0").
    		Run(func(ctx framework.TestContext) {
    			meshNs := apps.A.NamespaceName()
    			externalNs := apps.External.Namespace.Name()
    
    			applyForwardProxyConfigMaps(ctx, externalNs)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  10. tests/integration/telemetry/api/dashboard_test.go

    			"container_cpu_usage_seconds_total",
    		},
    		false,
    	},
    	*/
    }
    
    func TestDashboard(t *testing.T) {
    	c, cancel := context.WithCancel(context.Background())
    	defer cancel()
    	framework.NewTest(t).
    		Run(func(t framework.TestContext) {
    			p := promInst
    
    			t.ConfigIstio().YAML(apps.Namespace.Name(), fmt.Sprintf(gatewayConfig, apps.Namespace.Name())).
    				ApplyOrFail(t)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 11.4K bytes
    - Viewed (0)
Back to top