Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for expectedHosts (0.44 sec)

  1. pilot/pkg/networking/core/httproute_test.go

    	if expectedRoutes == 0 {
    		expectedRoutes = len(expectedHosts)
    	}
    	numberOfRoutes := 0
    	for _, vhost := range routeCfg.VirtualHosts {
    		numberOfRoutes += len(vhost.Routes)
    		if _, found := expectedHosts[vhost.Name]; !found {
    			t.Fatalf("unexpected vhost block %s for route %s",
    				vhost.Name, routeName)
    		}
    
    		for _, domain := range vhost.Domains {
    			if !expectedHosts[vhost.Name][domain] {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  2. okhttp-testing-support/src/main/kotlin/okhttp3/FakeDns.kt

        requestedHosts.add(hostname)
        return hostAddresses[hostname] ?: throw UnknownHostException()
      }
    
      fun assertRequests(vararg expectedHosts: String?) {
        assertThat(requestedHosts).containsExactly(*expectedHosts)
        requestedHosts.clear()
      }
    
      /** Allocates and returns `count` fake IPv4 addresses like [255.0.0.100, 255.0.0.101].  */
      fun allocate(count: Int): List<InetAddress> {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/serviceimportcache_test.go

    			return fmt.Errorf("failed looking up service for host %s", clusterLocalHost)
    		}
    
    		var expectedHosts map[host.Name]struct{}
    		if isImported {
    			expectedHosts = map[host.Name]struct{}{
    				clusterLocalHost:            {},
    				serviceImportClusterSetHost: {},
    			}
    		} else {
    			expectedHosts = map[host.Name]struct{}{
    				clusterLocalHost: {},
    			}
    		}
    
    		instances := ic.getProxyServiceTargets()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 14 18:50:38 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  4. pilot/pkg/model/gateway_test.go

    	mgw := MergeGateways(instances, &Proxy{}, nil)
    	hosts := mgw.GetAutoPassthrughGatewaySNIHosts()
    	expectedHosts := sets.Set[string]{}
    	expectedHosts.InsertAll("a.apps.svc.cluster.local", "b.apps.svc.cluster.local")
    	if !hosts.Equals(expectedHosts) {
    		t.Errorf("expected to get: [a.apps.svc.cluster.local,b.apps.svc.cluster.local], got: %s", hosts.String())
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 02:36:23 UTC 2024
    - 9K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/util/endpoint_test.go

    		name          string
    		hostport      string
    		expectedHost  string
    		expectedPort  string
    		expectedError bool
    	}{
    		{
    			name:         "valid dns",
    			hostport:     "cp.k8s.io",
    			expectedHost: "cp.k8s.io",
    			expectedPort: "",
    		},
    		{
    			name:         "valid dns:port",
    			hostport:     "cp.k8s.io:1234",
    			expectedHost: "cp.k8s.io",
    			expectedPort: "1234",
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 23 03:19:26 UTC 2019
    - 10K bytes
    - Viewed (0)
  6. cmd/net_test.go

    	testCases := []struct {
    		hostPort     string
    		expectedHost string
    		expectedPort string
    	}{
    		{":54321", "", "54321"},
    		{"server:54321", "server", "54321"},
    		{":0", "", "0"},
    		{"server:https", "server", "443"},
    		{"server:http", "server", "80"},
    	}
    
    	for _, testCase := range testCases {
    		host, port := mustSplitHostPort(testCase.hostPort)
    		if testCase.expectedHost != host {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 19 08:43:09 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  7. cmd/signature-v4-utils_test.go

    	extractedExpect := extractedSignedHeaders.Get("expect")
    
    	extractedTransferEncoding := extractedSignedHeaders.Get("transfer-encoding")
    
    	if expectedHost != extractedHost {
    		t.Errorf("host header mismatch: expected `%s`, got `%s`", expectedHost, extractedHost)
    	}
    	// assert the result with the expected value.
    	if expectedContentSha256 != extractedContentSha256 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 05 21:26:41 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    // and checks that the resulting equals the expectedCost if expectedCost is non-zero, and that the resulting cost is >= expectedCostExceedsLimit
    // if expectedCostExceedsLimit is non-zero. Typically, only expectedCost or expectedCostExceedsLimit is non-zero, not both.
    func schemaChecker(schema *schema.Structural, expectedCost uint64, expectedCostExceedsLimit uint64, t *testing.T) func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/proxy/upgradeaware_test.go

    	tests := []struct {
    		name,
    		url,
    		location,
    		expectedScheme,
    		expectedHost,
    		expectedPathPrepend string
    	}{
    		{
    			name:                "simple path",
    			url:                 "http://test.server:8080/a/test/location",
    			location:            "http://localhost/location",
    			expectedScheme:      "http",
    			expectedHost:        "test.server:8080",
    			expectedPathPrepend: "/a/test",
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 10 07:29:34 UTC 2023
    - 39.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/celcoststability_test.go

    			},
    		},
    	}
    
    	for _, tt := range cases {
    		tt := tt
    		t.Run(tt.name, func(t *testing.T) {
    			t.Parallel()
    			for validRule, expectedCost := range tt.expectCost {
    				validRule := validRule
    				expectedCost := expectedCost
    				testName := validRule
    				if len(testName) > 127 {
    					testName = testName[:127]
    				}
    				t.Run(testName, func(t *testing.T) {
    					t.Parallel()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:20:16 UTC 2024
    - 80.2K bytes
    - Viewed (0)
Back to top