Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 47 for svctest (0.23 sec)

  1. src/crypto/tls/handshake_server_test.go

    // "snitest.com", which happens to match the CN of testSNICertificate. The test
    // verifies that the server correctly selects that certificate.
    func TestHandshakeServerSNI(t *testing.T) {
    	test := &serverTest{
    		name:    "SNI",
    		command: []string{"openssl", "s_client", "-no_ticket", "-cipher", "AES128-SHA", "-servername", "snitest.com"},
    	}
    	runServerTestTLS12(t, test)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  2. src/net/netip/netip_test.go

    	}
    }
    
    func TestPrefixMasking(t *testing.T) {
    	type subtest struct {
    		ip   Addr
    		bits uint8
    		p    Prefix
    		ok   bool
    	}
    
    	// makeIPv6 produces a set of IPv6 subtests with an optional zone identifier.
    	makeIPv6 := func(zone string) []subtest {
    		if zone != "" {
    			zone = "%" + zone
    		}
    
    		return []subtest{
    			{
    				ip:   mustIP(fmt.Sprintf("2001:db8::1%s", zone)),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  3. tests/integration/pilot/gw_topology_test.go

    				_, err := kubetest.CheckPodsAreReady(kubetest.NewPodFetch(cs, gatewayNs.Name(), "istio=ingressgateway"))
    				return err
    			}, retry.Timeout(time.Minute*2), retry.Delay(time.Second))
    
    			// Apply an envoy filter in a subtest to the existing gateway
    			t.NewSubTest("filter").Run(func(t framework.TestContext) {
    				for _, tt := range common.ProxyProtocolFilterAppliedGatewayCase(&apps, fmt.Sprintf("custom-gateway.%s.svc.cluster.local", gatewayNs.Name())) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 8K bytes
    - Viewed (0)
  4. src/testing/testing.go

    			// called tb.Helper from inside that test function).
    			// If this is a top-level test, only skip up to the test function itself.
    			// If we're in a subtest, continue searching in the parent test,
    			// starting from the point of the call to Run which created this subtest.
    			if c.level > 1 {
    				frames = runtime.CallersFrames(c.creator)
    				parent := c.parent
    				// We're no longer looking at the current c after this point,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  5. istioctl/pkg/describe/describe.go

    	svcHost := extendFQDN(fmt.Sprintf("%s.%s", svc.ObjectMeta.Name, svc.ObjectMeta.Namespace))
    	facts := []string{}
    	mismatchNotes := []string{}
    	match := false
    	for _, dest := range route.Route {
    		fqdn := string(model.ResolveShortnameToFQDN(dest.Destination.Host, config.Meta{Namespace: vs.Namespace}))
    		if extendFQDN(fqdn) == svcHost {
    			if dest.Destination.Subset != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  6. tests/integration/pilot/proxyconfig/proxyconfig_test.go

    				Inject: true,
    			})
    			cases := []struct {
    				name string
    				// namespace, labels, and annotations for the echo instance
    				pcAnnotation string
    				// service, echo service to use for this subtest
    				service string
    				// proxyconfig resources to apply
    				configs []proxyConfigInstance
    				// expected environment variables post-injection
    				expected map[string]string
    			}{
    				{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  7. pkg/test/framework/test.go

    	}
    
    	if t.s.skipped {
    		t.goTest.Skip("Skipped because parent Suite was skipped.")
    		return
    	}
    
    	if t.parent != nil {
    		// Create a new subtest under the parent's test.
    		parentGoTest := t.parent.goTest
    		parentCtx := t.parent.ctx
    		parentGoTest.Run(t.name, func(goTest *testing.T) {
    			t.goTest = goTest
    			t.doRun(parentCtx.newChildContext(t), fn, parallel)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  8. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/filter/TestSelectionMatcherTest.groovy

            ["FooTest.*slow*"]       | "FooTest"                 | "slowUiTest"          | true
            ["FooTest.*slow*"]       | "FooTest"                 | "veryslowtest"        | true
            ["FooTest.*slow*"]       | "FooTest.SubTest"         | "slow"                | false
            ["FooTest.*slow*"]       | "FooTest"                 | "a slow test"         | true
            ["FooTest.*slow*"]       | "FooTest"                 | "aslow"               | true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  9. pilot/pkg/model/sidecar_test.go

    	// service
    	svcList := make([]*Service, 0, vsNum)
    	for i := 0; i < vsNum; i++ {
    		svcList = append(svcList, &Service{
    			Attributes: ServiceAttributes{Namespace: "default"},
    			Hostname:   host.Name("host-" + strconv.Itoa(i) + ".com"),
    		})
    	}
    	ps.ServiceIndex.public = svcList
    
    	hosts := make([]string, 0)
    	if matchAll {
    		// default/*
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/dra/manager_test.go

    			assert.Equal(t, test.ExpectedPrepareCalls, draServerInfo.server.prepareResourceCalls.Load())
    
    			if test.wantErr {
    				assert.Error(t, err)
    				return // PrepareResources returned an error so stopping the subtest here
    			} else if test.wantResourceSkipped {
    				assert.NoError(t, err)
    				return // resource skipped so no need to continue
    			}
    
    			assert.NoError(t, err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:30:29 UTC 2024
    - 42K bytes
    - Viewed (0)
Back to top