64 lines
1.8 KiB
Go
64 lines
1.8 KiB
Go
/*
|
|
Copyright 2016 The Kubernetes Authors 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 addons
|
|
|
|
import (
|
|
"strings"
|
|
"testing"
|
|
)
|
|
|
|
func TestKubectlCommand(t *testing.T) {
|
|
tests := []struct {
|
|
description string
|
|
files []string
|
|
enable bool
|
|
expected string
|
|
}{
|
|
{
|
|
description: "enable an addon",
|
|
files: []string{"a", "b"},
|
|
enable: true,
|
|
expected: "sudo KUBECONFIG=/var/lib/minikube/kubeconfig /var/lib/minikube/binaries/v1.17.0/kubectl apply -f a -f b",
|
|
}, {
|
|
description: "disable an addon",
|
|
files: []string{"a", "b"},
|
|
enable: false,
|
|
expected: "sudo KUBECONFIG=/var/lib/minikube/kubeconfig /var/lib/minikube/binaries/v1.17.0/kubectl delete -f a -f b",
|
|
},
|
|
}
|
|
|
|
for _, test := range tests {
|
|
t.Run(test.description, func(t *testing.T) {
|
|
originalK8sVersion := k8sVersion
|
|
defer func() { k8sVersion = originalK8sVersion }()
|
|
k8sVersion = func(_ string) (string, error) {
|
|
return "v1.17.0", nil
|
|
}
|
|
|
|
command, err := kubectlCommand("", test.files, test.enable)
|
|
if err != nil {
|
|
t.Fatalf("error getting kubectl command: %v", err)
|
|
}
|
|
actual := strings.Join(command.Args, " ")
|
|
|
|
if actual != test.expected {
|
|
t.Fatalf("expected does not match actual\nExpected: %s\nActual: %s", test.expected, actual)
|
|
}
|
|
})
|
|
}
|
|
}
|