Make getKubeadmPath() fetch the KUBEADM_PATH env. variable. Panic if it's missing. Don't handle the "--kubeadm-path" flag. Remove the same flag from the BUILD bazel test rule. Don't handle "--kubeadm-cmd-skip" usage of this flag is missing from the code base. Remove usage of "kubeadmCmdSkip" as the flag "--kubeadm-cmd-skip" is never passed.
249 lines
6.6 KiB
Go
249 lines
6.6 KiB
Go
/*
|
|
Copyright 2016 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 kubeadm
|
|
|
|
import "testing"
|
|
|
|
// kubeadmReset executes "kubeadm reset" and restarts kubelet.
|
|
func kubeadmReset() error {
|
|
kubeadmPath := getKubeadmPath()
|
|
_, _, _, err := RunCmd(kubeadmPath, "reset")
|
|
return err
|
|
}
|
|
|
|
func TestCmdJoinConfig(t *testing.T) {
|
|
var initTest = []struct {
|
|
name string
|
|
args string
|
|
expected bool
|
|
}{
|
|
{"config", "--config=foobar", false},
|
|
{"config path", "--config=/does/not/exist/foo/bar", false},
|
|
}
|
|
|
|
kubeadmPath := getKubeadmPath()
|
|
for _, rt := range initTest {
|
|
t.Run(rt.name, func(t *testing.T) {
|
|
_, _, _, actual := RunCmd(kubeadmPath, "join", rt.args, "--ignore-preflight-errors=all")
|
|
if (actual == nil) != rt.expected {
|
|
t.Errorf(
|
|
"failed CmdJoinConfig running 'kubeadm join %s' with an error: %v\n\texpected: %t\n\t actual: %t",
|
|
rt.args,
|
|
actual,
|
|
rt.expected,
|
|
(actual == nil),
|
|
)
|
|
}
|
|
kubeadmReset()
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestCmdJoinDiscoveryFile(t *testing.T) {
|
|
var initTest = []struct {
|
|
name string
|
|
args string
|
|
expected bool
|
|
}{
|
|
{"valid discovery file", "--discovery-file=foobar", false},
|
|
{"invalid discovery file", "--discovery-file=file:wrong", false},
|
|
}
|
|
|
|
kubeadmPath := getKubeadmPath()
|
|
for _, rt := range initTest {
|
|
t.Run(rt.name, func(t *testing.T) {
|
|
_, _, _, actual := RunCmd(kubeadmPath, "join", rt.args, "--ignore-preflight-errors=all")
|
|
if (actual == nil) != rt.expected {
|
|
t.Errorf(
|
|
"failed CmdJoinDiscoveryFile running 'kubeadm join %s' with an error: %v\n\texpected: %t\n\t actual: %t",
|
|
rt.args,
|
|
actual,
|
|
rt.expected,
|
|
(actual == nil),
|
|
)
|
|
}
|
|
kubeadmReset()
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestCmdJoinDiscoveryToken(t *testing.T) {
|
|
var initTest = []struct {
|
|
name string
|
|
args string
|
|
expected bool
|
|
}{
|
|
{"valid discovery token", "--discovery-token=foobar", false},
|
|
{"valid discovery token url", "--discovery-token=token://asdf:asdf", false},
|
|
}
|
|
|
|
kubeadmPath := getKubeadmPath()
|
|
for _, rt := range initTest {
|
|
t.Run(rt.name, func(t *testing.T) {
|
|
_, _, _, actual := RunCmd(kubeadmPath, "join", rt.args, "--ignore-preflight-errors=all")
|
|
if (actual == nil) != rt.expected {
|
|
t.Errorf(
|
|
"failed CmdJoinDiscoveryToken running 'kubeadm join %s' with an error: %v\n\texpected: %t\n\t actual: %t",
|
|
rt.args,
|
|
actual,
|
|
rt.expected,
|
|
(actual == nil),
|
|
)
|
|
}
|
|
kubeadmReset()
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestCmdJoinNodeName(t *testing.T) {
|
|
var initTest = []struct {
|
|
name string
|
|
args string
|
|
expected bool
|
|
}{
|
|
{"valid node name", "--node-name=foobar", false},
|
|
}
|
|
|
|
kubeadmPath := getKubeadmPath()
|
|
for _, rt := range initTest {
|
|
t.Run(rt.name, func(t *testing.T) {
|
|
_, _, _, actual := RunCmd(kubeadmPath, "join", rt.args, "--ignore-preflight-errors=all")
|
|
if (actual == nil) != rt.expected {
|
|
t.Errorf(
|
|
"failed CmdJoinNodeName running 'kubeadm join %s' with an error: %v\n\texpected: %t\n\t actual: %t",
|
|
rt.args,
|
|
actual,
|
|
rt.expected,
|
|
(actual == nil),
|
|
)
|
|
}
|
|
kubeadmReset()
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestCmdJoinTLSBootstrapToken(t *testing.T) {
|
|
var initTest = []struct {
|
|
name string
|
|
args string
|
|
expected bool
|
|
}{
|
|
{"valid bootstrap token", "--tls-bootstrap-token=foobar", false},
|
|
{"valid bootstrap token url", "--tls-bootstrap-token=token://asdf:asdf", false},
|
|
}
|
|
|
|
kubeadmPath := getKubeadmPath()
|
|
for _, rt := range initTest {
|
|
t.Run(rt.name, func(t *testing.T) {
|
|
_, _, _, actual := RunCmd(kubeadmPath, "join", rt.args, "--ignore-preflight-errors=all")
|
|
if (actual == nil) != rt.expected {
|
|
t.Errorf(
|
|
"failed CmdJoinTLSBootstrapToken running 'kubeadm join %s' with an error: %v\n\texpected: %t\n\t actual: %t",
|
|
rt.args,
|
|
actual,
|
|
rt.expected,
|
|
(actual == nil),
|
|
)
|
|
}
|
|
kubeadmReset()
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestCmdJoinToken(t *testing.T) {
|
|
var initTest = []struct {
|
|
name string
|
|
args string
|
|
expected bool
|
|
}{
|
|
{"valid token", "--token=foobar", false},
|
|
{"valid token url", "--token=token://asdf:asdf", false},
|
|
}
|
|
|
|
kubeadmPath := getKubeadmPath()
|
|
for _, rt := range initTest {
|
|
t.Run(rt.name, func(t *testing.T) {
|
|
_, _, _, actual := RunCmd(kubeadmPath, "join", rt.args, "--ignore-preflight-errors=all")
|
|
if (actual == nil) != rt.expected {
|
|
t.Errorf(
|
|
"failed CmdJoinToken running 'kubeadm join %s' with an error: %v\n\texpected: %t\n\t actual: %t",
|
|
rt.args,
|
|
actual,
|
|
rt.expected,
|
|
(actual == nil),
|
|
)
|
|
}
|
|
kubeadmReset()
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestCmdJoinBadArgs(t *testing.T) {
|
|
kubeadmPath := getKubeadmPath()
|
|
var initTest = []struct {
|
|
name string
|
|
args string
|
|
expected bool
|
|
}{
|
|
{"discovery-token and discovery-file can't both be set", "--discovery-token=abcdef.1234567890123456 --discovery-file=file:///tmp/foo.bar", false}, // DiscoveryToken, DiscoveryFile can't both be set
|
|
{"discovery-token or discovery-file must be set", "", false}, // DiscoveryToken or DiscoveryFile must be set
|
|
}
|
|
|
|
for _, rt := range initTest {
|
|
t.Run(rt.name, func(t *testing.T) {
|
|
_, _, _, actual := RunCmd(kubeadmPath, "join", rt.args, "--ignore-preflight-errors=all")
|
|
if (actual == nil) != rt.expected {
|
|
t.Errorf(
|
|
"failed CmdJoinBadArgs 'kubeadm join %s' with an error: %v\n\texpected: %t\n\t actual: %t",
|
|
rt.args,
|
|
actual,
|
|
rt.expected,
|
|
(actual == nil),
|
|
)
|
|
}
|
|
kubeadmReset()
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestCmdJoinArgsMixed(t *testing.T) {
|
|
var initTest = []struct {
|
|
name string
|
|
args string
|
|
expected bool
|
|
}{
|
|
{"discovery-token and config", "--discovery-token=abcdef.1234567890abcdef --config=/etc/kubernetes/kubeadm.config", false},
|
|
}
|
|
|
|
kubeadmPath := getKubeadmPath()
|
|
for _, rt := range initTest {
|
|
t.Run(rt.name, func(t *testing.T) {
|
|
_, _, _, actual := RunCmd(kubeadmPath, "join", rt.args, "--ignore-preflight-errors=all")
|
|
if (actual == nil) != rt.expected {
|
|
t.Errorf(
|
|
"failed CmdJoinArgsMixed running 'kubeadm join %s' with an error: %v\n\texpected: %t\n\t actual: %t",
|
|
rt.args,
|
|
actual,
|
|
rt.expected,
|
|
(actual == nil),
|
|
)
|
|
}
|
|
kubeadmReset()
|
|
})
|
|
}
|
|
}
|