Documentation ¶
Overview ¶
Package fake provides a fake client for testing.
A fake client is backed by its simple object store indexed by GroupVersionResource. You can create a fake client with optional objects.
client := NewFakeClientWithScheme(scheme, initObjs...) // initObjs is a slice of runtime.Object
You can invoke the methods defined in the Client interface.
When in doubt, it's almost always better not to use this package and instead use envtest.Environment with a real client and API server.
WARNING: ⚠️ Current Limitations / Known Issues with the fake Client ⚠️
- This client does not have a way to inject specific errors to test handled vs. unhandled errors.
- There is some support for sub resources which can cause issues with tests if you're trying to update e.g. metadata and status in the same reconcile.
- No OpeanAPI validation is performed when creating or updating objects.
- ObjectMeta's `Generation` and `ResourceVersion` don't behave properly, Patch or Update
operations that rely on these fields will fail, or give false positives.
Index ¶
- func NewFakeClient(initObjs ...runtime.Object) client.WithWatchdeprecated
- func NewFakeClientWithScheme(clientScheme *runtime.Scheme, initObjs ...runtime.Object) client.WithWatchdeprecated
- type ClientBuilder
- func (f *ClientBuilder) Build() client.WithWatch
- func (f *ClientBuilder) WithLists(initLists ...client.ObjectList) *ClientBuilder
- func (f *ClientBuilder) WithObjects(initObjs ...client.Object) *ClientBuilder
- func (f *ClientBuilder) WithRESTMapper(restMapper meta.RESTMapper) *ClientBuilder
- func (f *ClientBuilder) WithRuntimeObjects(initRuntimeObjs ...runtime.Object) *ClientBuilder
- func (f *ClientBuilder) WithScheme(scheme *runtime.Scheme) *ClientBuilder
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewFakeClient
deprecated
func NewFakeClientWithScheme
deprecated
added in
v0.1.8
func NewFakeClientWithScheme(clientScheme *runtime.Scheme, initObjs ...runtime.Object) client.WithWatch
NewFakeClientWithScheme creates a new fake client with the given scheme for testing. You can choose to initialize it with a slice of runtime.Object.
Deprecated: Please use NewClientBuilder instead.
Types ¶
type ClientBuilder ¶ added in v0.7.0
type ClientBuilder struct {
// contains filtered or unexported fields
}
ClientBuilder builds a fake client.
func NewClientBuilder ¶ added in v0.7.0
func NewClientBuilder() *ClientBuilder
NewClientBuilder returns a new builder to create a fake client.
func (*ClientBuilder) Build ¶ added in v0.7.0
func (f *ClientBuilder) Build() client.WithWatch
Build builds and returns a new fake client.
func (*ClientBuilder) WithLists ¶ added in v0.7.0
func (f *ClientBuilder) WithLists(initLists ...client.ObjectList) *ClientBuilder
WithLists can be optionally used to initialize this fake client with client.ObjectList(s).
func (*ClientBuilder) WithObjects ¶ added in v0.7.0
func (f *ClientBuilder) WithObjects(initObjs ...client.Object) *ClientBuilder
WithObjects can be optionally used to initialize this fake client with client.Object(s).
func (*ClientBuilder) WithRESTMapper ¶ added in v0.10.3
func (f *ClientBuilder) WithRESTMapper(restMapper meta.RESTMapper) *ClientBuilder
WithRESTMapper sets this builder's restMapper. The restMapper is directly set as mapper in the Client. This can be used for example with a meta.DefaultRESTMapper to provide a static rest mapping. If not set, defaults to an empty meta.DefaultRESTMapper.
func (*ClientBuilder) WithRuntimeObjects ¶ added in v0.7.0
func (f *ClientBuilder) WithRuntimeObjects(initRuntimeObjs ...runtime.Object) *ClientBuilder
WithRuntimeObjects can be optionally used to initialize this fake client with runtime.Object(s).
func (*ClientBuilder) WithScheme ¶ added in v0.7.0
func (f *ClientBuilder) WithScheme(scheme *runtime.Scheme) *ClientBuilder
WithScheme sets this builder's internal scheme. If not set, defaults to client-go's global scheme.Scheme.