86 lines
2.5 KiB
Go
86 lines
2.5 KiB
Go
/*
|
|
Copyright 2016 The Kubernetes Authors.
|
|
|
|
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 service
|
|
|
|
import (
|
|
"sync"
|
|
"testing"
|
|
|
|
"k8s.io/apimachinery/pkg/util/sets"
|
|
"k8s.io/kubernetes/federation/apis/federation/v1beta1"
|
|
"k8s.io/kubernetes/federation/pkg/dnsprovider/providers/google/clouddns" // Only for unit testing purposes.
|
|
"k8s.io/kubernetes/pkg/api/v1"
|
|
)
|
|
|
|
func TestGetClusterConditionPredicate(t *testing.T) {
|
|
fakedns, _ := clouddns.NewFakeInterface() // No need to check for unsupported interfaces, as the fake interface supports everything that's required.
|
|
serviceController := ServiceController{
|
|
dns: fakedns,
|
|
serviceCache: &serviceCache{fedServiceMap: make(map[string]*cachedService)},
|
|
clusterCache: &clusterClientCache{
|
|
rwlock: sync.Mutex{},
|
|
clientMap: make(map[string]*clusterCache),
|
|
},
|
|
knownClusterSet: make(sets.String),
|
|
}
|
|
|
|
tests := []struct {
|
|
cluster v1beta1.Cluster
|
|
expectAccept bool
|
|
name string
|
|
serviceController *ServiceController
|
|
}{
|
|
{
|
|
cluster: v1beta1.Cluster{},
|
|
expectAccept: false,
|
|
name: "empty",
|
|
serviceController: &serviceController,
|
|
},
|
|
{
|
|
cluster: v1beta1.Cluster{
|
|
Status: v1beta1.ClusterStatus{
|
|
Conditions: []v1beta1.ClusterCondition{
|
|
{Type: v1beta1.ClusterReady, Status: v1.ConditionTrue},
|
|
},
|
|
},
|
|
},
|
|
expectAccept: true,
|
|
name: "basic",
|
|
serviceController: &serviceController,
|
|
},
|
|
{
|
|
cluster: v1beta1.Cluster{
|
|
Status: v1beta1.ClusterStatus{
|
|
Conditions: []v1beta1.ClusterCondition{
|
|
{Type: v1beta1.ClusterReady, Status: v1.ConditionFalse},
|
|
},
|
|
},
|
|
},
|
|
expectAccept: false,
|
|
name: "notready",
|
|
serviceController: &serviceController,
|
|
},
|
|
}
|
|
pred := getClusterConditionPredicate()
|
|
for _, test := range tests {
|
|
accept := pred(test.cluster)
|
|
if accept != test.expectAccept {
|
|
t.Errorf("Test failed for %s, expected %v, saw %v", test.name, test.expectAccept, accept)
|
|
}
|
|
}
|
|
}
|