mirror of
https://github.com/JanDeDobbeleer/oh-my-posh.git
synced 2024-11-12 14:04:05 -08:00
7537f6dc70
Segment displays the current Kubernetes context name when available.
43 lines
881 B
Go
Executable file
43 lines
881 B
Go
Executable file
package main
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
type kubectlArgs struct {
|
|
enabled bool
|
|
contextName string
|
|
}
|
|
|
|
func bootStrapKubectlTest(args *kubectlArgs) *kubectl {
|
|
env := new(MockedEnvironment)
|
|
env.On("hasCommand", "kubectl").Return(args.enabled)
|
|
env.On("runCommand", "kubectl", []string{"config", "current-context"}).Return(args.contextName)
|
|
k := &kubectl{
|
|
env: env,
|
|
props: &properties{},
|
|
}
|
|
return k
|
|
}
|
|
|
|
func TestKubectlWriterDisabled(t *testing.T) {
|
|
args := &kubectlArgs{
|
|
enabled: false,
|
|
}
|
|
kubectl := bootStrapKubectlTest(args)
|
|
assert.False(t, kubectl.enabled())
|
|
}
|
|
|
|
func TestKubectlEnabled(t *testing.T) {
|
|
expected := "context-name"
|
|
args := &kubectlArgs{
|
|
enabled: true,
|
|
contextName: expected,
|
|
}
|
|
kubectl := bootStrapKubectlTest(args)
|
|
assert.True(t, kubectl.enabled())
|
|
assert.Equal(t, expected, kubectl.string())
|
|
}
|