Skip to content

Commit 55d23e2

Browse files
skittk8s-publishing-bot
authored andcommitted
Align fake client-go clients with the main interface
"Real" clients use objectWithMeta to enforce support for meta.Object; strictly speaking, fakes don't need this, but it's best to align them with the real clients to ensure that fakes don't end up allowing types that can't be used with the real clients. Signed-off-by: Stephen Kitt <[email protected]> Kubernetes-commit: 736e5560ba6b21247c21f8ed12007e1d6d5fec1a
1 parent 646e79b commit 55d23e2

File tree

3 files changed

+16
-16
lines changed

3 files changed

+16
-16
lines changed

gentype/fake.go

+10-10
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ import (
3232
)
3333

3434
// FakeClient represents a fake client
35-
type FakeClient[T runtime.Object] struct {
35+
type FakeClient[T objectWithMeta] struct {
3636
*testing.Fake
3737
ns string
3838
resource schema.GroupVersionResource
@@ -41,47 +41,47 @@ type FakeClient[T runtime.Object] struct {
4141
}
4242

4343
// FakeClientWithList represents a fake client with support for lists.
44-
type FakeClientWithList[T runtime.Object, L runtime.Object] struct {
44+
type FakeClientWithList[T objectWithMeta, L runtime.Object] struct {
4545
*FakeClient[T]
4646
alsoFakeLister[T, L]
4747
}
4848

4949
// FakeClientWithApply represents a fake client with support for apply declarative configurations.
50-
type FakeClientWithApply[T runtime.Object, C namedObject] struct {
50+
type FakeClientWithApply[T objectWithMeta, C namedObject] struct {
5151
*FakeClient[T]
5252
alsoFakeApplier[T, C]
5353
}
5454

5555
// FakeClientWithListAndApply represents a fake client with support for lists and apply declarative configurations.
56-
type FakeClientWithListAndApply[T runtime.Object, L runtime.Object, C namedObject] struct {
56+
type FakeClientWithListAndApply[T objectWithMeta, L runtime.Object, C namedObject] struct {
5757
*FakeClient[T]
5858
alsoFakeLister[T, L]
5959
alsoFakeApplier[T, C]
6060
}
6161

6262
// Helper types for composition
63-
type alsoFakeLister[T runtime.Object, L runtime.Object] struct {
63+
type alsoFakeLister[T objectWithMeta, L runtime.Object] struct {
6464
client *FakeClient[T]
6565
newList func() L
6666
copyListMeta func(L, L)
6767
getItems func(L) []T
6868
setItems func(L, []T)
6969
}
7070

71-
type alsoFakeApplier[T runtime.Object, C namedObject] struct {
71+
type alsoFakeApplier[T objectWithMeta, C namedObject] struct {
7272
client *FakeClient[T]
7373
}
7474

7575
// NewFakeClient constructs a fake client, namespaced or not, with no support for lists or apply.
7676
// Non-namespaced clients are constructed by passing an empty namespace ("").
77-
func NewFakeClient[T runtime.Object](
77+
func NewFakeClient[T objectWithMeta](
7878
fake *testing.Fake, namespace string, resource schema.GroupVersionResource, kind schema.GroupVersionKind, emptyObjectCreator func() T,
7979
) *FakeClient[T] {
8080
return &FakeClient[T]{fake, namespace, resource, kind, emptyObjectCreator}
8181
}
8282

8383
// NewFakeClientWithList constructs a namespaced client with support for lists.
84-
func NewFakeClientWithList[T runtime.Object, L runtime.Object](
84+
func NewFakeClientWithList[T objectWithMeta, L runtime.Object](
8585
fake *testing.Fake, namespace string, resource schema.GroupVersionResource, kind schema.GroupVersionKind, emptyObjectCreator func() T,
8686
emptyListCreator func() L, listMetaCopier func(L, L), itemGetter func(L) []T, itemSetter func(L, []T),
8787
) *FakeClientWithList[T, L] {
@@ -93,7 +93,7 @@ func NewFakeClientWithList[T runtime.Object, L runtime.Object](
9393
}
9494

9595
// NewFakeClientWithApply constructs a namespaced client with support for apply declarative configurations.
96-
func NewFakeClientWithApply[T runtime.Object, C namedObject](
96+
func NewFakeClientWithApply[T objectWithMeta, C namedObject](
9797
fake *testing.Fake, namespace string, resource schema.GroupVersionResource, kind schema.GroupVersionKind, emptyObjectCreator func() T,
9898
) *FakeClientWithApply[T, C] {
9999
fakeClient := NewFakeClient[T](fake, namespace, resource, kind, emptyObjectCreator)
@@ -104,7 +104,7 @@ func NewFakeClientWithApply[T runtime.Object, C namedObject](
104104
}
105105

106106
// NewFakeClientWithListAndApply constructs a client with support for lists and applying declarative configurations.
107-
func NewFakeClientWithListAndApply[T runtime.Object, L runtime.Object, C namedObject](
107+
func NewFakeClientWithListAndApply[T objectWithMeta, L runtime.Object, C namedObject](
108108
fake *testing.Fake, namespace string, resource schema.GroupVersionResource, kind schema.GroupVersionKind, emptyObjectCreator func() T,
109109
emptyListCreator func() L, listMetaCopier func(L, L), itemGetter func(L) []T, itemSetter func(L, []T),
110110
) *FakeClientWithListAndApply[T, L, C] {

go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ require (
2626
golang.org/x/time v0.7.0
2727
google.golang.org/protobuf v1.35.1
2828
gopkg.in/evanphx/json-patch.v4 v4.12.0
29-
k8s.io/api v0.0.0-20241108114318-6cc44b8953ae
30-
k8s.io/apimachinery v0.0.0-20241108022104-96b97de8d6ba
29+
k8s.io/api v0.0.0-20241127162655-f8e5e36c84f1
30+
k8s.io/apimachinery v0.0.0-20240920213627-16af2ff33fbf
3131
k8s.io/klog/v2 v2.130.1
3232
k8s.io/kube-openapi v0.0.0-20241105132330-32ad38e42d3f
3333
k8s.io/utils v0.0.0-20241104100929-3ea5e8cea738

go.sum

+4-4
Original file line numberDiff line numberDiff line change
@@ -150,10 +150,10 @@ gopkg.in/inf.v0 v0.9.1/go.mod h1:cWUDdTG/fYaXco+Dcufb5Vnc6Gp2YChqWtbxRZE0mXw=
150150
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
151151
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
152152
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
153-
k8s.io/api v0.0.0-20241108114318-6cc44b8953ae h1:XX7vEVBchw0xx4YJZ6OyPxOq3e5hX2PTZ5wu8dw0vco=
154-
k8s.io/api v0.0.0-20241108114318-6cc44b8953ae/go.mod h1:jw6pQTESH9mdZL2vOK3twojvpPxipl5TpLZpPyl5ZYU=
155-
k8s.io/apimachinery v0.0.0-20241108022104-96b97de8d6ba h1:ghB5Iygt6Ge8UyIwW7C1kJx4kP7AUTCL9Qg6GCsUUOY=
156-
k8s.io/apimachinery v0.0.0-20241108022104-96b97de8d6ba/go.mod h1:HqhdaJUgQqky29T1V0o2yFkt/pZqLFIDyn9Zi/8rxoY=
153+
k8s.io/api v0.0.0-20241127162655-f8e5e36c84f1 h1:MTqd8524+MzN0Kxt42qAvh/aUYC18yz1BJUmfWADaDg=
154+
k8s.io/api v0.0.0-20241127162655-f8e5e36c84f1/go.mod h1:qs155+gTdM43TXy/cV8a8yOjDeNR8kGJc82AraJrh/c=
155+
k8s.io/apimachinery v0.0.0-20240920213627-16af2ff33fbf h1:ZRwu8YHh3bFbQU4NRvHB6fiovWLBouxY86wIcLd7sBA=
156+
k8s.io/apimachinery v0.0.0-20240920213627-16af2ff33fbf/go.mod h1:HqhdaJUgQqky29T1V0o2yFkt/pZqLFIDyn9Zi/8rxoY=
157157
k8s.io/klog/v2 v2.130.1 h1:n9Xl7H1Xvksem4KFG4PYbdQCQxqc/tTUyrgXaOhHSzk=
158158
k8s.io/klog/v2 v2.130.1/go.mod h1:3Jpz1GvMt720eyJH1ckRHK1EDfpxISzJ7I9OYgaDtPE=
159159
k8s.io/kube-openapi v0.0.0-20241105132330-32ad38e42d3f h1:GA7//TjRY9yWGy1poLzYYJJ4JRdzg3+O6e8I+e+8T5Y=

0 commit comments

Comments
 (0)