@@ -32,7 +32,7 @@ import (
32
32
)
33
33
34
34
// FakeClient represents a fake client
35
- type FakeClient [T runtime. Object ] struct {
35
+ type FakeClient [T objectWithMeta ] struct {
36
36
* testing.Fake
37
37
ns string
38
38
resource schema.GroupVersionResource
@@ -41,47 +41,47 @@ type FakeClient[T runtime.Object] struct {
41
41
}
42
42
43
43
// 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 {
45
45
* FakeClient [T ]
46
46
alsoFakeLister [T , L ]
47
47
}
48
48
49
49
// 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 {
51
51
* FakeClient [T ]
52
52
alsoFakeApplier [T , C ]
53
53
}
54
54
55
55
// 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 {
57
57
* FakeClient [T ]
58
58
alsoFakeLister [T , L ]
59
59
alsoFakeApplier [T , C ]
60
60
}
61
61
62
62
// Helper types for composition
63
- type alsoFakeLister [T runtime. Object , L runtime.Object ] struct {
63
+ type alsoFakeLister [T objectWithMeta , L runtime.Object ] struct {
64
64
client * FakeClient [T ]
65
65
newList func () L
66
66
copyListMeta func (L , L )
67
67
getItems func (L ) []T
68
68
setItems func (L , []T )
69
69
}
70
70
71
- type alsoFakeApplier [T runtime. Object , C namedObject ] struct {
71
+ type alsoFakeApplier [T objectWithMeta , C namedObject ] struct {
72
72
client * FakeClient [T ]
73
73
}
74
74
75
75
// NewFakeClient constructs a fake client, namespaced or not, with no support for lists or apply.
76
76
// Non-namespaced clients are constructed by passing an empty namespace ("").
77
- func NewFakeClient [T runtime. Object ](
77
+ func NewFakeClient [T objectWithMeta ](
78
78
fake * testing.Fake , namespace string , resource schema.GroupVersionResource , kind schema.GroupVersionKind , emptyObjectCreator func () T ,
79
79
) * FakeClient [T ] {
80
80
return & FakeClient [T ]{fake , namespace , resource , kind , emptyObjectCreator }
81
81
}
82
82
83
83
// 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 ](
85
85
fake * testing.Fake , namespace string , resource schema.GroupVersionResource , kind schema.GroupVersionKind , emptyObjectCreator func () T ,
86
86
emptyListCreator func () L , listMetaCopier func (L , L ), itemGetter func (L ) []T , itemSetter func (L , []T ),
87
87
) * FakeClientWithList [T , L ] {
@@ -93,7 +93,7 @@ func NewFakeClientWithList[T runtime.Object, L runtime.Object](
93
93
}
94
94
95
95
// 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 ](
97
97
fake * testing.Fake , namespace string , resource schema.GroupVersionResource , kind schema.GroupVersionKind , emptyObjectCreator func () T ,
98
98
) * FakeClientWithApply [T , C ] {
99
99
fakeClient := NewFakeClient [T ](fake , namespace , resource , kind , emptyObjectCreator )
@@ -104,7 +104,7 @@ func NewFakeClientWithApply[T runtime.Object, C namedObject](
104
104
}
105
105
106
106
// 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 ](
108
108
fake * testing.Fake , namespace string , resource schema.GroupVersionResource , kind schema.GroupVersionKind , emptyObjectCreator func () T ,
109
109
emptyListCreator func () L , listMetaCopier func (L , L ), itemGetter func (L ) []T , itemSetter func (L , []T ),
110
110
) * FakeClientWithListAndApply [T , L , C ] {
0 commit comments