Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewTestScheme ¶ added in v0.24.0
NewTestScheme creates a unique Scheme for each test.
Types ¶
type FakeMetadataClient ¶
FakeMetadataClient implements clientset.Interface. Meant to be embedded into a struct to get a default implementation. This makes faking out just the method you want to test easier.
func NewSimpleMetadataClient ¶
func NewSimpleMetadataClient(scheme *runtime.Scheme, objects ...runtime.Object) *FakeMetadataClient
NewSimpleMetadataClient creates a new client that will use the provided scheme and respond with the provided objects when requests are made. It will track actions made to the client which can be checked with GetActions().
func (*FakeMetadataClient) Resource ¶
func (c *FakeMetadataClient) Resource(resource schema.GroupVersionResource) metadata.Getter
Resource returns an interface for accessing the provided resource.
func (*FakeMetadataClient) Tracker ¶ added in v0.24.0
func (c *FakeMetadataClient) Tracker() testing.ObjectTracker
type MetadataClient ¶
type MetadataClient interface { metadata.Getter CreateFake(obj *metav1.PartialObjectMetadata, opts metav1.CreateOptions, subresources ...string) (*metav1.PartialObjectMetadata, error) UpdateFake(obj *metav1.PartialObjectMetadata, opts metav1.UpdateOptions, subresources ...string) (*metav1.PartialObjectMetadata, error) }
MetadataClient assists in creating fake objects for use when testing, since metadata.Getter does not expose create
Click to show internal directories.
Click to hide internal directories.