2015-08-27 12:19:35 +00:00
|
|
|
/*
|
|
|
|
Copyright 2015 The Kubernetes Authors All rights reserved.
|
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package testclient
|
|
|
|
|
|
|
|
import (
|
|
|
|
"k8s.io/kubernetes/pkg/api"
|
2015-11-17 09:59:13 +00:00
|
|
|
"k8s.io/kubernetes/pkg/api/unversioned"
|
2015-10-09 22:04:41 +00:00
|
|
|
"k8s.io/kubernetes/pkg/apis/extensions"
|
2015-08-27 12:19:35 +00:00
|
|
|
"k8s.io/kubernetes/pkg/watch"
|
|
|
|
)
|
|
|
|
|
|
|
|
// FakeJobs implements JobInterface. 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 FakeJobs struct {
|
|
|
|
Fake *FakeExperimental
|
|
|
|
Namespace string
|
|
|
|
}
|
|
|
|
|
2015-10-09 22:49:10 +00:00
|
|
|
func (c *FakeJobs) Get(name string) (*extensions.Job, error) {
|
|
|
|
obj, err := c.Fake.Invokes(NewGetAction("jobs", c.Namespace, name), &extensions.Job{})
|
2015-08-27 12:19:35 +00:00
|
|
|
if obj == nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2015-10-09 22:49:10 +00:00
|
|
|
return obj.(*extensions.Job), err
|
2015-08-27 12:19:35 +00:00
|
|
|
}
|
|
|
|
|
2015-12-02 11:12:57 +00:00
|
|
|
func (c *FakeJobs) List(opts unversioned.ListOptions) (*extensions.JobList, error) {
|
|
|
|
obj, err := c.Fake.Invokes(NewListAction("jobs", c.Namespace, opts), &extensions.JobList{})
|
2015-08-27 12:19:35 +00:00
|
|
|
if obj == nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2015-10-09 22:49:10 +00:00
|
|
|
return obj.(*extensions.JobList), err
|
2015-08-27 12:19:35 +00:00
|
|
|
}
|
|
|
|
|
2015-10-09 22:49:10 +00:00
|
|
|
func (c *FakeJobs) Create(job *extensions.Job) (*extensions.Job, error) {
|
2015-08-27 12:19:35 +00:00
|
|
|
obj, err := c.Fake.Invokes(NewCreateAction("jobs", c.Namespace, job), job)
|
|
|
|
if obj == nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2015-10-09 22:49:10 +00:00
|
|
|
return obj.(*extensions.Job), err
|
2015-08-27 12:19:35 +00:00
|
|
|
}
|
|
|
|
|
2015-10-09 22:49:10 +00:00
|
|
|
func (c *FakeJobs) Update(job *extensions.Job) (*extensions.Job, error) {
|
2015-08-27 12:19:35 +00:00
|
|
|
obj, err := c.Fake.Invokes(NewUpdateAction("jobs", c.Namespace, job), job)
|
|
|
|
if obj == nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2015-10-09 22:49:10 +00:00
|
|
|
return obj.(*extensions.Job), err
|
2015-08-27 12:19:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *FakeJobs) Delete(name string, options *api.DeleteOptions) error {
|
2015-10-09 22:49:10 +00:00
|
|
|
_, err := c.Fake.Invokes(NewDeleteAction("jobs", c.Namespace, name), &extensions.Job{})
|
2015-08-27 12:19:35 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-11-26 15:27:45 +00:00
|
|
|
func (c *FakeJobs) Watch(opts unversioned.ListOptions) (watch.Interface, error) {
|
|
|
|
return c.Fake.InvokesWatch(NewWatchAction("jobs", c.Namespace, opts))
|
2015-08-27 12:19:35 +00:00
|
|
|
}
|
|
|
|
|
2015-10-09 22:49:10 +00:00
|
|
|
func (c *FakeJobs) UpdateStatus(job *extensions.Job) (result *extensions.Job, err error) {
|
2015-08-27 12:19:35 +00:00
|
|
|
obj, err := c.Fake.Invokes(NewUpdateSubresourceAction("jobs", "status", c.Namespace, job), job)
|
|
|
|
if obj == nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2015-10-09 22:49:10 +00:00
|
|
|
return obj.(*extensions.Job), err
|
2015-08-27 12:19:35 +00:00
|
|
|
}
|