start_stop_delete_test.go 1.7 KB
Newer Older
D
dlorenc 已提交
1 2 3
// +build integration

/*
4
Copyright 2016 The Kubernetes Authors All rights reserved.
5

D
dlorenc 已提交
6 7 8
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
9

D
dlorenc 已提交
10
    http://www.apache.org/licenses/LICENSE-2.0
11

D
dlorenc 已提交
12 13 14 15 16 17 18 19 20 21 22
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 integration

import (
	"flag"
23
	"os"
D
dlorenc 已提交
24 25 26 27 28 29
	"os/exec"
	"path/filepath"
	"strings"
	"testing"
)

30
var binaryPath = flag.String("binary", "../out/minikube", "path to minikube binary")
D
dlorenc 已提交
31 32 33 34 35 36 37

func runCommand(t *testing.T, command string, checkError bool) string {
	path, _ := filepath.Abs(*binaryPath)
	cmd := exec.Command(path, command)
	stdout, err := cmd.Output()

	if checkError && err != nil {
38
		t.Fatalf("Error running command: %s %s. Output: %s", command, err, stdout)
D
dlorenc 已提交
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
	}
	return string(stdout)
}

func TestStartStop(t *testing.T) {

	getStatus := func() string {
		status := runCommand(t, "status", true)
		return strings.Trim(status, "\n")
	}

	checkStatus := func(desired string) {
		s := getStatus()
		if s != desired {
			t.Fatalf("Machine is in the wrong state: %s, expected  %s", s, desired)
		}
	}

	runCommand(t, "delete", false)
	checkStatus("Does Not Exist")

	runCommand(t, "start", true)
	checkStatus("Running")

	runCommand(t, "stop", true)
	checkStatus("Stopped")

	runCommand(t, "start", true)
	checkStatus("Running")

	runCommand(t, "delete", true)
	checkStatus("Does Not Exist")
}
72 73 74 75 76

func TestMain(m *testing.M) {
	flag.Parse()
	os.Exit(m.Run())
}