2014-12-10 04:25:45 +00:00
|
|
|
/*
|
2016-06-03 00:25:58 +00:00
|
|
|
Copyright 2014 The Kubernetes Authors.
|
2014-12-10 04:25:45 +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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package algorithmprovider
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2015-08-05 22:03:47 +00:00
|
|
|
"k8s.io/kubernetes/plugin/pkg/scheduler/factory"
|
2014-12-10 04:25:45 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
algorithmProviderNames = []string{
|
|
|
|
factory.DefaultProvider,
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestDefaultConfigExists(t *testing.T) {
|
|
|
|
p, err := factory.GetAlgorithmProvider(factory.DefaultProvider)
|
|
|
|
if err != nil {
|
2015-01-18 07:32:34 +00:00
|
|
|
t.Errorf("error retrieving default provider: %v", err)
|
2014-12-10 04:25:45 +00:00
|
|
|
}
|
|
|
|
if p == nil {
|
|
|
|
t.Error("algorithm provider config should not be nil")
|
|
|
|
}
|
|
|
|
if len(p.FitPredicateKeys) == 0 {
|
|
|
|
t.Error("default algorithm provider shouldn't have 0 fit predicates")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestAlgorithmProviders(t *testing.T) {
|
|
|
|
for _, pn := range algorithmProviderNames {
|
|
|
|
p, err := factory.GetAlgorithmProvider(pn)
|
|
|
|
if err != nil {
|
2015-01-18 07:32:34 +00:00
|
|
|
t.Errorf("error retrieving '%s' provider: %v", pn, err)
|
2014-12-10 04:25:45 +00:00
|
|
|
break
|
|
|
|
}
|
|
|
|
if len(p.PriorityFunctionKeys) == 0 {
|
2015-01-07 08:40:16 +00:00
|
|
|
t.Errorf("%s algorithm provider shouldn't have 0 priority functions", pn)
|
2014-12-10 04:25:45 +00:00
|
|
|
}
|
|
|
|
for _, pf := range p.PriorityFunctionKeys.List() {
|
|
|
|
if !factory.IsPriorityFunctionRegistered(pf) {
|
2015-01-18 07:32:34 +00:00
|
|
|
t.Errorf("priority function %s is not registered but is used in the %s algorithm provider", pf, pn)
|
2014-12-10 04:25:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
for _, fp := range p.FitPredicateKeys.List() {
|
|
|
|
if !factory.IsFitPredicateRegistered(fp) {
|
2015-01-18 07:32:34 +00:00
|
|
|
t.Errorf("fit predicate %s is not registered but is used in the %s algorithm provider", fp, pn)
|
2014-12-10 04:25:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|