2017-02-01 00:45:59 +00:00
|
|
|
/*
|
|
|
|
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 kubectl
|
|
|
|
|
|
|
|
import (
|
|
|
|
"reflect"
|
|
|
|
"testing"
|
|
|
|
|
2017-02-03 13:41:32 +00:00
|
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
2017-02-01 00:45:59 +00:00
|
|
|
federationapi "k8s.io/kubernetes/federation/apis/federation/v1beta1"
|
|
|
|
"k8s.io/kubernetes/pkg/api/v1"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestClusterGenerate(t *testing.T) {
|
|
|
|
tests := []struct {
|
|
|
|
params map[string]interface{}
|
|
|
|
expected *federationapi.Cluster
|
|
|
|
expectErr bool
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
params: map[string]interface{}{
|
|
|
|
"name": "foo",
|
|
|
|
"client-cidr": "0.0.0.0/0",
|
|
|
|
"server-address": "10.20.30.40",
|
|
|
|
"secret": "foo-credentials",
|
|
|
|
},
|
|
|
|
expected: &federationapi.Cluster{
|
2017-02-03 13:41:32 +00:00
|
|
|
ObjectMeta: metav1.ObjectMeta{
|
2017-02-01 00:45:59 +00:00
|
|
|
Name: "foo",
|
|
|
|
},
|
|
|
|
Spec: federationapi.ClusterSpec{
|
|
|
|
ServerAddressByClientCIDRs: []federationapi.ServerAddressByClientCIDR{
|
|
|
|
{
|
|
|
|
ClientCIDR: "0.0.0.0/0",
|
|
|
|
ServerAddress: "10.20.30.40",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
SecretRef: &v1.LocalObjectReference{
|
|
|
|
Name: "foo-credentials",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
expectErr: false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
params: map[string]interface{}{
|
|
|
|
"name": "foo",
|
|
|
|
"client-cidr": "10.20.30.40/16",
|
|
|
|
"server-address": "https://foo.example.com",
|
|
|
|
"secret": "foo-credentials",
|
|
|
|
},
|
|
|
|
expected: &federationapi.Cluster{
|
2017-02-03 13:41:32 +00:00
|
|
|
ObjectMeta: metav1.ObjectMeta{
|
2017-02-01 00:45:59 +00:00
|
|
|
Name: "foo",
|
|
|
|
},
|
|
|
|
Spec: federationapi.ClusterSpec{
|
|
|
|
ServerAddressByClientCIDRs: []federationapi.ServerAddressByClientCIDR{
|
|
|
|
{
|
|
|
|
ClientCIDR: "10.20.30.40/16",
|
|
|
|
ServerAddress: "https://foo.example.com",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
SecretRef: &v1.LocalObjectReference{
|
|
|
|
Name: "foo-credentials",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
expectErr: false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
params: map[string]interface{}{
|
|
|
|
"name": "bar-cluster",
|
|
|
|
"client-cidr": "10.20.30.40/16",
|
|
|
|
"server-address": "http://10.20.30.40",
|
|
|
|
"secret": "credentials",
|
|
|
|
},
|
|
|
|
expected: &federationapi.Cluster{
|
2017-02-03 13:41:32 +00:00
|
|
|
ObjectMeta: metav1.ObjectMeta{
|
2017-02-01 00:45:59 +00:00
|
|
|
Name: "bar-cluster",
|
|
|
|
},
|
|
|
|
Spec: federationapi.ClusterSpec{
|
|
|
|
ServerAddressByClientCIDRs: []federationapi.ServerAddressByClientCIDR{
|
|
|
|
{
|
|
|
|
ClientCIDR: "10.20.30.40/16",
|
|
|
|
ServerAddress: "http://10.20.30.40",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
SecretRef: &v1.LocalObjectReference{
|
|
|
|
Name: "credentials",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
expectErr: false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
params: map[string]interface{}{
|
|
|
|
"server-address": "https://10.20.30.40",
|
|
|
|
},
|
|
|
|
expected: nil,
|
|
|
|
expectErr: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
params: map[string]interface{}{
|
|
|
|
"secret": "baz-credentials",
|
|
|
|
},
|
|
|
|
expected: nil,
|
|
|
|
expectErr: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
params: map[string]interface{}{
|
|
|
|
"server-address": "http://foo.example.com",
|
|
|
|
"secret": "foo-credentials",
|
|
|
|
},
|
|
|
|
expected: nil,
|
|
|
|
expectErr: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
params: map[string]interface{}{
|
|
|
|
"name": "foo",
|
|
|
|
"secret": "foo-credentials",
|
|
|
|
},
|
|
|
|
expected: nil,
|
|
|
|
expectErr: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
params: map[string]interface{}{
|
|
|
|
"name": "foo",
|
|
|
|
"client-cidr": "10.20.30.40/16",
|
|
|
|
},
|
|
|
|
expected: nil,
|
|
|
|
expectErr: true,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
generator := ClusterGeneratorV1Beta1{}
|
|
|
|
for i, test := range tests {
|
|
|
|
obj, err := generator.Generate(test.params)
|
|
|
|
if !test.expectErr && err != nil {
|
|
|
|
t.Errorf("[%d] unexpected error: %v", i, err)
|
|
|
|
}
|
|
|
|
if test.expectErr && err != nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if !reflect.DeepEqual(obj.(*federationapi.Cluster), test.expected) {
|
|
|
|
t.Errorf("\n[%d] want:\n%#v\n[%d] got:\n%#v", i, test.expected, i, obj.(*federationapi.Cluster))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|