mirror of
https://github.com/kubernetes/kubectl.git
synced 2026-04-21 22:26:57 -04:00
to match their kubectl config subcommand names and reflect that they are used for setting values, not just creating. Deprecated NewCmdConfigSetAuthInfo in favor of NewCmdConfigSetCredentials. Did some minor refactoring of one of the complete functions to eliminate an unused argument and not wrap returned errors that do not add detail. Kubernetes-commit: 48007fc32bb473d1d0d7d7c24b9daa2157e433d1
147 lines
5.1 KiB
Go
147 lines
5.1 KiB
Go
/*
|
|
Copyright 2017 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 config
|
|
|
|
import (
|
|
"bytes"
|
|
"io/ioutil"
|
|
"os"
|
|
"testing"
|
|
|
|
"k8s.io/client-go/tools/clientcmd"
|
|
clientcmdapi "k8s.io/client-go/tools/clientcmd/api"
|
|
)
|
|
|
|
type setContextTest struct {
|
|
description string
|
|
testContext string // name of the context being modified
|
|
config clientcmdapi.Config //initiate kubectl config
|
|
args []string //kubectl set-context args
|
|
flags []string //kubectl set-context flags
|
|
expected string //expectd out
|
|
expectedConfig clientcmdapi.Config //expect kubectl config
|
|
}
|
|
|
|
func TestCreateContext(t *testing.T) {
|
|
conf := clientcmdapi.Config{}
|
|
test := setContextTest{
|
|
testContext: "shaker-context",
|
|
description: "Testing for create a new context",
|
|
config: conf,
|
|
args: []string{"shaker-context"},
|
|
flags: []string{
|
|
"--cluster=cluster_nickname",
|
|
"--user=user_nickname",
|
|
"--namespace=namespace",
|
|
},
|
|
expected: `Context "shaker-context" created.` + "\n",
|
|
expectedConfig: clientcmdapi.Config{
|
|
Contexts: map[string]*clientcmdapi.Context{
|
|
"shaker-context": {AuthInfo: "user_nickname", Cluster: "cluster_nickname", Namespace: "namespace"}},
|
|
},
|
|
}
|
|
test.run(t)
|
|
}
|
|
func TestModifyContext(t *testing.T) {
|
|
conf := clientcmdapi.Config{
|
|
Contexts: map[string]*clientcmdapi.Context{
|
|
"shaker-context": {AuthInfo: "blue-user", Cluster: "big-cluster", Namespace: "saw-ns"},
|
|
"not-this": {AuthInfo: "blue-user", Cluster: "big-cluster", Namespace: "saw-ns"}}}
|
|
test := setContextTest{
|
|
testContext: "shaker-context",
|
|
description: "Testing for modify a already exist context",
|
|
config: conf,
|
|
args: []string{"shaker-context"},
|
|
flags: []string{
|
|
"--cluster=cluster_nickname",
|
|
"--user=user_nickname",
|
|
"--namespace=namespace",
|
|
},
|
|
expected: `Context "shaker-context" modified.` + "\n",
|
|
expectedConfig: clientcmdapi.Config{
|
|
Contexts: map[string]*clientcmdapi.Context{
|
|
"shaker-context": {AuthInfo: "user_nickname", Cluster: "cluster_nickname", Namespace: "namespace"},
|
|
"not-this": {AuthInfo: "blue-user", Cluster: "big-cluster", Namespace: "saw-ns"}}},
|
|
}
|
|
test.run(t)
|
|
}
|
|
|
|
func TestModifyCurrentContext(t *testing.T) {
|
|
conf := clientcmdapi.Config{
|
|
CurrentContext: "shaker-context",
|
|
Contexts: map[string]*clientcmdapi.Context{
|
|
"shaker-context": {AuthInfo: "blue-user", Cluster: "big-cluster", Namespace: "saw-ns"},
|
|
"not-this": {AuthInfo: "blue-user", Cluster: "big-cluster", Namespace: "saw-ns"}}}
|
|
test := setContextTest{
|
|
testContext: "shaker-context",
|
|
description: "Testing for modify a current context",
|
|
config: conf,
|
|
args: []string{},
|
|
flags: []string{
|
|
"--current",
|
|
"--cluster=cluster_nickname",
|
|
"--user=user_nickname",
|
|
"--namespace=namespace",
|
|
},
|
|
expected: `Context "shaker-context" modified.` + "\n",
|
|
expectedConfig: clientcmdapi.Config{
|
|
Contexts: map[string]*clientcmdapi.Context{
|
|
"shaker-context": {AuthInfo: "user_nickname", Cluster: "cluster_nickname", Namespace: "namespace"},
|
|
"not-this": {AuthInfo: "blue-user", Cluster: "big-cluster", Namespace: "saw-ns"}}},
|
|
}
|
|
test.run(t)
|
|
}
|
|
|
|
func (test setContextTest) run(t *testing.T) {
|
|
fakeKubeFile, err := ioutil.TempFile(os.TempDir(), "")
|
|
if err != nil {
|
|
t.Fatalf("unexpected error: %v", err)
|
|
}
|
|
defer os.Remove(fakeKubeFile.Name())
|
|
err = clientcmd.WriteToFile(test.config, fakeKubeFile.Name())
|
|
if err != nil {
|
|
t.Fatalf("unexpected error: %v", err)
|
|
}
|
|
|
|
pathOptions := clientcmd.NewDefaultPathOptions()
|
|
pathOptions.GlobalFile = fakeKubeFile.Name()
|
|
pathOptions.EnvVar = ""
|
|
buf := bytes.NewBuffer([]byte{})
|
|
cmd := NewCmdConfigSetContext(buf, pathOptions)
|
|
cmd.SetArgs(test.args)
|
|
cmd.Flags().Parse(test.flags)
|
|
if err := cmd.Execute(); err != nil {
|
|
t.Fatalf("unexpected error executing command: %v,kubectl set-context args: %v,flags: %v", err, test.args, test.flags)
|
|
}
|
|
config, err := clientcmd.LoadFromFile(fakeKubeFile.Name())
|
|
if err != nil {
|
|
t.Fatalf("unexpected error loading kubeconfig file: %v", err)
|
|
}
|
|
if len(test.expected) != 0 {
|
|
if buf.String() != test.expected {
|
|
t.Errorf("Fail in %q:\n expected %v\n but got %v\n", test.description, test.expected, buf.String())
|
|
}
|
|
}
|
|
if test.expectedConfig.Contexts != nil {
|
|
expectContext := test.expectedConfig.Contexts[test.testContext]
|
|
actualContext := config.Contexts[test.testContext]
|
|
if expectContext.AuthInfo != actualContext.AuthInfo || expectContext.Cluster != actualContext.Cluster ||
|
|
expectContext.Namespace != actualContext.Namespace {
|
|
t.Errorf("Fail in %q:\n expected Context %v\n but found %v in kubeconfig\n", test.description, expectContext, actualContext)
|
|
}
|
|
}
|
|
}
|