start_stop_delete_test.go 1.3 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
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 (
D
Dan Lorenc 已提交
22 23
	"net"
	"strings"
D
dlorenc 已提交
24
	"testing"
25 26

	"k8s.io/minikube/test/integration/util"
D
dlorenc 已提交
27 28 29 30
)

func TestStartStop(t *testing.T) {

31 32 33 34
	runner := util.MinikubeRunner{
		Args:       *args,
		BinaryPath: *binaryPath,
		T:          t}
35 36
	runner.RunCommand("delete", false)
	runner.CheckStatus("Does Not Exist")
D
dlorenc 已提交
37

38
	runner.Start()
39
	runner.CheckStatus("Running")
D
dlorenc 已提交
40

D
Dan Lorenc 已提交
41 42 43 44 45 46
	ip := runner.RunCommand("ip", true)
	ip = strings.TrimRight(ip, "\n")
	if net.ParseIP(ip) == nil {
		t.Fatalf("IP command returned an invalid address: %s", ip)
	}

47 48
	runner.RunCommand("stop", true)
	runner.CheckStatus("Stopped")
D
dlorenc 已提交
49

50
	runner.Start()
51
	runner.CheckStatus("Running")
D
dlorenc 已提交
52

53 54
	runner.RunCommand("delete", true)
	runner.CheckStatus("Does Not Exist")
D
dlorenc 已提交
55
}