mirror of
https://github.com/optim-enterprises-bv/kubernetes.git
synced 2025-11-06 21:28:16 +00:00
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.
82 lines
2.6 KiB
Go
82 lines
2.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 (
|
|
"bytes"
|
|
"os/exec"
|
|
"testing"
|
|
|
|
"github.com/pkg/errors"
|
|
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
// Forked from test/e2e/framework because the e2e framework is quite bloated
|
|
// for our purposes here, and modified to remove undesired logging.
|
|
|
|
func runCmdNoWrap(command string, args ...string) (string, string, int, error) {
|
|
var bout, berr bytes.Buffer
|
|
cmd := exec.Command(command, args...)
|
|
cmd.Stdout = &bout
|
|
cmd.Stderr = &berr
|
|
err := cmd.Run()
|
|
stdout, stderr := bout.String(), berr.String()
|
|
return stdout, stderr, cmd.ProcessState.ExitCode(), err
|
|
}
|
|
|
|
// RunCmd is a utility function for kubeadm testing that executes a specified command
|
|
func RunCmd(command string, args ...string) (string, string, int, error) {
|
|
stdout, stderr, retcode, err := runCmdNoWrap(command, args...)
|
|
if err != nil {
|
|
return stdout, stderr, retcode, errors.Wrapf(err, "error running %s %v; \nretcode %d, \nstdout %q, \nstderr %q, \ngot error",
|
|
command, args, retcode, stdout, stderr)
|
|
}
|
|
return stdout, stderr, retcode, nil
|
|
}
|
|
|
|
// RunSubCommand is a utility function for kubeadm testing that executes a Cobra sub command
|
|
func RunSubCommand(t *testing.T, subCmds []*cobra.Command, command string, args ...string) {
|
|
subCmd := getSubCommand(t, subCmds, command)
|
|
subCmd.SetArgs(args)
|
|
if err := subCmd.Execute(); err != nil {
|
|
t.Fatalf("Could not execute subcommand: %s", command)
|
|
}
|
|
}
|
|
|
|
// AssertSubCommandHasFlags is a utility function for kubeadm testing that assert if a Cobra sub command has expected flags
|
|
func AssertSubCommandHasFlags(t *testing.T, subCmds []*cobra.Command, command string, flags ...string) {
|
|
subCmd := getSubCommand(t, subCmds, command)
|
|
|
|
for _, flag := range flags {
|
|
if subCmd.Flags().Lookup(flag) == nil {
|
|
t.Errorf("Could not find expecte flag %s for command %s", flag, command)
|
|
}
|
|
}
|
|
}
|
|
|
|
func getSubCommand(t *testing.T, subCmds []*cobra.Command, name string) *cobra.Command {
|
|
for _, subCmd := range subCmds {
|
|
if subCmd.Name() == name {
|
|
return subCmd
|
|
}
|
|
}
|
|
t.Fatalf("Unable to find sub command %s", name)
|
|
|
|
return nil
|
|
}
|