
This integration test allows us to detect if a given feature gate will panic kubeadm. This builds on the assumption that a golang panic makes the process exit with the code 2. These tests are not trying to check if the init process succeeds or not, their only purpose is to ensure that the exit code of the `kubeadm init` invocation is not 2, thus, reflecting a golang panic. Some refactors had to be made to the test code, so we return the exit code along with stdout and stderr.
139 lines
3.8 KiB
Go
139 lines
3.8 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 kubeadm
|
|
|
|
import (
|
|
"encoding/json"
|
|
"regexp"
|
|
"testing"
|
|
|
|
"sigs.k8s.io/yaml"
|
|
)
|
|
|
|
const (
|
|
ShortExpectedRegex = "^v.+\n$"
|
|
NormalExpectedRegex = "^kubeadm version: &version\\.Info{Major:\".+\", Minor:\".+\", GitVersion:\".+\", GitCommit:\".+\", GitTreeState:\".+\", BuildDate:\".+\", GoVersion:\".+\", Compiler:\".+\", Platform:\".+\"}\n$"
|
|
)
|
|
|
|
var (
|
|
VersionInfo = []string{"major", "minor", "gitVersion", "gitCommit", "gitTreeState", "buildDate", "goVersion", "compiler", "platform"}
|
|
)
|
|
|
|
func TestCmdVersion(t *testing.T) {
|
|
if *kubeadmCmdSkip {
|
|
t.Log("kubeadm cmd tests being skipped")
|
|
t.Skip()
|
|
}
|
|
|
|
var versionTest = []struct {
|
|
name string
|
|
args string
|
|
regex string
|
|
expected bool
|
|
}{
|
|
{"invalid output option", "--output=valid", "", false},
|
|
{"short output", "--output=short", ShortExpectedRegex, true},
|
|
{"default output", "", NormalExpectedRegex, true},
|
|
}
|
|
|
|
kubeadmPath := getKubeadmPath()
|
|
for _, rt := range versionTest {
|
|
t.Run(rt.name, func(t *testing.T) {
|
|
stdout, _, _, actual := RunCmd(kubeadmPath, "version", rt.args)
|
|
if (actual == nil) != rt.expected {
|
|
t.Errorf(
|
|
"failed CmdVersion running 'kubeadm version %s' with an error: %v\n\texpected: %t\n\t actual: %t",
|
|
rt.args,
|
|
actual,
|
|
rt.expected,
|
|
(actual == nil),
|
|
)
|
|
}
|
|
|
|
if rt.expected {
|
|
matched, err := regexp.MatchString(rt.regex, stdout)
|
|
if err != nil {
|
|
t.Fatalf("encountered an error while trying to match 'kubeadm version %s' stdout: %v", rt.args, err)
|
|
}
|
|
if !matched {
|
|
t.Errorf("'kubeadm version %s' stdout did not match expected regex; wanted: [%q], got: [%s]", rt.args, rt.regex, stdout)
|
|
}
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestCmdVersionOutputJsonOrYaml(t *testing.T) {
|
|
if *kubeadmCmdSkip {
|
|
t.Log("kubeadm cmd tests being skipped")
|
|
t.Skip()
|
|
}
|
|
|
|
var versionTest = []struct {
|
|
name string
|
|
args string
|
|
format string
|
|
expected bool
|
|
}{
|
|
{"json output", "--output=json", "json", true},
|
|
{"yaml output", "--output=yaml", "yaml", true},
|
|
}
|
|
|
|
kubeadmPath := getKubeadmPath()
|
|
for _, rt := range versionTest {
|
|
t.Run(rt.name, func(t *testing.T) {
|
|
stdout, _, _, actual := RunCmd(kubeadmPath, "version", rt.args)
|
|
if (actual == nil) != rt.expected {
|
|
t.Errorf(
|
|
"failed CmdVersion running 'kubeadm version %s' with an error: %v\n\texpected: %t\n\t actual: %t",
|
|
rt.args,
|
|
actual,
|
|
rt.expected,
|
|
(actual == nil),
|
|
)
|
|
}
|
|
|
|
if rt.expected {
|
|
var obj interface{}
|
|
switch rt.format {
|
|
case "json":
|
|
err := json.Unmarshal([]byte(stdout), &obj)
|
|
if err != nil {
|
|
t.Errorf("failed to parse json from 'kubeadm version %s': %s", rt.args, err)
|
|
}
|
|
case "yaml":
|
|
err := yaml.Unmarshal([]byte(stdout), &obj)
|
|
if err != nil {
|
|
t.Errorf("failed to parse yaml from 'kubeadm version %s': %s", rt.args, err)
|
|
}
|
|
}
|
|
|
|
m := obj.(map[string]interface{})
|
|
if m["clientVersion"] == nil {
|
|
t.Errorf("failed to get the information of clientVersion from 'kubeadm version %s'", rt.args)
|
|
}
|
|
info := m["clientVersion"].(map[string]interface{})
|
|
for _, key := range VersionInfo {
|
|
if len(info[key].(string)) == 0 {
|
|
t.Errorf("failed to get the information of %s from 'kubeadm version %s'", key, rt.args)
|
|
}
|
|
}
|
|
}
|
|
})
|
|
}
|
|
}
|