98 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			Go
		
	
	
			
		
		
	
	
			98 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			Go
		
	
	
/*
 | 
						|
Copyright 2019 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 (
 | 
						|
	"context"
 | 
						|
	"fmt"
 | 
						|
	"io/ioutil"
 | 
						|
	"os"
 | 
						|
	"os/exec"
 | 
						|
	"runtime"
 | 
						|
	"strings"
 | 
						|
	"testing"
 | 
						|
	"time"
 | 
						|
 | 
						|
	"github.com/docker/machine/libmachine/state"
 | 
						|
	"k8s.io/minikube/pkg/minikube/constants"
 | 
						|
	"k8s.io/minikube/pkg/util/retry"
 | 
						|
 | 
						|
	"github.com/hashicorp/go-getter"
 | 
						|
	pkgutil "k8s.io/minikube/pkg/util"
 | 
						|
)
 | 
						|
 | 
						|
// TestVersionUpgrade downloads latest version of minikube and runs with
 | 
						|
// the odlest supported k8s version and then runs the current head minikube
 | 
						|
// and it tries to upgrade from the older supported k8s to news supported k8s
 | 
						|
func TestVersionUpgrade(t *testing.T) {
 | 
						|
	profile := UniqueProfileName("vupgrade")
 | 
						|
	ctx, cancel := context.WithTimeout(context.Background(), 55*time.Minute)
 | 
						|
	MaybeSlowParallel(t)
 | 
						|
 | 
						|
	defer CleanupWithLogs(t, profile, cancel)
 | 
						|
 | 
						|
	tf, err := ioutil.TempFile("", "minikube-release.*.exe")
 | 
						|
	if err != nil {
 | 
						|
		t.Fatalf("tempfile: %v", err)
 | 
						|
	}
 | 
						|
	defer os.Remove(tf.Name())
 | 
						|
	tf.Close()
 | 
						|
 | 
						|
	url := pkgutil.GetBinaryDownloadURL("latest", runtime.GOOS)
 | 
						|
	if err := retry.Expo(func() error { return getter.GetFile(tf.Name(), url) }, 3*time.Second, 3*time.Minute); err != nil {
 | 
						|
		t.Fatalf("get failed: %v", err)
 | 
						|
	}
 | 
						|
 | 
						|
	if runtime.GOOS != "windows" {
 | 
						|
		if err := os.Chmod(tf.Name(), 0700); err != nil {
 | 
						|
			t.Errorf("chmod: %v", err)
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	args := append([]string{"start", "-p", profile, fmt.Sprintf("--kubernetes-version=%s", constants.OldestKubernetesVersion), "--alsologtostderr", "-v=1"}, StartArgs()...)
 | 
						|
	rr := &RunResult{}
 | 
						|
	releaseStart := func() error {
 | 
						|
		rr, err = Run(t, exec.CommandContext(ctx, tf.Name(), args...))
 | 
						|
		return err
 | 
						|
	}
 | 
						|
 | 
						|
	// Retry to allow flakiness for the previous release
 | 
						|
	if err := retry.Expo(releaseStart, 1*time.Second, 30*time.Minute, 3); err != nil {
 | 
						|
		t.Fatalf("release start failed: %v", err)
 | 
						|
	}
 | 
						|
 | 
						|
	rr, err = Run(t, exec.CommandContext(ctx, tf.Name(), "stop", "-p", profile))
 | 
						|
	if err != nil {
 | 
						|
		t.Fatalf("%s failed: %v", rr.Args, err)
 | 
						|
	}
 | 
						|
 | 
						|
	rr, err = Run(t, exec.CommandContext(ctx, tf.Name(), "-p", profile, "status", "--format={{.Host}}"))
 | 
						|
	if err != nil {
 | 
						|
		t.Logf("status error: %v (may be ok)", err)
 | 
						|
	}
 | 
						|
	got := strings.TrimSpace(rr.Stdout.String())
 | 
						|
	if got != state.Stopped.String() {
 | 
						|
		t.Errorf("status = %q; want = %q", got, state.Stopped.String())
 | 
						|
	}
 | 
						|
 | 
						|
	args = append([]string{"start", "-p", profile, fmt.Sprintf("--kubernetes-version=%s", constants.NewestKubernetesVersion), "--alsologtostderr", "-v=1"}, StartArgs()...)
 | 
						|
	rr, err = Run(t, exec.CommandContext(ctx, Target(), args...))
 | 
						|
	if err != nil {
 | 
						|
		t.Errorf("%s failed: %v", rr.Args, err)
 | 
						|
	}
 | 
						|
}
 |