89 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			Go
		
	
	
	
			
		
		
	
	
			89 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			Go
		
	
	
	
| /*
 | |
| Copyright 2019 Compose, Zalando SE
 | |
| 
 | |
| Permission is hereby granted, free of charge, to any person obtaining a copy
 | |
| of this software and associated documentation files (the "Software"), to deal
 | |
| in the Software without restriction, including without limitation the rights
 | |
| to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 | |
| copies of the Software, and to permit persons to whom the Software is
 | |
| furnished to do so, subject to the following conditions:
 | |
| 
 | |
| The above copyright notice and this permission notice shall be included in all
 | |
| copies or substantial portions of the Software.
 | |
| 
 | |
| THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 | |
| IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 | |
| FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 | |
| AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 | |
| LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 | |
| OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 | |
| SOFTWARE.
 | |
| */
 | |
| 
 | |
| // Code generated by client-gen. DO NOT EDIT.
 | |
| 
 | |
| package fake
 | |
| 
 | |
| import (
 | |
| 	clientset "github.com/zalando/postgres-operator/pkg/generated/clientset/versioned"
 | |
| 	acidv1 "github.com/zalando/postgres-operator/pkg/generated/clientset/versioned/typed/acid.zalan.do/v1"
 | |
| 	fakeacidv1 "github.com/zalando/postgres-operator/pkg/generated/clientset/versioned/typed/acid.zalan.do/v1/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{}
 | |
| 	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
 | |
| }
 | |
| 
 | |
| func (c *Clientset) Discovery() discovery.DiscoveryInterface {
 | |
| 	return c.discovery
 | |
| }
 | |
| 
 | |
| var _ clientset.Interface = &Clientset{}
 | |
| 
 | |
| // AcidV1 retrieves the AcidV1Client
 | |
| func (c *Clientset) AcidV1() acidv1.AcidV1Interface {
 | |
| 	return &fakeacidv1.FakeAcidV1{Fake: &c.Fake}
 | |
| }
 | |
| 
 | |
| // Acid retrieves the AcidV1Client
 | |
| func (c *Clientset) Acid() acidv1.AcidV1Interface {
 | |
| 	return &fakeacidv1.FakeAcidV1{Fake: &c.Fake}
 | |
| }
 |