open-nomad/testutil/wait.go

67 lines
1.2 KiB
Go
Raw Normal View History

2015-06-04 11:02:39 +00:00
package testutil
2015-06-04 11:26:16 +00:00
import (
"os"
2015-06-04 11:26:16 +00:00
"testing"
"time"
"github.com/hashicorp/nomad/nomad/structs"
2015-06-04 11:26:16 +00:00
)
2015-06-04 11:02:39 +00:00
const (
// TravisRunEnv is an environment variable that is set if being run by
// Travis.
TravisRunEnv = "TRAVIS_RUN"
)
2015-06-04 11:02:39 +00:00
type testFn func() (bool, error)
type errorFn func(error)
func WaitForResult(test testFn, error errorFn) {
2016-02-04 22:19:27 +00:00
WaitForResultRetries(2000*TestMultiplier(), test, error)
}
2015-06-04 11:02:39 +00:00
2016-01-21 20:29:13 +00:00
func WaitForResultRetries(retries int64, test testFn, error errorFn) {
2015-06-04 11:02:39 +00:00
for retries > 0 {
time.Sleep(10 * time.Millisecond)
retries--
success, err := test()
if success {
return
}
if retries == 0 {
error(err)
}
}
}
2015-06-04 11:26:16 +00:00
// TestMultiplier returns a multiplier for retries and waits given environment
// the tests are being run under.
2016-01-21 20:29:13 +00:00
func TestMultiplier() int64 {
2016-01-21 21:28:48 +00:00
if IsTravis() {
return 3
}
return 1
}
2016-01-21 21:28:48 +00:00
func IsTravis() bool {
_, ok := os.LookupEnv(TravisRunEnv)
return ok
}
2015-06-04 11:26:16 +00:00
type rpcFn func(string, interface{}, interface{}) error
func WaitForLeader(t *testing.T, rpc rpcFn) {
WaitForResult(func() (bool, error) {
args := &structs.GenericRequest{}
2015-06-04 11:26:16 +00:00
var leader string
err := rpc("Status.Leader", args, &leader)
return leader != "", err
}, func(err error) {
t.Fatalf("failed to find leader: %v", err)
})
}