Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
k3s
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
k3s
Commits
56c1baae
Commit
56c1baae
authored
Mar 31, 2017
by
zhengjiajin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
unit test for kubectl config use-context
parent
58d2d9ad
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
105 additions
and
0 deletions
+105
-0
BUILD
pkg/kubectl/cmd/config/BUILD
+1
-0
use_context_test.go
pkg/kubectl/cmd/config/use_context_test.go
+104
-0
No files found.
pkg/kubectl/cmd/config/BUILD
View file @
56c1baae
...
@@ -56,6 +56,7 @@ go_test(
...
@@ -56,6 +56,7 @@ go_test(
"get_contexts_test.go",
"get_contexts_test.go",
"navigation_step_parser_test.go",
"navigation_step_parser_test.go",
"unset_test.go",
"unset_test.go",
"use_context_test.go",
],
],
library = ":go_default_library",
library = ":go_default_library",
tags = ["automanaged"],
tags = ["automanaged"],
...
...
pkg/kubectl/cmd/config/use_context_test.go
0 → 100644
View file @
56c1baae
/*
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
useContextTest
struct
{
description
string
config
clientcmdapi
.
Config
//initiate kubectl config
args
[]
string
//kubectl config use-context args
expected
string
//expect out
expectedConfig
clientcmdapi
.
Config
//expect kubectl config
}
func
TestUseContext
(
t
*
testing
.
T
)
{
conf
:=
clientcmdapi
.
Config
{
Kind
:
"Config"
,
APIVersion
:
"v1"
,
Clusters
:
map
[
string
]
*
clientcmdapi
.
Cluster
{
"minikube"
:
{
Server
:
"https://192.168.99.100:8443"
},
"my-cluster"
:
{
Server
:
"https://192.168.0.1:3434"
},
},
Contexts
:
map
[
string
]
*
clientcmdapi
.
Context
{
"minikube"
:
{
AuthInfo
:
"minikube"
,
Cluster
:
"minikube"
},
"my-cluster"
:
{
AuthInfo
:
"mu-cluster"
,
Cluster
:
"my-cluster"
},
},
CurrentContext
:
"minikube"
,
}
test
:=
useContextTest
{
description
:
"Testing for kubectl config use-context"
,
config
:
conf
,
args
:
[]
string
{
"my-cluster"
},
expected
:
`Switched to context "my-cluster".`
+
"
\n
"
,
expectedConfig
:
clientcmdapi
.
Config
{
Kind
:
"Config"
,
APIVersion
:
"v1"
,
Clusters
:
map
[
string
]
*
clientcmdapi
.
Cluster
{
"minikube"
:
{
Server
:
"https://192.168.99.100:8443"
},
"my-cluster"
:
{
Server
:
"https://192.168.0.1:3434"
},
},
Contexts
:
map
[
string
]
*
clientcmdapi
.
Context
{
"minikube"
:
{
AuthInfo
:
"minikube"
,
Cluster
:
"minikube"
},
"my-cluster"
:
{
AuthInfo
:
"mu-cluster"
,
Cluster
:
"my-cluster"
},
},
CurrentContext
:
"my-cluster"
,
},
}
test
.
run
(
t
)
}
func
(
test
useContextTest
)
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
:=
NewCmdConfigUseContext
(
buf
,
pathOptions
)
cmd
.
SetArgs
(
test
.
args
)
if
err
:=
cmd
.
Execute
();
err
!=
nil
{
t
.
Fatalf
(
"unexpected error executing command: %v,kubectl config use-context args: %v"
,
err
,
test
.
args
)
}
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
(
"Failed in :%q
\n
expected %v
\n
, but got %v
\n
"
,
test
.
description
,
test
.
expected
,
buf
.
String
())
}
}
if
test
.
expectedConfig
.
CurrentContext
!=
config
.
CurrentContext
{
t
.
Errorf
(
"Failed in :%q
\n
expected config %v, but found %v
\n
in kubeconfig
\n
"
,
test
.
description
,
test
.
expectedConfig
,
config
)
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment