Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 135 for NewTest (0.35 sec)

  1. tests/integration/security/authz_test.go

    	"istio.io/istio/pkg/test/framework/components/namespace"
    	"istio.io/istio/pkg/test/framework/label"
    	"istio.io/istio/tests/common/jwt"
    )
    
    func TestAuthz_Principal(t *testing.T) {
    	framework.NewTest(t).
    		Run(func(t framework.TestContext) {
    			allowed := apps.Ns1.A
    			denied := apps.Ns2.A
    
    			from := allowed.Append(denied)
    			fromMatch := match.AnyServiceName(from.NamespacedNames())
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  2. 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)
  3. tests/integration/ambient/waypoint_test.go

    	kubetest "istio.io/istio/pkg/test/kube"
    	"istio.io/istio/pkg/test/scopes"
    	"istio.io/istio/pkg/test/util/retry"
    )
    
    func TestWaypointStatus(t *testing.T) {
    	framework.
    		NewTest(t).
    		Run(func(t framework.TestContext) {
    			client := t.Clusters().Default().GatewayAPI().GatewayV1beta1().GatewayClasses()
    
    			check := func() error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  4. tests/integration/security/sds_ingress/ingress_test.go

    // (4) verify that client using the newer CA cert is able to establish TLS connection
    // to deliver the HTTPS request.
    func TestSingleTlsGateway_SecretRotation(t *testing.T) {
    	framework.
    		NewTest(t).
    		Run(func(t framework.TestContext) {
    			var (
    				credName = "testsingletlsgateway-secretrotation"
    				host     = "testsingletlsgateway-secretrotation.example.com"
    			)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. tests/integration/telemetry/api/wasmplugin_test.go

    			t.Fatal(err)
    		}
    		sendTraffic(t, check.ResponseHeader(injectedHeader, ""), retry.Converge(2))
    	})
    }
    
    func TestImagePullPolicy(t *testing.T) {
    	framework.NewTest(t).
    		Run(func(t framework.TestContext) {
    			tag := names.SimpleNameGenerator.GenerateName("test-tag-")
    			applyAndTestWasmWithOCI(t, wasmTestConfigs{
    				desc:            "initial creation with 0.0.1",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  8. 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)
  9. tests/integration/pilot/analysis/analysis_test.go

    	"istio.io/istio/pkg/test/framework/components/namespace"
    	"istio.io/istio/pkg/test/framework/label"
    	"istio.io/istio/pkg/test/util/retry"
    )
    
    func TestWait(t *testing.T) {
    	// nolint: staticcheck
    	framework.NewTest(t).
    		RequiresSingleCluster().
    		RequiresLocalControlPlane().
    		Run(func(t framework.TestContext) {
    			ns := namespace.NewOrFail(t, t, namespace.Config{
    				Prefix: "default",
    				Inject: true,
    			})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  10. tests/integration/operator/verify_test.go

    import (
    	"strings"
    	"testing"
    
    	"istio.io/istio/pkg/test/framework"
    	"istio.io/istio/pkg/test/framework/components/istioctl"
    )
    
    func TestPostInstallControlPlaneVerification(t *testing.T) {
    	framework.
    		NewTest(t).
    		Run(func(t framework.TestContext) {
    			istioCtl := istioctl.NewOrFail(t, t, istioctl.Config{})
    			cs := t.Environment().Clusters().Default()
    			cleanupInClusterCRs(t, cs)
    			t.Cleanup(func() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top