Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for sendEDSReqAndVerify (1.29 sec)

  1. pilot/pkg/xds/delta_test.go

    		if !reflect.DeepEqual(expect, got) {
    			t.Fatalf("expected clusters %v got %v", expect, got)
    		}
    	}
    
    	sendEDSReqAndVerify([]string{"outbound|80||local.default.svc.cluster.local"}, nil, []string{"outbound|80||local.default.svc.cluster.local"})
    	// Only send the one that is requested
    	sendEDSReqAndVerify([]string{"outbound|81||local.default.svc.cluster.local"}, nil, []string{"outbound|81||local.default.svc.cluster.local"})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  2. pilot/pkg/xds/ads_test.go

    			t.Fatalf("expected cluster %v got %v", clusterName, got[0])
    		}
    	}
    
    	cluster1 := "outbound|80||local.default.svc.cluster.local"
    	sendEDSReqAndVerify(cluster1)
    	cluster2 := "outbound|80||hello.default.svc.cluster.local"
    	sendEDSReqAndVerify(cluster2)
    }
    
    // nolint: lll
    func TestAdsPushScoping(t *testing.T) {
    	s := xdsfake.NewFakeDiscoveryServer(t, xdsfake.FakeOptions{})
    
    	const (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 30 17:25:17 UTC 2024
    - 30.3K bytes
    - Viewed (0)
Back to top