111 lines
3.2 KiB
Go
111 lines
3.2 KiB
Go
// +build integration
|
|
|
|
/*
|
|
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 integration
|
|
|
|
import (
|
|
"fmt"
|
|
"net"
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/docker/machine/libmachine/state"
|
|
"k8s.io/minikube/pkg/minikube/constants"
|
|
)
|
|
|
|
func TestStartStop(t *testing.T) {
|
|
p := profileName(t) // gets profile name used for minikube and kube context
|
|
if shouldRunInParallel(t) {
|
|
t.Parallel()
|
|
}
|
|
|
|
t.Run("group", func(t *testing.T) {
|
|
if shouldRunInParallel(t) {
|
|
t.Parallel()
|
|
}
|
|
tests := []struct {
|
|
name string
|
|
args []string
|
|
}{
|
|
{"oldest", []string{
|
|
"--cache-images=false",
|
|
fmt.Sprintf("--kubernetes-version=%s", constants.OldestKubernetesVersion),
|
|
// default is the network created by libvirt, if we change the name minikube won't boot
|
|
// because the given network doesn't exist
|
|
"--kvm-network=default",
|
|
"--kvm-qemu-uri=qemu:///system",
|
|
}},
|
|
{"cni", []string{
|
|
"--feature-gates",
|
|
"ServerSideApply=true",
|
|
"--network-plugin=cni",
|
|
"--extra-config=kubelet.network-plugin=cni",
|
|
"--extra-config=kubeadm.pod-network-cidr=192.168.111.111/16",
|
|
fmt.Sprintf("--kubernetes-version=%s", constants.NewestKubernetesVersion),
|
|
}},
|
|
{"containerd", []string{
|
|
"--container-runtime=containerd",
|
|
"--docker-opt containerd=/var/run/containerd/containerd.sock",
|
|
"--apiserver-port=8444",
|
|
}},
|
|
{"crio", []string{
|
|
"--container-runtime=crio",
|
|
"--disable-driver-mounts",
|
|
"--extra-config=kubeadm.ignore-preflight-errors=SystemVerification",
|
|
}},
|
|
}
|
|
|
|
for _, tc := range tests {
|
|
n := tc.name // because similar to https://golang.org/doc/faq#closures_and_goroutines
|
|
t.Run(tc.name, func(t *testing.T) {
|
|
if shouldRunInParallel(t) {
|
|
t.Parallel()
|
|
}
|
|
|
|
pn := p + n // TestStartStopoldest
|
|
mk := NewMinikubeRunner(t, pn, "--wait=false")
|
|
// TODO : redundant first clause ? never happens?
|
|
if !strings.Contains(pn, "docker") && isTestNoneDriver(t) {
|
|
t.Skipf("skipping %s - incompatible with none driver", t.Name())
|
|
}
|
|
|
|
mk.MustRun("config set WantReportErrorPrompt false")
|
|
mk.MustStart(tc.args...)
|
|
|
|
mk.CheckStatus(state.Running.String())
|
|
|
|
ip, stderr := mk.MustRun("ip")
|
|
ip = strings.TrimRight(ip, "\n")
|
|
if net.ParseIP(ip) == nil {
|
|
t.Fatalf("IP command returned an invalid address: %s \n %s", ip, stderr)
|
|
}
|
|
|
|
mk.MustRun("stop")
|
|
err := mk.CheckStatusNoFail(state.Stopped.String())
|
|
if err != nil {
|
|
t.Errorf("expected status to be %s but got error %v ", state.Stopped.String(), err)
|
|
}
|
|
mk.MustStart(tc.args...)
|
|
mk.CheckStatus(state.Running.String())
|
|
mk.MustRun("delete")
|
|
mk.CheckStatus(state.None.String())
|
|
})
|
|
}
|
|
})
|
|
}
|