Skip to content

Commit 8f9abfd

Browse files
committed
[client-go] avoid Registry in fake REST client
Previously, the fake RESTClient in client-go required a Registry. It used the Registry to fetch the GroupVersion for the fake client. However, the way it did so was dubious in some cases (it hard-coded the default API group in places), and not strictly necssary. This updates the fake client to just recieve the GroupVersion and internal group name directly, instead of requiring a Registry, so that it can be consumed in unit tests where a Registry isn't necessarily readily available (e.g. elsewhere in client-go).
1 parent a238fbd commit 8f9abfd

File tree

1 file changed

+7
-10
lines changed
  • staging/src/k8s.io/client-go/rest/fake

1 file changed

+7
-10
lines changed

staging/src/k8s.io/client-go/rest/fake/fake.go

+7-10
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ import (
2222
"net/http"
2323
"net/url"
2424

25-
"k8s.io/apimachinery/pkg/apimachinery/registered"
2625
"k8s.io/apimachinery/pkg/runtime"
2726
"k8s.io/apimachinery/pkg/runtime/schema"
2827
"k8s.io/apimachinery/pkg/types"
@@ -46,8 +45,8 @@ func (f roundTripperFunc) RoundTrip(req *http.Request) (*http.Response, error) {
4645
type RESTClient struct {
4746
Client *http.Client
4847
NegotiatedSerializer runtime.NegotiatedSerializer
49-
GroupName string
50-
APIRegistry *registered.APIRegistrationManager
48+
GroupVersion schema.GroupVersion
49+
InternalGroupName string
5150
VersionedAPIPath string
5251

5352
Req *http.Request
@@ -80,7 +79,7 @@ func (c *RESTClient) Verb(verb string) *restclient.Request {
8079
}
8180

8281
func (c *RESTClient) APIVersion() schema.GroupVersion {
83-
return c.APIRegistry.GroupOrDie("").GroupVersion
82+
return c.GroupVersion
8483
}
8584

8685
func (c *RESTClient) GetRateLimiter() flowcontrol.RateLimiter {
@@ -89,22 +88,20 @@ func (c *RESTClient) GetRateLimiter() flowcontrol.RateLimiter {
8988

9089
func (c *RESTClient) request(verb string) *restclient.Request {
9190
config := restclient.ContentConfig{
92-
ContentType: runtime.ContentTypeJSON,
93-
// TODO this was hardcoded before, but it doesn't look right
94-
GroupVersion: &c.APIRegistry.GroupOrDie("").GroupVersion,
91+
ContentType: runtime.ContentTypeJSON,
92+
GroupVersion: &c.GroupVersion,
9593
NegotiatedSerializer: c.NegotiatedSerializer,
9694
}
9795

9896
ns := c.NegotiatedSerializer
9997
info, _ := runtime.SerializerInfoForMediaType(ns.SupportedMediaTypes(), runtime.ContentTypeJSON)
10098
internalVersion := schema.GroupVersion{
101-
Group: c.APIRegistry.GroupOrDie(c.GroupName).GroupVersion.Group,
99+
Group: c.InternalGroupName,
102100
Version: runtime.APIVersionInternal,
103101
}
104-
internalVersion.Version = runtime.APIVersionInternal
105102
serializers := restclient.Serializers{
106103
// TODO this was hardcoded before, but it doesn't look right
107-
Encoder: ns.EncoderForVersion(info.Serializer, c.APIRegistry.GroupOrDie("").GroupVersion),
104+
Encoder: ns.EncoderForVersion(info.Serializer, c.GroupVersion),
108105
Decoder: ns.DecoderToVersion(info.Serializer, internalVersion),
109106
}
110107
if info.StreamSerializer != nil {

0 commit comments

Comments
 (0)