2016-03-14 00:58:28 -04:00
|
|
|
/*
|
2016-06-02 20:25:58 -04:00
|
|
|
Copyright 2015 The Kubernetes Authors.
|
2016-03-14 00:58:28 -04:00
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
*/
|
|
|
|
|
|
2017-02-22 01:31:49 -05:00
|
|
|
package testing
|
2016-03-14 00:58:28 -04:00
|
|
|
|
|
|
|
|
import (
|
2017-06-22 13:25:57 -04:00
|
|
|
"k8s.io/api/core/v1"
|
2017-10-09 18:37:03 -04:00
|
|
|
policy "k8s.io/api/policy/v1beta1"
|
2017-06-22 14:24:23 -04:00
|
|
|
"k8s.io/apimachinery/pkg/labels"
|
2016-03-14 00:58:28 -04:00
|
|
|
"k8s.io/kubernetes/plugin/pkg/scheduler/schedulercache"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// FakeCache is used for testing
|
|
|
|
|
type FakeCache struct {
|
2017-10-16 16:30:25 -04:00
|
|
|
AssumeFunc func(*v1.Pod)
|
|
|
|
|
ForgetFunc func(*v1.Pod)
|
|
|
|
|
IsAssumedPodFunc func(*v1.Pod) bool
|
|
|
|
|
GetPodFunc func(*v1.Pod) *v1.Pod
|
2016-03-14 00:58:28 -04:00
|
|
|
}
|
|
|
|
|
|
2016-11-18 15:52:35 -05:00
|
|
|
func (f *FakeCache) AssumePod(pod *v1.Pod) error {
|
2016-03-14 00:58:28 -04:00
|
|
|
f.AssumeFunc(pod)
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
2016-12-08 11:15:06 -05:00
|
|
|
func (f *FakeCache) FinishBinding(pod *v1.Pod) error { return nil }
|
|
|
|
|
|
2017-08-02 13:09:24 -04:00
|
|
|
func (f *FakeCache) ForgetPod(pod *v1.Pod) error {
|
|
|
|
|
f.ForgetFunc(pod)
|
|
|
|
|
return nil
|
|
|
|
|
}
|
2016-07-13 05:47:07 -04:00
|
|
|
|
2016-11-18 15:52:35 -05:00
|
|
|
func (f *FakeCache) AddPod(pod *v1.Pod) error { return nil }
|
2016-03-14 00:58:28 -04:00
|
|
|
|
2016-11-18 15:52:35 -05:00
|
|
|
func (f *FakeCache) UpdatePod(oldPod, newPod *v1.Pod) error { return nil }
|
2016-03-14 00:58:28 -04:00
|
|
|
|
2016-11-18 15:52:35 -05:00
|
|
|
func (f *FakeCache) RemovePod(pod *v1.Pod) error { return nil }
|
2016-03-14 00:58:28 -04:00
|
|
|
|
2017-10-16 16:30:25 -04:00
|
|
|
func (f *FakeCache) IsAssumedPod(pod *v1.Pod) (bool, error) {
|
|
|
|
|
return f.IsAssumedPodFunc(pod), nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (f *FakeCache) GetPod(pod *v1.Pod) (*v1.Pod, error) {
|
|
|
|
|
return f.GetPodFunc(pod), nil
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-18 15:52:35 -05:00
|
|
|
func (f *FakeCache) AddNode(node *v1.Node) error { return nil }
|
2016-04-21 04:24:12 -04:00
|
|
|
|
2016-11-18 15:52:35 -05:00
|
|
|
func (f *FakeCache) UpdateNode(oldNode, newNode *v1.Node) error { return nil }
|
2016-04-21 04:24:12 -04:00
|
|
|
|
2016-11-18 15:52:35 -05:00
|
|
|
func (f *FakeCache) RemoveNode(node *v1.Node) error { return nil }
|
2016-04-21 04:24:12 -04:00
|
|
|
|
2016-05-04 07:32:05 -04:00
|
|
|
func (f *FakeCache) UpdateNodeNameToInfoMap(infoMap map[string]*schedulercache.NodeInfo) error {
|
|
|
|
|
return nil
|
2016-03-14 00:58:28 -04:00
|
|
|
}
|
|
|
|
|
|
2017-10-09 18:37:03 -04:00
|
|
|
func (f *FakeCache) AddPDB(pdb *policy.PodDisruptionBudget) error { return nil }
|
|
|
|
|
|
|
|
|
|
func (f *FakeCache) UpdatePDB(oldPDB, newPDB *policy.PodDisruptionBudget) error { return nil }
|
|
|
|
|
|
|
|
|
|
func (f *FakeCache) RemovePDB(pdb *policy.PodDisruptionBudget) error { return nil }
|
|
|
|
|
|
|
|
|
|
func (f *FakeCache) ListPDBs(selector labels.Selector) ([]*policy.PodDisruptionBudget, error) {
|
|
|
|
|
return nil, nil
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-18 15:52:35 -05:00
|
|
|
func (f *FakeCache) List(s labels.Selector) ([]*v1.Pod, error) { return nil, nil }
|
2017-08-14 20:52:13 -04:00
|
|
|
|
|
|
|
|
func (f *FakeCache) FilteredList(filter schedulercache.PodFilter, selector labels.Selector) ([]*v1.Pod, error) {
|
|
|
|
|
return nil, nil
|
|
|
|
|
}
|