|
| 1 | +package fake |
| 2 | + |
| 3 | +import ( |
| 4 | + v1 "github.com/openshift/origin/pkg/authorization/api/v1" |
| 5 | + api "k8s.io/kubernetes/pkg/api" |
| 6 | + unversioned "k8s.io/kubernetes/pkg/api/unversioned" |
| 7 | + core "k8s.io/kubernetes/pkg/client/testing/core" |
| 8 | + labels "k8s.io/kubernetes/pkg/labels" |
| 9 | + watch "k8s.io/kubernetes/pkg/watch" |
| 10 | +) |
| 11 | + |
| 12 | +// FakePolicies implements PolicyInterface |
| 13 | +type FakePolicies struct { |
| 14 | + Fake *FakeCore |
| 15 | + ns string |
| 16 | +} |
| 17 | + |
| 18 | +var policiesResource = unversioned.GroupVersionResource{Group: "", Version: "v1", Resource: "policies"} |
| 19 | + |
| 20 | +func (c *FakePolicies) Create(policy *v1.Policy) (result *v1.Policy, err error) { |
| 21 | + obj, err := c.Fake. |
| 22 | + Invokes(core.NewCreateAction(policiesResource, c.ns, policy), &v1.Policy{}) |
| 23 | + |
| 24 | + if obj == nil { |
| 25 | + return nil, err |
| 26 | + } |
| 27 | + return obj.(*v1.Policy), err |
| 28 | +} |
| 29 | + |
| 30 | +func (c *FakePolicies) Update(policy *v1.Policy) (result *v1.Policy, err error) { |
| 31 | + obj, err := c.Fake. |
| 32 | + Invokes(core.NewUpdateAction(policiesResource, c.ns, policy), &v1.Policy{}) |
| 33 | + |
| 34 | + if obj == nil { |
| 35 | + return nil, err |
| 36 | + } |
| 37 | + return obj.(*v1.Policy), err |
| 38 | +} |
| 39 | + |
| 40 | +func (c *FakePolicies) Delete(name string, options *api.DeleteOptions) error { |
| 41 | + _, err := c.Fake. |
| 42 | + Invokes(core.NewDeleteAction(policiesResource, c.ns, name), &v1.Policy{}) |
| 43 | + |
| 44 | + return err |
| 45 | +} |
| 46 | + |
| 47 | +func (c *FakePolicies) DeleteCollection(options *api.DeleteOptions, listOptions api.ListOptions) error { |
| 48 | + action := core.NewDeleteCollectionAction(policiesResource, c.ns, listOptions) |
| 49 | + |
| 50 | + _, err := c.Fake.Invokes(action, &v1.PolicyList{}) |
| 51 | + return err |
| 52 | +} |
| 53 | + |
| 54 | +func (c *FakePolicies) Get(name string) (result *v1.Policy, err error) { |
| 55 | + obj, err := c.Fake. |
| 56 | + Invokes(core.NewGetAction(policiesResource, c.ns, name), &v1.Policy{}) |
| 57 | + |
| 58 | + if obj == nil { |
| 59 | + return nil, err |
| 60 | + } |
| 61 | + return obj.(*v1.Policy), err |
| 62 | +} |
| 63 | + |
| 64 | +func (c *FakePolicies) List(opts api.ListOptions) (result *v1.PolicyList, err error) { |
| 65 | + obj, err := c.Fake. |
| 66 | + Invokes(core.NewListAction(policiesResource, c.ns, opts), &v1.PolicyList{}) |
| 67 | + |
| 68 | + if obj == nil { |
| 69 | + return nil, err |
| 70 | + } |
| 71 | + |
| 72 | + label := opts.LabelSelector |
| 73 | + if label == nil { |
| 74 | + label = labels.Everything() |
| 75 | + } |
| 76 | + list := &v1.PolicyList{} |
| 77 | + for _, item := range obj.(*v1.PolicyList).Items { |
| 78 | + if label.Matches(labels.Set(item.Labels)) { |
| 79 | + list.Items = append(list.Items, item) |
| 80 | + } |
| 81 | + } |
| 82 | + return list, err |
| 83 | +} |
| 84 | + |
| 85 | +// Watch returns a watch.Interface that watches the requested policies. |
| 86 | +func (c *FakePolicies) Watch(opts api.ListOptions) (watch.Interface, error) { |
| 87 | + return c.Fake. |
| 88 | + InvokesWatch(core.NewWatchAction(policiesResource, c.ns, opts)) |
| 89 | + |
| 90 | +} |
| 91 | + |
| 92 | +// Patch applies the patch and returns the patched policy. |
| 93 | +func (c *FakePolicies) Patch(name string, pt api.PatchType, data []byte, subresources ...string) (result *v1.Policy, err error) { |
| 94 | + obj, err := c.Fake. |
| 95 | + Invokes(core.NewPatchSubresourceAction(policiesResource, c.ns, name, data, subresources...), &v1.Policy{}) |
| 96 | + |
| 97 | + if obj == nil { |
| 98 | + return nil, err |
| 99 | + } |
| 100 | + return obj.(*v1.Policy), err |
| 101 | +} |
0 commit comments