2016-05-14 01:47:43 +00:00
|
|
|
/*
|
|
|
|
Copyright 2016 The Kubernetes Authors All rights reserved.
|
|
|
|
|
|
|
|
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 util
|
|
|
|
|
|
|
|
import (
|
2018-10-03 22:06:30 +00:00
|
|
|
"bufio"
|
2016-05-14 01:47:43 +00:00
|
|
|
"bytes"
|
2018-11-27 16:24:28 +00:00
|
|
|
"context"
|
2016-05-31 22:26:55 +00:00
|
|
|
"fmt"
|
2016-05-14 01:47:43 +00:00
|
|
|
"os/exec"
|
|
|
|
"path/filepath"
|
2016-07-09 18:05:14 +00:00
|
|
|
"regexp"
|
2016-05-14 01:47:43 +00:00
|
|
|
"strings"
|
2018-12-20 01:03:55 +00:00
|
|
|
"sync"
|
2016-05-14 01:47:43 +00:00
|
|
|
"testing"
|
2019-07-27 05:35:15 +00:00
|
|
|
"time"
|
2016-06-29 21:52:10 +00:00
|
|
|
|
2019-07-27 05:35:15 +00:00
|
|
|
"github.com/docker/machine/libmachine/state"
|
2017-08-25 06:14:39 +00:00
|
|
|
"k8s.io/minikube/pkg/minikube/assets"
|
2016-07-18 22:35:37 +00:00
|
|
|
commonutil "k8s.io/minikube/pkg/util"
|
2016-05-14 01:47:43 +00:00
|
|
|
)
|
|
|
|
|
2019-03-16 13:12:18 +00:00
|
|
|
// MinikubeRunner runs a command
|
2016-05-14 01:47:43 +00:00
|
|
|
type MinikubeRunner struct {
|
2019-07-23 23:39:39 +00:00
|
|
|
Profile string
|
2016-05-14 01:47:43 +00:00
|
|
|
T *testing.T
|
|
|
|
BinaryPath string
|
2019-07-12 23:57:23 +00:00
|
|
|
GlobalArgs string
|
2017-09-08 22:09:52 +00:00
|
|
|
StartArgs string
|
2018-10-31 04:42:27 +00:00
|
|
|
MountArgs string
|
2018-12-05 18:23:36 +00:00
|
|
|
Runtime string
|
2016-05-14 01:47:43 +00:00
|
|
|
}
|
|
|
|
|
2019-03-16 13:12:18 +00:00
|
|
|
// Copy copies a file
|
2017-08-25 06:14:39 +00:00
|
|
|
func (m *MinikubeRunner) Copy(f assets.CopyableFile) error {
|
|
|
|
path, _ := filepath.Abs(m.BinaryPath)
|
|
|
|
cmd := exec.Command("/bin/bash", "-c", path, "ssh", "--", fmt.Sprintf("cat >> %s", filepath.Join(f.GetTargetDir(), f.GetTargetName())))
|
2018-12-21 21:07:49 +00:00
|
|
|
Logf("Running: %s", cmd.Args)
|
2017-08-25 06:14:39 +00:00
|
|
|
return cmd.Run()
|
|
|
|
}
|
|
|
|
|
2019-03-16 13:12:18 +00:00
|
|
|
// Remove removes a file
|
2017-08-25 06:14:39 +00:00
|
|
|
func (m *MinikubeRunner) Remove(f assets.CopyableFile) error {
|
|
|
|
_, err := m.SSH(fmt.Sprintf("rm -rf %s", filepath.Join(f.GetTargetDir(), f.GetTargetName())))
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2018-12-19 19:16:08 +00:00
|
|
|
// teeRun runs a command, streaming stdout, stderr to console
|
2019-07-30 01:42:09 +00:00
|
|
|
func (m *MinikubeRunner) teeRun(cmd *exec.Cmd, wait ...bool) (string, string, error) {
|
|
|
|
w := true
|
|
|
|
if wait != nil {
|
|
|
|
w = wait[0]
|
|
|
|
}
|
|
|
|
|
2018-12-20 01:03:55 +00:00
|
|
|
errPipe, err := cmd.StderrPipe()
|
2018-12-19 18:42:19 +00:00
|
|
|
if err != nil {
|
2018-12-20 01:03:55 +00:00
|
|
|
return "", "", err
|
2018-12-19 18:42:19 +00:00
|
|
|
}
|
2018-12-20 01:03:55 +00:00
|
|
|
outPipe, err := cmd.StdoutPipe()
|
2018-12-19 18:42:19 +00:00
|
|
|
if err != nil {
|
2018-12-20 01:03:55 +00:00
|
|
|
return "", "", err
|
2018-12-19 18:42:19 +00:00
|
|
|
}
|
|
|
|
|
2019-05-14 04:43:52 +00:00
|
|
|
if err := cmd.Start(); err != nil {
|
|
|
|
return "", "", err
|
|
|
|
}
|
2019-07-30 01:42:09 +00:00
|
|
|
if w {
|
|
|
|
var outB bytes.Buffer
|
|
|
|
var errB bytes.Buffer
|
|
|
|
var wg sync.WaitGroup
|
|
|
|
wg.Add(2)
|
|
|
|
go func() {
|
|
|
|
if err := commonutil.TeePrefix(commonutil.ErrPrefix, errPipe, &errB, Logf); err != nil {
|
|
|
|
m.T.Logf("tee: %v", err)
|
|
|
|
}
|
|
|
|
wg.Done()
|
|
|
|
}()
|
|
|
|
go func() {
|
|
|
|
if err := commonutil.TeePrefix(commonutil.OutPrefix, outPipe, &outB, Logf); err != nil {
|
|
|
|
m.T.Logf("tee: %v", err)
|
|
|
|
}
|
|
|
|
wg.Done()
|
|
|
|
}()
|
|
|
|
err = cmd.Wait()
|
|
|
|
wg.Wait()
|
|
|
|
return outB.String(), errB.String(), err
|
|
|
|
|
|
|
|
}
|
|
|
|
return "", "", err
|
2018-12-19 19:16:08 +00:00
|
|
|
}
|
2018-12-19 18:42:19 +00:00
|
|
|
|
2019-03-16 13:12:18 +00:00
|
|
|
// RunCommand executes a command, optionally checking for error
|
2019-07-30 01:42:09 +00:00
|
|
|
func (m *MinikubeRunner) RunCommand(cmdStr string, failError bool, wait ...bool) string {
|
2019-07-24 03:00:10 +00:00
|
|
|
profileArg := fmt.Sprintf("-p=%s ", m.Profile)
|
|
|
|
cmdStr = profileArg + cmdStr
|
2019-07-24 00:42:32 +00:00
|
|
|
cmdArgs := strings.Split(cmdStr, " ")
|
2016-05-14 01:47:43 +00:00
|
|
|
path, _ := filepath.Abs(m.BinaryPath)
|
2019-07-24 00:42:32 +00:00
|
|
|
|
|
|
|
cmd := exec.Command(path, cmdArgs...)
|
2018-12-19 19:16:08 +00:00
|
|
|
Logf("Run: %s", cmd.Args)
|
2019-07-30 01:42:09 +00:00
|
|
|
stdout, stderr, err := m.teeRun(cmd, wait...)
|
2019-07-24 00:42:32 +00:00
|
|
|
if failError && err != nil {
|
2016-06-01 22:26:17 +00:00
|
|
|
if exitError, ok := err.(*exec.ExitError); ok {
|
2019-07-24 00:42:32 +00:00
|
|
|
m.T.Fatalf("Error running command: %s %s. Output: %s", cmdStr, exitError.Stderr, stdout)
|
2016-06-01 22:26:17 +00:00
|
|
|
} else {
|
2019-07-24 00:42:32 +00:00
|
|
|
m.T.Fatalf("Error running command: %s %v. Output: %s", cmdStr, err, stderr)
|
2016-06-01 22:26:17 +00:00
|
|
|
}
|
2016-05-14 01:47:43 +00:00
|
|
|
}
|
2018-12-20 01:03:55 +00:00
|
|
|
return stdout
|
2016-05-14 01:47:43 +00:00
|
|
|
}
|
|
|
|
|
2018-11-27 16:24:28 +00:00
|
|
|
// RunWithContext calls the minikube command with a context, useful for timeouts.
|
2019-07-30 01:42:09 +00:00
|
|
|
func (m *MinikubeRunner) RunWithContext(ctx context.Context, cmdStr string, wait ...bool) (string, string, error) {
|
2019-07-24 03:00:10 +00:00
|
|
|
profileArg := fmt.Sprintf("-p=%s ", m.Profile)
|
|
|
|
cmdStr = profileArg + cmdStr
|
2019-07-24 00:42:32 +00:00
|
|
|
cmdArgs := strings.Split(cmdStr, " ")
|
2018-11-27 16:24:28 +00:00
|
|
|
path, _ := filepath.Abs(m.BinaryPath)
|
2019-07-24 00:42:32 +00:00
|
|
|
|
|
|
|
cmd := exec.CommandContext(ctx, path, cmdArgs...)
|
2018-12-20 01:03:55 +00:00
|
|
|
Logf("Run: %s", cmd.Args)
|
2019-07-30 01:42:09 +00:00
|
|
|
return m.teeRun(cmd, wait...)
|
2016-05-14 01:47:43 +00:00
|
|
|
}
|
|
|
|
|
2019-03-16 13:12:18 +00:00
|
|
|
// RunDaemon executes a command, returning the stdout
|
2019-07-24 00:42:32 +00:00
|
|
|
func (m *MinikubeRunner) RunDaemon(cmdStr string) (*exec.Cmd, *bufio.Reader) {
|
2019-07-24 03:00:10 +00:00
|
|
|
profileArg := fmt.Sprintf("-p=%s ", m.Profile)
|
|
|
|
cmdStr = profileArg + cmdStr
|
2019-07-24 00:42:32 +00:00
|
|
|
cmdArgs := strings.Split(cmdStr, " ")
|
2017-03-23 15:26:21 +00:00
|
|
|
path, _ := filepath.Abs(m.BinaryPath)
|
2019-07-24 00:42:32 +00:00
|
|
|
|
|
|
|
cmd := exec.Command(path, cmdArgs...)
|
2018-10-03 22:06:30 +00:00
|
|
|
stdoutPipe, err := cmd.StdoutPipe()
|
|
|
|
if err != nil {
|
2019-07-24 00:42:32 +00:00
|
|
|
m.T.Fatalf("stdout pipe failed: %s %v", cmdStr, err)
|
2018-10-03 22:06:30 +00:00
|
|
|
}
|
2018-12-21 21:07:49 +00:00
|
|
|
stderrPipe, err := cmd.StderrPipe()
|
|
|
|
if err != nil {
|
2019-07-24 00:42:32 +00:00
|
|
|
m.T.Fatalf("stderr pipe failed: %s %v", cmdStr, err)
|
2018-12-21 21:07:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var errB bytes.Buffer
|
|
|
|
go func() {
|
|
|
|
if err := commonutil.TeePrefix(commonutil.ErrPrefix, stderrPipe, &errB, Logf); err != nil {
|
|
|
|
m.T.Logf("tee: %v", err)
|
|
|
|
}
|
|
|
|
}()
|
2018-10-03 22:06:30 +00:00
|
|
|
|
|
|
|
err = cmd.Start()
|
2017-03-23 15:26:21 +00:00
|
|
|
if err != nil {
|
2019-07-24 00:42:32 +00:00
|
|
|
m.T.Fatalf("Error running command: %s %v", cmdStr, err)
|
2017-03-23 15:26:21 +00:00
|
|
|
}
|
2018-10-03 22:06:30 +00:00
|
|
|
return cmd, bufio.NewReader(stdoutPipe)
|
|
|
|
|
2017-03-23 15:26:21 +00:00
|
|
|
}
|
|
|
|
|
2019-03-16 13:12:18 +00:00
|
|
|
// RunDaemon2 executes a command, returning the stdout and stderr
|
2019-07-24 00:42:32 +00:00
|
|
|
func (m *MinikubeRunner) RunDaemon2(cmdStr string) (*exec.Cmd, *bufio.Reader, *bufio.Reader) {
|
2019-07-24 03:00:10 +00:00
|
|
|
profileArg := fmt.Sprintf("-p=%s ", m.Profile)
|
|
|
|
cmdStr = profileArg + cmdStr
|
2019-07-24 00:42:32 +00:00
|
|
|
cmdArgs := strings.Split(cmdStr, " ")
|
2018-11-10 07:32:41 +00:00
|
|
|
path, _ := filepath.Abs(m.BinaryPath)
|
2019-07-24 00:42:32 +00:00
|
|
|
cmd := exec.Command(path, cmdArgs...)
|
2018-11-10 07:32:41 +00:00
|
|
|
stdoutPipe, err := cmd.StdoutPipe()
|
|
|
|
if err != nil {
|
2019-07-24 00:42:32 +00:00
|
|
|
m.T.Fatalf("stdout pipe failed: %s %v", cmdStr, err)
|
2018-11-10 07:32:41 +00:00
|
|
|
}
|
|
|
|
stderrPipe, err := cmd.StderrPipe()
|
|
|
|
if err != nil {
|
2019-07-24 00:42:32 +00:00
|
|
|
m.T.Fatalf("stderr pipe failed: %s %v", cmdStr, err)
|
2018-11-10 07:32:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
err = cmd.Start()
|
|
|
|
if err != nil {
|
2019-07-24 00:42:32 +00:00
|
|
|
m.T.Fatalf("Error running command: %s %v", cmdStr, err)
|
2018-11-10 07:32:41 +00:00
|
|
|
}
|
|
|
|
return cmd, bufio.NewReader(stdoutPipe), bufio.NewReader(stderrPipe)
|
|
|
|
}
|
2019-03-22 05:00:14 +00:00
|
|
|
|
2019-03-16 13:12:18 +00:00
|
|
|
// SSH returns the output of running a command using SSH
|
2019-07-24 00:42:32 +00:00
|
|
|
func (m *MinikubeRunner) SSH(cmdStr string) (string, error) {
|
2019-07-24 02:05:57 +00:00
|
|
|
profileArg := fmt.Sprintf("-p=%s", m.Profile)
|
2017-01-31 16:31:53 +00:00
|
|
|
path, _ := filepath.Abs(m.BinaryPath)
|
2018-12-19 18:42:19 +00:00
|
|
|
|
2019-07-24 00:42:32 +00:00
|
|
|
cmd := exec.Command(path, profileArg, "ssh", cmdStr)
|
|
|
|
Logf("SSH: %s", cmdStr)
|
2017-02-01 23:08:26 +00:00
|
|
|
stdout, err := cmd.CombinedOutput()
|
2018-12-19 18:42:19 +00:00
|
|
|
Logf("Output: %s", stdout)
|
2017-02-01 23:08:26 +00:00
|
|
|
if err, ok := err.(*exec.ExitError); ok {
|
|
|
|
return string(stdout), err
|
|
|
|
}
|
|
|
|
return string(stdout), nil
|
2017-01-31 16:31:53 +00:00
|
|
|
}
|
|
|
|
|
2019-07-12 18:50:57 +00:00
|
|
|
// Start starts the cluster
|
2019-07-27 05:35:15 +00:00
|
|
|
func (m *MinikubeRunner) Start(opts ...string) string {
|
2019-07-24 03:00:10 +00:00
|
|
|
cmd := fmt.Sprintf("start %s %s %s --alsologtostderr --v=2", m.StartArgs, m.GlobalArgs, strings.Join(opts, " "))
|
2019-07-27 05:35:15 +00:00
|
|
|
return m.RunCommand(cmd, true)
|
|
|
|
}
|
|
|
|
|
|
|
|
// StartWithStds starts the cluster with console output without verbose log
|
|
|
|
func (m *MinikubeRunner) StartWithStds(timeout time.Duration, opts ...string) (stdout string, stderr string, err error) {
|
|
|
|
ctx, cancel := context.WithTimeout(context.Background(), timeout)
|
|
|
|
defer cancel()
|
|
|
|
cmd := fmt.Sprintf("start %s %s %s", m.StartArgs, m.GlobalArgs, strings.Join(opts, " "))
|
|
|
|
return m.RunWithContext(ctx, cmd)
|
2016-06-30 21:11:37 +00:00
|
|
|
}
|
|
|
|
|
2019-07-30 05:17:03 +00:00
|
|
|
// TearDown deletes minikube without waiting for it. used to free up ram/cpu after each test
|
|
|
|
func (m *MinikubeRunner) TearDown(t *testing.T) {
|
|
|
|
profileArg := fmt.Sprintf("-p=%s", m.Profile)
|
|
|
|
path, _ := filepath.Abs(m.BinaryPath)
|
|
|
|
cmd := exec.Command(path, profileArg, "delete")
|
|
|
|
err := cmd.Start()
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("error tearing down minikube %s : %v", profileArg, err)
|
|
|
|
}
|
2019-07-30 02:19:56 +00:00
|
|
|
}
|
|
|
|
|
2019-03-16 13:12:18 +00:00
|
|
|
// EnsureRunning makes sure the container runtime is running
|
2019-07-27 05:35:15 +00:00
|
|
|
func (m *MinikubeRunner) EnsureRunning(opts ...string) {
|
|
|
|
if m.GetStatus() != state.Running.String() {
|
|
|
|
m.Start(opts...)
|
2016-06-02 22:51:30 +00:00
|
|
|
}
|
2019-07-27 05:35:15 +00:00
|
|
|
m.CheckStatus(state.Running.String())
|
2016-06-02 22:51:30 +00:00
|
|
|
}
|
|
|
|
|
2018-09-27 00:53:42 +00:00
|
|
|
// ParseEnvCmdOutput parses the output of `env` (assumes bash)
|
|
|
|
func (m *MinikubeRunner) ParseEnvCmdOutput(out string) map[string]string {
|
|
|
|
env := map[string]string{}
|
2016-11-08 23:13:34 +00:00
|
|
|
re := regexp.MustCompile(`(\w+?) ?= ?"?(.+?)"?\n`)
|
2018-09-27 00:53:42 +00:00
|
|
|
for _, m := range re.FindAllStringSubmatch(out, -1) {
|
|
|
|
env[m[1]] = m[2]
|
2016-05-31 22:26:55 +00:00
|
|
|
}
|
2018-09-27 00:53:42 +00:00
|
|
|
return env
|
2016-05-31 22:26:55 +00:00
|
|
|
}
|
|
|
|
|
2019-03-16 13:12:18 +00:00
|
|
|
// GetStatus returns the status of a service
|
2016-05-14 01:47:43 +00:00
|
|
|
func (m *MinikubeRunner) GetStatus() string {
|
2019-07-29 23:12:51 +00:00
|
|
|
return m.RunCommand(fmt.Sprintf("status --format={{.Host}} %s", m.GlobalArgs), false)
|
2017-09-08 22:09:52 +00:00
|
|
|
}
|
|
|
|
|
2019-03-16 13:12:18 +00:00
|
|
|
// GetLogs returns the logs of a service
|
2017-09-08 22:09:52 +00:00
|
|
|
func (m *MinikubeRunner) GetLogs() string {
|
2019-07-27 05:35:15 +00:00
|
|
|
return m.RunCommand(fmt.Sprintf("logs %s", m.GlobalArgs), true)
|
2016-05-14 01:47:43 +00:00
|
|
|
}
|
|
|
|
|
2019-03-16 13:12:18 +00:00
|
|
|
// CheckStatus makes sure the service has the desired status, or cause fatal error
|
2016-05-14 01:47:43 +00:00
|
|
|
func (m *MinikubeRunner) CheckStatus(desired string) {
|
2017-02-10 12:59:45 +00:00
|
|
|
if err := m.CheckStatusNoFail(desired); err != nil {
|
|
|
|
m.T.Fatalf("%v", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-16 13:12:18 +00:00
|
|
|
// CheckStatusNoFail makes sure the service has the desired status, returning error
|
2017-02-10 12:59:45 +00:00
|
|
|
func (m *MinikubeRunner) CheckStatusNoFail(desired string) error {
|
2016-05-14 01:47:43 +00:00
|
|
|
s := m.GetStatus()
|
|
|
|
if s != desired {
|
2018-12-19 18:42:19 +00:00
|
|
|
return fmt.Errorf("got state: %q, expected %q", s, desired)
|
2016-05-14 01:47:43 +00:00
|
|
|
}
|
2017-02-10 12:59:45 +00:00
|
|
|
return nil
|
2016-05-14 01:47:43 +00:00
|
|
|
}
|