2020-10-15 10:48:41 -07:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2021-11-21 07:02:51 -08:00
|
|
|
"path/filepath"
|
2020-10-15 10:48:41 -07:00
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
type kubectlArgs struct {
|
2021-11-21 07:02:51 -08:00
|
|
|
kubectlExists bool
|
|
|
|
kubectlErr bool
|
|
|
|
kubeconfig string
|
|
|
|
parseKubeConfig bool
|
|
|
|
template string
|
|
|
|
displayError bool
|
|
|
|
kubectlOutContext string
|
|
|
|
kubectlOutNamespace string
|
|
|
|
kubectlOutUser string
|
|
|
|
kubectlOutCluster string
|
|
|
|
files map[string]string
|
2020-10-15 10:48:41 -07:00
|
|
|
}
|
|
|
|
|
2021-11-21 07:02:51 -08:00
|
|
|
const testKubectlAllInfoTemplate = "{{.Context}} :: {{.Namespace}} :: {{.User}} :: {{.Cluster}}"
|
|
|
|
|
2020-10-15 10:48:41 -07:00
|
|
|
func bootStrapKubectlTest(args *kubectlArgs) *kubectl {
|
|
|
|
env := new(MockedEnvironment)
|
2021-02-10 18:23:00 -08:00
|
|
|
env.On("hasCommand", "kubectl").Return(args.kubectlExists)
|
2021-11-21 07:02:51 -08:00
|
|
|
kubectlOut := args.kubectlOutContext + "," + args.kubectlOutNamespace + "," + args.kubectlOutUser + "," + args.kubectlOutCluster
|
2021-05-21 11:01:08 -07:00
|
|
|
var kubectlErr error
|
2021-02-10 18:23:00 -08:00
|
|
|
if args.kubectlErr {
|
|
|
|
kubectlErr = &commandError{
|
|
|
|
err: "oops",
|
|
|
|
exitCode: 1,
|
|
|
|
}
|
|
|
|
}
|
2021-11-21 07:02:51 -08:00
|
|
|
env.On("runCommand", "kubectl",
|
|
|
|
[]string{"config", "view", "--minify", "--output", "jsonpath={..current-context},{..namespace},{..context.user},{..context.cluster}"}).Return(kubectlOut, kubectlErr)
|
|
|
|
|
|
|
|
env.On("getenv", "KUBECONFIG").Return(args.kubeconfig)
|
|
|
|
for path, content := range args.files {
|
|
|
|
env.On("getFileContent", path).Return(content)
|
|
|
|
}
|
|
|
|
env.On("homeDir", nil).Return("testhome")
|
|
|
|
|
2020-10-15 10:48:41 -07:00
|
|
|
k := &kubectl{
|
2021-02-10 18:23:00 -08:00
|
|
|
env: env,
|
2021-11-26 01:37:33 -08:00
|
|
|
props: map[Property]interface{}{
|
|
|
|
SegmentTemplate: args.template,
|
|
|
|
DisplayError: args.displayError,
|
2021-11-21 07:02:51 -08:00
|
|
|
ParseKubeConfig: args.parseKubeConfig,
|
2021-02-10 18:23:00 -08:00
|
|
|
},
|
2020-10-15 10:48:41 -07:00
|
|
|
}
|
|
|
|
return k
|
|
|
|
}
|
|
|
|
|
2021-02-10 18:23:00 -08:00
|
|
|
func TestKubectlSegment(t *testing.T) {
|
|
|
|
standardTemplate := "{{.Context}}{{if .Namespace}} :: {{.Namespace}}{{end}}"
|
2021-11-21 07:02:51 -08:00
|
|
|
lsep := string(filepath.ListSeparator)
|
|
|
|
|
2021-02-10 18:23:00 -08:00
|
|
|
cases := []struct {
|
|
|
|
Case string
|
|
|
|
Template string
|
2021-02-12 12:39:20 -08:00
|
|
|
DisplayError bool
|
2021-02-10 18:23:00 -08:00
|
|
|
KubectlExists bool
|
2021-11-21 07:02:51 -08:00
|
|
|
Kubeconfig string
|
|
|
|
ParseKubeConfig bool
|
2021-02-10 18:23:00 -08:00
|
|
|
Context string
|
|
|
|
Namespace string
|
2021-11-21 07:02:51 -08:00
|
|
|
User string
|
|
|
|
Cluster string
|
2021-02-10 18:23:00 -08:00
|
|
|
KubectlErr bool
|
|
|
|
ExpectedEnabled bool
|
|
|
|
ExpectedString string
|
2021-11-21 07:02:51 -08:00
|
|
|
Files map[string]string
|
2021-02-10 18:23:00 -08:00
|
|
|
}{
|
|
|
|
{Case: "disabled", Template: standardTemplate, KubectlExists: false, Context: "aaa", Namespace: "bbb", ExpectedString: "", ExpectedEnabled: false},
|
|
|
|
{Case: "normal", Template: standardTemplate, KubectlExists: true, Context: "aaa", Namespace: "bbb", ExpectedString: "aaa :: bbb", ExpectedEnabled: true},
|
2021-11-21 07:02:51 -08:00
|
|
|
{Case: "all information", Template: testKubectlAllInfoTemplate, KubectlExists: true, Context: "aaa", Namespace: "bbb", User: "ccc", Cluster: "ddd",
|
|
|
|
ExpectedString: "aaa :: bbb :: ccc :: ddd", ExpectedEnabled: true},
|
2021-02-10 18:23:00 -08:00
|
|
|
{Case: "no namespace", Template: standardTemplate, KubectlExists: true, Context: "aaa", Namespace: "", ExpectedString: "aaa", ExpectedEnabled: true},
|
2021-02-12 12:39:20 -08:00
|
|
|
{Case: "kubectl error", Template: standardTemplate, DisplayError: true, KubectlExists: true, Context: "aaa", Namespace: "bbb", KubectlErr: true,
|
2021-02-10 18:23:00 -08:00
|
|
|
ExpectedString: "KUBECTL ERR :: KUBECTL ERR", ExpectedEnabled: true},
|
2021-11-21 07:02:51 -08:00
|
|
|
{Case: "kubectl error hidden", Template: standardTemplate, DisplayError: false, KubectlExists: true, Context: "aaa", Namespace: "bbb", KubectlErr: true, ExpectedEnabled: false},
|
|
|
|
{Case: "kubeconfig home", Template: testKubectlAllInfoTemplate, ParseKubeConfig: true, Files: testKubeConfigFiles, ExpectedString: "aaa :: bbb :: ccc :: ddd",
|
|
|
|
ExpectedEnabled: true},
|
|
|
|
{Case: "kubeconfig multiple current marker first", Template: testKubectlAllInfoTemplate, ParseKubeConfig: true,
|
|
|
|
Kubeconfig: "" + lsep + "currentcontextmarker" + lsep + "contextdefinition" + lsep + "contextredefinition",
|
|
|
|
Files: testKubeConfigFiles, ExpectedString: "ctx :: ns :: usr :: cl", ExpectedEnabled: true},
|
|
|
|
{Case: "kubeconfig multiple context first", Template: testKubectlAllInfoTemplate, ParseKubeConfig: true,
|
|
|
|
Kubeconfig: "contextdefinition" + lsep + "contextredefinition" + lsep + "currentcontextmarker" + lsep,
|
|
|
|
Files: testKubeConfigFiles, ExpectedString: "ctx :: ns :: usr :: cl", ExpectedEnabled: true},
|
|
|
|
{Case: "kubeconfig error hidden", Template: testKubectlAllInfoTemplate, ParseKubeConfig: true, Kubeconfig: "invalid", Files: testKubeConfigFiles, ExpectedEnabled: false},
|
|
|
|
{Case: "kubeconfig error", Template: testKubectlAllInfoTemplate, ParseKubeConfig: true,
|
|
|
|
Kubeconfig: "invalid", Files: testKubeConfigFiles, DisplayError: true,
|
|
|
|
ExpectedString: "KUBECONFIG ERR :: KUBECONFIG ERR :: KUBECONFIG ERR :: KUBECONFIG ERR", ExpectedEnabled: true},
|
|
|
|
{Case: "kubeconfig incomplete", Template: testKubectlAllInfoTemplate, ParseKubeConfig: true,
|
|
|
|
Kubeconfig: "currentcontextmarker" + lsep + "contextdefinitionincomplete",
|
|
|
|
Files: testKubeConfigFiles, ExpectedString: "ctx :: :: :: ", ExpectedEnabled: true},
|
2020-10-15 10:48:41 -07:00
|
|
|
}
|
2020-11-02 09:32:40 -08:00
|
|
|
|
2021-02-10 18:23:00 -08:00
|
|
|
for _, tc := range cases {
|
|
|
|
args := &kubectlArgs{
|
2021-11-21 07:02:51 -08:00
|
|
|
kubectlExists: tc.KubectlExists,
|
|
|
|
template: tc.Template,
|
|
|
|
displayError: tc.DisplayError,
|
|
|
|
kubectlOutContext: tc.Context,
|
|
|
|
kubectlOutNamespace: tc.Namespace,
|
|
|
|
kubectlOutUser: tc.User,
|
|
|
|
kubectlOutCluster: tc.Cluster,
|
|
|
|
kubectlErr: tc.KubectlErr,
|
|
|
|
parseKubeConfig: tc.ParseKubeConfig,
|
|
|
|
files: tc.Files,
|
|
|
|
kubeconfig: tc.Kubeconfig,
|
2021-02-10 18:23:00 -08:00
|
|
|
}
|
|
|
|
kubectl := bootStrapKubectlTest(args)
|
|
|
|
assert.Equal(t, tc.ExpectedEnabled, kubectl.enabled(), tc.Case)
|
2021-11-21 07:02:51 -08:00
|
|
|
if tc.ExpectedEnabled {
|
|
|
|
assert.Equal(t, tc.ExpectedString, kubectl.string(), tc.Case)
|
|
|
|
}
|
2020-11-02 09:32:40 -08:00
|
|
|
}
|
|
|
|
}
|
2021-11-21 07:02:51 -08:00
|
|
|
|
|
|
|
var testKubeConfigFiles = map[string]string{
|
|
|
|
filepath.Join("testhome", ".kube/config"): `
|
|
|
|
apiVersion: v1
|
|
|
|
contexts:
|
|
|
|
- context:
|
|
|
|
cluster: ddd
|
|
|
|
user: ccc
|
|
|
|
namespace: bbb
|
|
|
|
name: aaa
|
|
|
|
current-context: aaa
|
|
|
|
`,
|
|
|
|
"contextdefinition": `
|
|
|
|
apiVersion: v1
|
|
|
|
contexts:
|
|
|
|
- context:
|
|
|
|
cluster: cl
|
|
|
|
user: usr
|
|
|
|
namespace: ns
|
|
|
|
name: ctx
|
|
|
|
`,
|
|
|
|
"currentcontextmarker": `
|
|
|
|
apiVersion: v1
|
|
|
|
current-context: ctx
|
|
|
|
`,
|
|
|
|
"invalid": "this is not yaml",
|
|
|
|
"contextdefinitionincomplete": `
|
|
|
|
apiVersion: v1
|
|
|
|
contexts:
|
|
|
|
- name: ctx
|
|
|
|
`,
|
|
|
|
"contextredefinition": `
|
|
|
|
apiVersion: v1
|
|
|
|
contexts:
|
|
|
|
- context:
|
|
|
|
cluster: wrongcl
|
|
|
|
user: wrongu
|
|
|
|
namespace: wrongns
|
|
|
|
name: ctx
|
|
|
|
`,
|
|
|
|
}
|