2016-09-19 17:08:39 +00:00
|
|
|
package job
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
"time"
|
2016-12-30 08:21:13 +00:00
|
|
|
|
2019-08-03 01:58:23 +00:00
|
|
|
"github.com/cenkalti/backoff/v3"
|
2016-09-19 17:08:39 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestJobBackOff(t *testing.T) {
|
|
|
|
var (
|
|
|
|
testInitialInterval = 500 * time.Millisecond
|
|
|
|
testRandomizationFactor = 0.1
|
|
|
|
testMultiplier = 2.0
|
|
|
|
testMaxInterval = 5 * time.Second
|
|
|
|
testMinJobInterval = 1 * time.Second
|
|
|
|
)
|
|
|
|
|
|
|
|
exp := NewBackOff(backoff.NewExponentialBackOff())
|
|
|
|
exp.InitialInterval = testInitialInterval
|
|
|
|
exp.RandomizationFactor = testRandomizationFactor
|
|
|
|
exp.Multiplier = testMultiplier
|
|
|
|
exp.MaxInterval = testMaxInterval
|
|
|
|
exp.MinJobInterval = testMinJobInterval
|
|
|
|
exp.Reset()
|
|
|
|
|
|
|
|
var expectedResults = []time.Duration{500, 500, 500, 1000, 2000, 4000, 5000, 5000, 500, 1000, 2000, 4000, 5000, 5000}
|
|
|
|
for i, d := range expectedResults {
|
|
|
|
expectedResults[i] = d * time.Millisecond
|
|
|
|
}
|
|
|
|
|
|
|
|
for i, expected := range expectedResults {
|
|
|
|
// Assert that the next backoff falls in the expected range.
|
|
|
|
var minInterval = expected - time.Duration(testRandomizationFactor*float64(expected))
|
|
|
|
var maxInterval = expected + time.Duration(testRandomizationFactor*float64(expected))
|
2019-10-09 09:48:04 +00:00
|
|
|
|
2016-09-19 17:08:39 +00:00
|
|
|
if i < 3 || i == 8 {
|
|
|
|
time.Sleep(2 * time.Second)
|
|
|
|
}
|
2019-10-09 09:48:04 +00:00
|
|
|
|
2016-09-19 17:08:39 +00:00
|
|
|
var actualInterval = exp.NextBackOff()
|
|
|
|
if !(minInterval <= actualInterval && actualInterval <= maxInterval) {
|
|
|
|
t.Error("error")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|