pipeline/pkg/client/clientset/versioned/typed/pipeline/v1alpha1/fake/fake_taskrun.go
Vincent Demeester bc957e63c5 Generate injected clients and informers
- Update knative/pkg dependency prune information and get vendor code
- Update `./hack/update-codegen.sh` to generate those informers and
  clients

Signed-off-by: Vincent Demeester <vdemeest@redhat.com>
2019-07-10 08:10:50 -05:00

141 lines
4.9 KiB
Go
Generated

/*
Copyright 2019 The Tekton Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
// Code generated by client-gen. DO NOT EDIT.
package fake
import (
v1alpha1 "github.com/tektoncd/pipeline/pkg/apis/pipeline/v1alpha1"
v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
labels "k8s.io/apimachinery/pkg/labels"
schema "k8s.io/apimachinery/pkg/runtime/schema"
types "k8s.io/apimachinery/pkg/types"
watch "k8s.io/apimachinery/pkg/watch"
testing "k8s.io/client-go/testing"
)
// FakeTaskRuns implements TaskRunInterface
type FakeTaskRuns struct {
Fake *FakeTektonV1alpha1
ns string
}
var taskrunsResource = schema.GroupVersionResource{Group: "tekton.dev", Version: "v1alpha1", Resource: "taskruns"}
var taskrunsKind = schema.GroupVersionKind{Group: "tekton.dev", Version: "v1alpha1", Kind: "TaskRun"}
// Get takes name of the taskRun, and returns the corresponding taskRun object, and an error if there is any.
func (c *FakeTaskRuns) Get(name string, options v1.GetOptions) (result *v1alpha1.TaskRun, err error) {
obj, err := c.Fake.
Invokes(testing.NewGetAction(taskrunsResource, c.ns, name), &v1alpha1.TaskRun{})
if obj == nil {
return nil, err
}
return obj.(*v1alpha1.TaskRun), err
}
// List takes label and field selectors, and returns the list of TaskRuns that match those selectors.
func (c *FakeTaskRuns) List(opts v1.ListOptions) (result *v1alpha1.TaskRunList, err error) {
obj, err := c.Fake.
Invokes(testing.NewListAction(taskrunsResource, taskrunsKind, c.ns, opts), &v1alpha1.TaskRunList{})
if obj == nil {
return nil, err
}
label, _, _ := testing.ExtractFromListOptions(opts)
if label == nil {
label = labels.Everything()
}
list := &v1alpha1.TaskRunList{ListMeta: obj.(*v1alpha1.TaskRunList).ListMeta}
for _, item := range obj.(*v1alpha1.TaskRunList).Items {
if label.Matches(labels.Set(item.Labels)) {
list.Items = append(list.Items, item)
}
}
return list, err
}
// Watch returns a watch.Interface that watches the requested taskRuns.
func (c *FakeTaskRuns) Watch(opts v1.ListOptions) (watch.Interface, error) {
return c.Fake.
InvokesWatch(testing.NewWatchAction(taskrunsResource, c.ns, opts))
}
// Create takes the representation of a taskRun and creates it. Returns the server's representation of the taskRun, and an error, if there is any.
func (c *FakeTaskRuns) Create(taskRun *v1alpha1.TaskRun) (result *v1alpha1.TaskRun, err error) {
obj, err := c.Fake.
Invokes(testing.NewCreateAction(taskrunsResource, c.ns, taskRun), &v1alpha1.TaskRun{})
if obj == nil {
return nil, err
}
return obj.(*v1alpha1.TaskRun), err
}
// Update takes the representation of a taskRun and updates it. Returns the server's representation of the taskRun, and an error, if there is any.
func (c *FakeTaskRuns) Update(taskRun *v1alpha1.TaskRun) (result *v1alpha1.TaskRun, err error) {
obj, err := c.Fake.
Invokes(testing.NewUpdateAction(taskrunsResource, c.ns, taskRun), &v1alpha1.TaskRun{})
if obj == nil {
return nil, err
}
return obj.(*v1alpha1.TaskRun), err
}
// UpdateStatus was generated because the type contains a Status member.
// Add a +genclient:noStatus comment above the type to avoid generating UpdateStatus().
func (c *FakeTaskRuns) UpdateStatus(taskRun *v1alpha1.TaskRun) (*v1alpha1.TaskRun, error) {
obj, err := c.Fake.
Invokes(testing.NewUpdateSubresourceAction(taskrunsResource, "status", c.ns, taskRun), &v1alpha1.TaskRun{})
if obj == nil {
return nil, err
}
return obj.(*v1alpha1.TaskRun), err
}
// Delete takes name of the taskRun and deletes it. Returns an error if one occurs.
func (c *FakeTaskRuns) Delete(name string, options *v1.DeleteOptions) error {
_, err := c.Fake.
Invokes(testing.NewDeleteAction(taskrunsResource, c.ns, name), &v1alpha1.TaskRun{})
return err
}
// DeleteCollection deletes a collection of objects.
func (c *FakeTaskRuns) DeleteCollection(options *v1.DeleteOptions, listOptions v1.ListOptions) error {
action := testing.NewDeleteCollectionAction(taskrunsResource, c.ns, listOptions)
_, err := c.Fake.Invokes(action, &v1alpha1.TaskRunList{})
return err
}
// Patch applies the patch and returns the patched taskRun.
func (c *FakeTaskRuns) Patch(name string, pt types.PatchType, data []byte, subresources ...string) (result *v1alpha1.TaskRun, err error) {
obj, err := c.Fake.
Invokes(testing.NewPatchSubresourceAction(taskrunsResource, c.ns, name, data, subresources...), &v1alpha1.TaskRun{})
if obj == nil {
return nil, err
}
return obj.(*v1alpha1.TaskRun), err
}