2023-01-27 21:37:20 +00:00
|
|
|
// Copyright (c) Tailscale Inc & AUTHORS
|
|
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
2021-01-20 17:52:24 +00:00
|
|
|
|
|
|
|
package tstime
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestRandomDurationBetween(t *testing.T) {
|
|
|
|
if got := RandomDurationBetween(1, 1); got != 1 {
|
|
|
|
t.Errorf("between 1 and 1 = %v; want 1", int64(got))
|
|
|
|
}
|
|
|
|
const min = 1 * time.Second
|
|
|
|
const max = 10 * time.Second
|
|
|
|
for i := 0; i < 500; i++ {
|
|
|
|
if got := RandomDurationBetween(min, max); got < min || got >= max {
|
|
|
|
t.Fatalf("%v (%d) out of range", got, got)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|