|
- /*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You 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 backoff
-
- import (
- "context"
- "testing"
- "time"
- )
-
- func TestBackoff_NextDelay(t *testing.T) {
- t.Parallel()
-
- tests := map[string]struct {
- minBackoff time.Duration
- maxBackoff time.Duration
- expectedRanges [][]time.Duration
- }{
- "exponential backoff with jitter honoring min and max": {
- minBackoff: 100 * time.Millisecond,
- maxBackoff: 10 * time.Second,
- expectedRanges: [][]time.Duration{
- {100 * time.Millisecond, 200 * time.Millisecond},
- {200 * time.Millisecond, 400 * time.Millisecond},
- {400 * time.Millisecond, 800 * time.Millisecond},
- {800 * time.Millisecond, 1600 * time.Millisecond},
- {1600 * time.Millisecond, 3200 * time.Millisecond},
- {3200 * time.Millisecond, 6400 * time.Millisecond},
- {6400 * time.Millisecond, 10000 * time.Millisecond},
- {6400 * time.Millisecond, 10000 * time.Millisecond},
- },
- },
- "exponential backoff with max equal to the end of a range": {
- minBackoff: 100 * time.Millisecond,
- maxBackoff: 800 * time.Millisecond,
- expectedRanges: [][]time.Duration{
- {100 * time.Millisecond, 200 * time.Millisecond},
- {200 * time.Millisecond, 400 * time.Millisecond},
- {400 * time.Millisecond, 800 * time.Millisecond},
- {400 * time.Millisecond, 800 * time.Millisecond},
- },
- },
- "exponential backoff with max equal to the end of a range + 1": {
- minBackoff: 100 * time.Millisecond,
- maxBackoff: 801 * time.Millisecond,
- expectedRanges: [][]time.Duration{
- {100 * time.Millisecond, 200 * time.Millisecond},
- {200 * time.Millisecond, 400 * time.Millisecond},
- {400 * time.Millisecond, 800 * time.Millisecond},
- {800 * time.Millisecond, 801 * time.Millisecond},
- {800 * time.Millisecond, 801 * time.Millisecond},
- },
- },
- "exponential backoff with max equal to the end of a range - 1": {
- minBackoff: 100 * time.Millisecond,
- maxBackoff: 799 * time.Millisecond,
- expectedRanges: [][]time.Duration{
- {100 * time.Millisecond, 200 * time.Millisecond},
- {200 * time.Millisecond, 400 * time.Millisecond},
- {400 * time.Millisecond, 799 * time.Millisecond},
- {400 * time.Millisecond, 799 * time.Millisecond},
- },
- },
- "min backoff is equal to max": {
- minBackoff: 100 * time.Millisecond,
- maxBackoff: 100 * time.Millisecond,
- expectedRanges: [][]time.Duration{
- {100 * time.Millisecond, 100 * time.Millisecond},
- {100 * time.Millisecond, 100 * time.Millisecond},
- {100 * time.Millisecond, 100 * time.Millisecond},
- },
- },
- "min backoff is greater then max": {
- minBackoff: 200 * time.Millisecond,
- maxBackoff: 100 * time.Millisecond,
- expectedRanges: [][]time.Duration{
- {200 * time.Millisecond, 200 * time.Millisecond},
- {200 * time.Millisecond, 200 * time.Millisecond},
- {200 * time.Millisecond, 200 * time.Millisecond},
- },
- },
- }
-
- for testName, testData := range tests {
- testData := testData
-
- t.Run(testName, func(t *testing.T) {
- t.Parallel()
-
- b := New(context.Background(), Config{
- MinBackoff: testData.minBackoff,
- MaxBackoff: testData.maxBackoff,
- MaxRetries: len(testData.expectedRanges),
- })
-
- for _, expectedRange := range testData.expectedRanges {
- delay := b.NextDelay()
-
- if delay < expectedRange[0] || delay > expectedRange[1] {
- t.Errorf("%d expected to be within %d and %d", delay, expectedRange[0], expectedRange[1])
- }
- }
- })
- }
- }
|