Refactored BPA controller code for better testing
[icn.git] / cmd / bpa-operator / vendor / k8s.io / client-go / kubernetes / typed / auditregistration / v1alpha1 / fake / fake_auditsink.go
1 /*
2 Copyright The Kubernetes Authors.
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8     http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15 */
16
17 // Code generated by client-gen. DO NOT EDIT.
18
19 package fake
20
21 import (
22         v1alpha1 "k8s.io/api/auditregistration/v1alpha1"
23         v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
24         labels "k8s.io/apimachinery/pkg/labels"
25         schema "k8s.io/apimachinery/pkg/runtime/schema"
26         types "k8s.io/apimachinery/pkg/types"
27         watch "k8s.io/apimachinery/pkg/watch"
28         testing "k8s.io/client-go/testing"
29 )
30
31 // FakeAuditSinks implements AuditSinkInterface
32 type FakeAuditSinks struct {
33         Fake *FakeAuditregistrationV1alpha1
34 }
35
36 var auditsinksResource = schema.GroupVersionResource{Group: "auditregistration.k8s.io", Version: "v1alpha1", Resource: "auditsinks"}
37
38 var auditsinksKind = schema.GroupVersionKind{Group: "auditregistration.k8s.io", Version: "v1alpha1", Kind: "AuditSink"}
39
40 // Get takes name of the auditSink, and returns the corresponding auditSink object, and an error if there is any.
41 func (c *FakeAuditSinks) Get(name string, options v1.GetOptions) (result *v1alpha1.AuditSink, err error) {
42         obj, err := c.Fake.
43                 Invokes(testing.NewRootGetAction(auditsinksResource, name), &v1alpha1.AuditSink{})
44         if obj == nil {
45                 return nil, err
46         }
47         return obj.(*v1alpha1.AuditSink), err
48 }
49
50 // List takes label and field selectors, and returns the list of AuditSinks that match those selectors.
51 func (c *FakeAuditSinks) List(opts v1.ListOptions) (result *v1alpha1.AuditSinkList, err error) {
52         obj, err := c.Fake.
53                 Invokes(testing.NewRootListAction(auditsinksResource, auditsinksKind, opts), &v1alpha1.AuditSinkList{})
54         if obj == nil {
55                 return nil, err
56         }
57
58         label, _, _ := testing.ExtractFromListOptions(opts)
59         if label == nil {
60                 label = labels.Everything()
61         }
62         list := &v1alpha1.AuditSinkList{ListMeta: obj.(*v1alpha1.AuditSinkList).ListMeta}
63         for _, item := range obj.(*v1alpha1.AuditSinkList).Items {
64                 if label.Matches(labels.Set(item.Labels)) {
65                         list.Items = append(list.Items, item)
66                 }
67         }
68         return list, err
69 }
70
71 // Watch returns a watch.Interface that watches the requested auditSinks.
72 func (c *FakeAuditSinks) Watch(opts v1.ListOptions) (watch.Interface, error) {
73         return c.Fake.
74                 InvokesWatch(testing.NewRootWatchAction(auditsinksResource, opts))
75 }
76
77 // Create takes the representation of a auditSink and creates it.  Returns the server's representation of the auditSink, and an error, if there is any.
78 func (c *FakeAuditSinks) Create(auditSink *v1alpha1.AuditSink) (result *v1alpha1.AuditSink, err error) {
79         obj, err := c.Fake.
80                 Invokes(testing.NewRootCreateAction(auditsinksResource, auditSink), &v1alpha1.AuditSink{})
81         if obj == nil {
82                 return nil, err
83         }
84         return obj.(*v1alpha1.AuditSink), err
85 }
86
87 // Update takes the representation of a auditSink and updates it. Returns the server's representation of the auditSink, and an error, if there is any.
88 func (c *FakeAuditSinks) Update(auditSink *v1alpha1.AuditSink) (result *v1alpha1.AuditSink, err error) {
89         obj, err := c.Fake.
90                 Invokes(testing.NewRootUpdateAction(auditsinksResource, auditSink), &v1alpha1.AuditSink{})
91         if obj == nil {
92                 return nil, err
93         }
94         return obj.(*v1alpha1.AuditSink), err
95 }
96
97 // Delete takes name of the auditSink and deletes it. Returns an error if one occurs.
98 func (c *FakeAuditSinks) Delete(name string, options *v1.DeleteOptions) error {
99         _, err := c.Fake.
100                 Invokes(testing.NewRootDeleteAction(auditsinksResource, name), &v1alpha1.AuditSink{})
101         return err
102 }
103
104 // DeleteCollection deletes a collection of objects.
105 func (c *FakeAuditSinks) DeleteCollection(options *v1.DeleteOptions, listOptions v1.ListOptions) error {
106         action := testing.NewRootDeleteCollectionAction(auditsinksResource, listOptions)
107
108         _, err := c.Fake.Invokes(action, &v1alpha1.AuditSinkList{})
109         return err
110 }
111
112 // Patch applies the patch and returns the patched auditSink.
113 func (c *FakeAuditSinks) Patch(name string, pt types.PatchType, data []byte, subresources ...string) (result *v1alpha1.AuditSink, err error) {
114         obj, err := c.Fake.
115                 Invokes(testing.NewRootPatchSubresourceAction(auditsinksResource, name, pt, data, subresources...), &v1alpha1.AuditSink{})
116         if obj == nil {
117                 return nil, err
118         }
119         return obj.(*v1alpha1.AuditSink), err
120 }