2014-09-24 16:32:36 +00:00
|
|
|
/*
|
|
|
|
Copyright 2014 Google Inc. 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 scheduler
|
|
|
|
|
|
|
|
import (
|
|
|
|
"reflect"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/api"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestSpreadPriority(t *testing.T) {
|
|
|
|
labels1 := map[string]string{
|
|
|
|
"foo": "bar",
|
|
|
|
"baz": "blah",
|
|
|
|
}
|
|
|
|
labels2 := map[string]string{
|
|
|
|
"bar": "foo",
|
|
|
|
"baz": "blah",
|
|
|
|
}
|
|
|
|
machine1State := api.PodState{
|
|
|
|
Host: "machine1",
|
|
|
|
}
|
|
|
|
machine2State := api.PodState{
|
|
|
|
Host: "machine2",
|
|
|
|
}
|
|
|
|
tests := []struct {
|
|
|
|
pod api.Pod
|
|
|
|
pods []api.Pod
|
|
|
|
nodes []string
|
|
|
|
expectedList HostPriorityList
|
|
|
|
test string
|
|
|
|
}{
|
2014-09-24 21:18:31 +00:00
|
|
|
{
|
|
|
|
nodes: []string{"machine1", "machine2"},
|
|
|
|
expectedList: []HostPriority{{"machine1", 0}, {"machine2", 0}},
|
|
|
|
test: "nothing scheduled",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
pod: api.Pod{Labels: labels1},
|
|
|
|
pods: []api.Pod{{CurrentState: machine1State}},
|
|
|
|
nodes: []string{"machine1", "machine2"},
|
|
|
|
expectedList: []HostPriority{{"machine1", 0}, {"machine2", 0}},
|
|
|
|
test: "no labels",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
pod: api.Pod{Labels: labels1},
|
|
|
|
pods: []api.Pod{{CurrentState: machine1State, Labels: labels2}},
|
|
|
|
nodes: []string{"machine1", "machine2"},
|
|
|
|
expectedList: []HostPriority{{"machine1", 0}, {"machine2", 0}},
|
|
|
|
test: "different labels",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
pod: api.Pod{Labels: labels1},
|
|
|
|
pods: []api.Pod{
|
|
|
|
{CurrentState: machine1State, Labels: labels2},
|
|
|
|
{CurrentState: machine2State, Labels: labels1},
|
|
|
|
},
|
|
|
|
nodes: []string{"machine1", "machine2"},
|
|
|
|
expectedList: []HostPriority{{"machine1", 0}, {"machine2", 1}},
|
|
|
|
test: "one label match",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
pod: api.Pod{Labels: labels1},
|
|
|
|
pods: []api.Pod{
|
|
|
|
{CurrentState: machine1State, Labels: labels2},
|
|
|
|
{CurrentState: machine1State, Labels: labels1},
|
|
|
|
{CurrentState: machine2State, Labels: labels1},
|
|
|
|
},
|
|
|
|
nodes: []string{"machine1", "machine2"},
|
|
|
|
expectedList: []HostPriority{{"machine1", 1}, {"machine2", 1}},
|
|
|
|
test: "two label matches on different machines",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
pod: api.Pod{Labels: labels1},
|
|
|
|
pods: []api.Pod{
|
|
|
|
{CurrentState: machine1State, Labels: labels2},
|
|
|
|
{CurrentState: machine1State, Labels: labels1},
|
|
|
|
{CurrentState: machine2State, Labels: labels1},
|
|
|
|
{CurrentState: machine2State, Labels: labels1},
|
|
|
|
},
|
|
|
|
nodes: []string{"machine1", "machine2"},
|
|
|
|
expectedList: []HostPriority{{"machine1", 1}, {"machine2", 2}},
|
|
|
|
test: "three label matches",
|
|
|
|
},
|
2014-09-24 16:32:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, test := range tests {
|
2014-10-06 22:58:18 +00:00
|
|
|
list, err := CalculateSpreadPriority(test.pod, FakePodLister(test.pods), FakeMinionLister(makeMinionList(test.nodes)))
|
2014-09-24 21:18:31 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
if !reflect.DeepEqual(test.expectedList, list) {
|
|
|
|
t.Errorf("%s: expected %#v, got %#v", test.test, test.expectedList, list)
|
2014-09-24 16:32:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|