2015-09-03 14:50:53 +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-09-09 22:46:06 +00:00
|
|
|
"k8s.io/kubernetes/pkg/apis/experimental"
|
2015-09-03 14:50:53 +00:00
|
|
|
"k8s.io/kubernetes/pkg/fields"
|
|
|
|
"k8s.io/kubernetes/pkg/labels"
|
|
|
|
"k8s.io/kubernetes/pkg/watch"
|
|
|
|
)
|
|
|
|
|
|
|
|
// FakeHorizontalPodAutoscalers implements HorizontalPodAutoscalerInterface. Meant to be embedded into a struct to get a default
|
|
|
|
// implementation. This makes faking out just the methods you want to test easier.
|
|
|
|
type FakeHorizontalPodAutoscalers struct {
|
|
|
|
Fake *FakeExperimental
|
|
|
|
Namespace string
|
|
|
|
}
|
|
|
|
|
2015-09-09 22:46:06 +00:00
|
|
|
func (c *FakeHorizontalPodAutoscalers) Get(name string) (*experimental.HorizontalPodAutoscaler, error) {
|
|
|
|
obj, err := c.Fake.Invokes(NewGetAction("horizontalpodautoscalers", c.Namespace, name), &experimental.HorizontalPodAutoscaler{})
|
2015-09-03 14:50:53 +00:00
|
|
|
if obj == nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2015-09-09 22:46:06 +00:00
|
|
|
return obj.(*experimental.HorizontalPodAutoscaler), err
|
2015-09-03 14:50:53 +00:00
|
|
|
}
|
|
|
|
|
2015-09-09 22:46:06 +00:00
|
|
|
func (c *FakeHorizontalPodAutoscalers) List(label labels.Selector, field fields.Selector) (*experimental.HorizontalPodAutoscalerList, error) {
|
|
|
|
obj, err := c.Fake.Invokes(NewListAction("horizontalpodautoscalers", c.Namespace, label, field), &experimental.HorizontalPodAutoscalerList{})
|
2015-09-03 14:50:53 +00:00
|
|
|
if obj == nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2015-09-09 22:46:06 +00:00
|
|
|
list := &experimental.HorizontalPodAutoscalerList{}
|
|
|
|
for _, a := range obj.(*experimental.HorizontalPodAutoscalerList).Items {
|
2015-09-03 14:50:53 +00:00
|
|
|
if label.Matches(labels.Set(a.Labels)) {
|
|
|
|
list.Items = append(list.Items, a)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return list, err
|
|
|
|
}
|
|
|
|
|
2015-09-09 22:46:06 +00:00
|
|
|
func (c *FakeHorizontalPodAutoscalers) Create(a *experimental.HorizontalPodAutoscaler) (*experimental.HorizontalPodAutoscaler, error) {
|
2015-09-03 14:50:53 +00:00
|
|
|
obj, err := c.Fake.Invokes(NewCreateAction("horizontalpodautoscalers", c.Namespace, a), a)
|
|
|
|
if obj == nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2015-09-09 22:46:06 +00:00
|
|
|
return obj.(*experimental.HorizontalPodAutoscaler), err
|
2015-09-03 14:50:53 +00:00
|
|
|
}
|
|
|
|
|
2015-09-09 22:46:06 +00:00
|
|
|
func (c *FakeHorizontalPodAutoscalers) Update(a *experimental.HorizontalPodAutoscaler) (*experimental.HorizontalPodAutoscaler, error) {
|
2015-09-03 14:50:53 +00:00
|
|
|
obj, err := c.Fake.Invokes(NewUpdateAction("horizontalpodautoscalers", c.Namespace, a), a)
|
|
|
|
if obj == nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2015-09-09 22:46:06 +00:00
|
|
|
return obj.(*experimental.HorizontalPodAutoscaler), err
|
2015-09-03 14:50:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *FakeHorizontalPodAutoscalers) Delete(name string, options *api.DeleteOptions) error {
|
2015-09-09 22:46:06 +00:00
|
|
|
_, err := c.Fake.Invokes(NewDeleteAction("horizontalpodautoscalers", c.Namespace, name), &experimental.HorizontalPodAutoscaler{})
|
2015-09-03 14:50:53 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *FakeHorizontalPodAutoscalers) Watch(label labels.Selector, field fields.Selector, resourceVersion string) (watch.Interface, error) {
|
|
|
|
return c.Fake.InvokesWatch(NewWatchAction("horizontalpodautoscalers", c.Namespace, label, field, resourceVersion))
|
|
|
|
}
|