Skip to content

Commit

Permalink
Merge pull request #9883 from hs0210/work
Browse files Browse the repository at this point in the history
Add unit test for pkg/apis/kops/model/features.go
  • Loading branch information
k8s-ci-robot authored Sep 13, 2020
2 parents 58092b5 + 9d80c41 commit 04b9f41
Show file tree
Hide file tree
Showing 2 changed files with 87 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pkg/apis/kops/model/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@ go_library(

go_test(
name = "go_default_test",
srcs = ["utils_test.go"],
srcs = [
"features_test.go",
"utils_test.go",
],
embed = [":go_default_library"],
deps = ["//pkg/apis/kops:go_default_library"],
)
83 changes: 83 additions & 0 deletions pkg/apis/kops/model/features_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
/*
Copyright 2020 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 model

import (
"reflect"
"testing"

"k8s.io/kops/pkg/apis/kops"
)

func TestUseCiliumEtcd(t *testing.T) {
for _, tc := range []struct {
cluster *kops.Cluster
expected bool
}{
{
cluster: &kops.Cluster{
Spec: kops.ClusterSpec{
EtcdClusters: []kops.EtcdClusterSpec{
{
Name: "cilium",
},
},
Networking: &kops.NetworkingSpec{
Cilium: &kops.CiliumNetworkingSpec{
Version: "v1.8",
},
},
},
},
expected: true,
},
{
cluster: &kops.Cluster{
Spec: kops.ClusterSpec{
EtcdClusters: []kops.EtcdClusterSpec{
{
Name: "cilium",
},
},
Networking: &kops.NetworkingSpec{},
},
},
expected: false,
},
{
cluster: &kops.Cluster{
Spec: kops.ClusterSpec{
EtcdClusters: []kops.EtcdClusterSpec{
{
Name: "calico",
},
},
Networking: &kops.NetworkingSpec{
Cilium: &kops.CiliumNetworkingSpec{
Version: "v1.8",
},
},
},
},
expected: false,
},
} {
if !reflect.DeepEqual(tc.expected, UseCiliumEtcd(tc.cluster)) {
t.Errorf("expected %v, but got %v", tc.expected, UseCiliumEtcd(tc.cluster))
}
}
}

0 comments on commit 04b9f41

Please sign in to comment.