common.go 2.3 KB
Newer Older
M
Medya Gh 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
/*
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 util

import (
	"fmt"
	"testing"
	"time"

M
Medya Gh 已提交
24
	"github.com/cenkalti/backoff"
M
Medya Gh 已提交
25 26 27 28 29 30
	"github.com/pkg/errors"
	"k8s.io/apimachinery/pkg/labels"
	commonutil "k8s.io/minikube/pkg/util"
)

// WaitForBusyboxRunning waits until busybox pod to be running
M
Medya Gh 已提交
31 32
func WaitForBusyboxRunning(t *testing.T, namespace string, miniProfile string) error {
	client, err := commonutil.GetClient(miniProfile)
M
Medya Gh 已提交
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
	if err != nil {
		return errors.Wrap(err, "getting kubernetes client")
	}
	selector := labels.SelectorFromSet(labels.Set(map[string]string{"integration-test": "busybox"}))
	return commonutil.WaitForPodsWithLabelRunning(client, namespace, selector)
}

// Retry tries the callback for a number of attempts, with a delay between attempts
func Retry(t *testing.T, callback func() error, d time.Duration, attempts int) (err error) {
	for i := 0; i < attempts; i++ {
		err = callback()
		if err == nil {
			return nil
		}
		time.Sleep(d)
	}
	return err
}

M
Medya Gh 已提交
52 53 54 55 56 57 58 59 60 61 62 63
// Retry2 tries the callback for a number of attempts, with a delay without *testing.T
func Retry2(callback func() error, d time.Duration, attempts int) (err error) {
	for i := 0; i < attempts; i++ {
		err = callback()
		if err == nil {
			return nil
		}
		time.Sleep(d)
	}
	return err
}

M
Medya Gh 已提交
64
// RetryX is expontential backoff retry
M
Medya Gh 已提交
65
func RetryX(callback func() error, initInterv time.Duration, maxTime time.Duration) error {
M
Medya Gh 已提交
66
	b := backoff.NewExponentialBackOff()
M
Medya Gh 已提交
67
	b.MaxElapsedTime = maxTime
M
Medya Gh 已提交
68
	b.InitialInterval = initInterv
M
Medya Gh 已提交
69 70 71 72
	b.RandomizationFactor = 0.5
	b.Multiplier = 1.5
	b.Reset()
	return backoff.Retry(callback, b)
M
Medya Gh 已提交
73 74
}

M
Medya Gh 已提交
75 76 77 78 79 80 81 82
// Logf writes logs to stdout if -v is set.
func Logf(str string, args ...interface{}) {
	if !testing.Verbose() {
		return
	}
	fmt.Printf(" %s | ", time.Now().Format("15:04:05"))
	fmt.Println(fmt.Sprintf(str, args...))
}