// Copyright 2020 the Pinniped contributors. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 // Code generated by client-gen. DO NOT EDIT. package fake import ( clientset "github.com/vmware-tanzu/pinniped/generated/1.18/client/clientset/versioned" crdv1alpha1 "github.com/vmware-tanzu/pinniped/generated/1.18/client/clientset/versioned/typed/crdpinniped/v1alpha1" fakecrdv1alpha1 "github.com/vmware-tanzu/pinniped/generated/1.18/client/clientset/versioned/typed/crdpinniped/v1alpha1/fake" idpv1alpha1 "github.com/vmware-tanzu/pinniped/generated/1.18/client/clientset/versioned/typed/idp/v1alpha1" fakeidpv1alpha1 "github.com/vmware-tanzu/pinniped/generated/1.18/client/clientset/versioned/typed/idp/v1alpha1/fake" loginv1alpha1 "github.com/vmware-tanzu/pinniped/generated/1.18/client/clientset/versioned/typed/login/v1alpha1" fakeloginv1alpha1 "github.com/vmware-tanzu/pinniped/generated/1.18/client/clientset/versioned/typed/login/v1alpha1/fake" pinnipedv1alpha1 "github.com/vmware-tanzu/pinniped/generated/1.18/client/clientset/versioned/typed/pinniped/v1alpha1" fakepinnipedv1alpha1 "github.com/vmware-tanzu/pinniped/generated/1.18/client/clientset/versioned/typed/pinniped/v1alpha1/fake" "k8s.io/apimachinery/pkg/runtime" "k8s.io/apimachinery/pkg/watch" "k8s.io/client-go/discovery" fakediscovery "k8s.io/client-go/discovery/fake" "k8s.io/client-go/testing" ) // NewSimpleClientset returns a clientset that will respond with the provided objects. // It's backed by a very simple object tracker that processes creates, updates and deletions as-is, // without applying any validations and/or defaults. It shouldn't be considered a replacement // for a real clientset and is mostly useful in simple unit tests. func NewSimpleClientset(objects ...runtime.Object) *Clientset { o := testing.NewObjectTracker(scheme, codecs.UniversalDecoder()) for _, obj := range objects { if err := o.Add(obj); err != nil { panic(err) } } cs := &Clientset{tracker: o} cs.discovery = &fakediscovery.FakeDiscovery{Fake: &cs.Fake} cs.AddReactor("*", "*", testing.ObjectReaction(o)) cs.AddWatchReactor("*", func(action testing.Action) (handled bool, ret watch.Interface, err error) { gvr := action.GetResource() ns := action.GetNamespace() watch, err := o.Watch(gvr, ns) if err != nil { return false, nil, err } return true, watch, nil }) return cs } // Clientset 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. type Clientset struct { testing.Fake discovery *fakediscovery.FakeDiscovery tracker testing.ObjectTracker } func (c *Clientset) Discovery() discovery.DiscoveryInterface { return c.discovery } func (c *Clientset) Tracker() testing.ObjectTracker { return c.tracker } var _ clientset.Interface = &Clientset{} // CrdV1alpha1 retrieves the CrdV1alpha1Client func (c *Clientset) CrdV1alpha1() crdv1alpha1.CrdV1alpha1Interface { return &fakecrdv1alpha1.FakeCrdV1alpha1{Fake: &c.Fake} } // IDPV1alpha1 retrieves the IDPV1alpha1Client func (c *Clientset) IDPV1alpha1() idpv1alpha1.IDPV1alpha1Interface { return &fakeidpv1alpha1.FakeIDPV1alpha1{Fake: &c.Fake} } // LoginV1alpha1 retrieves the LoginV1alpha1Client func (c *Clientset) LoginV1alpha1() loginv1alpha1.LoginV1alpha1Interface { return &fakeloginv1alpha1.FakeLoginV1alpha1{Fake: &c.Fake} } // PinnipedV1alpha1 retrieves the PinnipedV1alpha1Client func (c *Clientset) PinnipedV1alpha1() pinnipedv1alpha1.PinnipedV1alpha1Interface { return &fakepinnipedv1alpha1.FakePinnipedV1alpha1{Fake: &c.Fake} }