2014-06-06 23:40:48 +00:00
|
|
|
/*
|
2015-05-01 16:19:44 +00:00
|
|
|
Copyright 2014 The Kubernetes Authors All rights reserved.
|
2014-06-06 23:40:48 +00: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.
|
|
|
|
*/
|
2014-06-20 21:03:24 +00:00
|
|
|
|
2015-05-08 11:01:09 +00:00
|
|
|
package algorithm
|
2014-06-06 23:40:48 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2015-08-05 22:03:47 +00:00
|
|
|
"k8s.io/kubernetes/pkg/api"
|
2014-06-06 23:40:48 +00:00
|
|
|
)
|
|
|
|
|
2014-06-28 22:35:51 +00:00
|
|
|
// Some functions used by multiple scheduler tests.
|
|
|
|
|
|
|
|
type schedulerTester struct {
|
2015-09-10 08:40:22 +00:00
|
|
|
t *testing.T
|
|
|
|
scheduler ScheduleAlgorithm
|
|
|
|
nodeLister NodeLister
|
2014-06-06 23:40:48 +00:00
|
|
|
}
|
|
|
|
|
2014-06-28 22:35:51 +00:00
|
|
|
// Call if you know exactly where pod should get scheduled.
|
2015-04-03 22:51:50 +00:00
|
|
|
func (st *schedulerTester) expectSchedule(pod *api.Pod, expected string) {
|
2015-09-10 08:40:22 +00:00
|
|
|
actual, err := st.scheduler.Schedule(pod, st.nodeLister)
|
2014-06-28 22:35:51 +00:00
|
|
|
if err != nil {
|
|
|
|
st.t.Errorf("Unexpected error %v\nTried to scheduler: %#v", err, pod)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if actual != expected {
|
|
|
|
st.t.Errorf("Unexpected scheduling value: %v, expected %v", actual, expected)
|
|
|
|
}
|
2014-06-06 23:40:48 +00:00
|
|
|
}
|
|
|
|
|
2014-06-28 22:35:51 +00:00
|
|
|
// Call if you can't predict where pod will be scheduled.
|
2015-04-03 22:51:50 +00:00
|
|
|
func (st *schedulerTester) expectSuccess(pod *api.Pod) {
|
2015-09-10 08:40:22 +00:00
|
|
|
_, err := st.scheduler.Schedule(pod, st.nodeLister)
|
2014-06-28 22:35:51 +00:00
|
|
|
if err != nil {
|
|
|
|
st.t.Errorf("Unexpected error %v\nTried to scheduler: %#v", err, pod)
|
|
|
|
return
|
|
|
|
}
|
2014-06-06 23:40:48 +00:00
|
|
|
}
|
|
|
|
|
2014-06-28 22:35:51 +00:00
|
|
|
// Call if pod should *not* schedule.
|
2015-04-03 22:51:50 +00:00
|
|
|
func (st *schedulerTester) expectFailure(pod *api.Pod) {
|
2015-09-10 08:40:22 +00:00
|
|
|
_, err := st.scheduler.Schedule(pod, st.nodeLister)
|
2014-06-28 22:35:51 +00:00
|
|
|
if err == nil {
|
|
|
|
st.t.Error("Unexpected non-error")
|
|
|
|
}
|
2014-06-06 23:40:48 +00:00
|
|
|
}
|