25 lines
561 B
Go
25 lines
561 B
Go
|
// Copyright 2020 the Pinniped contributors. All Rights Reserved.
|
||
|
// SPDX-License-Identifier: Apache-2.0
|
||
|
|
||
|
package testutil
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
"time"
|
||
|
|
||
|
"github.com/stretchr/testify/require"
|
||
|
)
|
||
|
|
||
|
func RequireTimeInDelta(t *testing.T, t1 time.Time, t2 time.Time, delta time.Duration) {
|
||
|
require.InDeltaf(t,
|
||
|
float64(t1.UnixNano()),
|
||
|
float64(t2.UnixNano()),
|
||
|
float64(delta.Nanoseconds()),
|
||
|
"expected %s and %s to be < %s apart, but they are %s apart",
|
||
|
t1.Format(time.RFC3339Nano),
|
||
|
t2.Format(time.RFC3339Nano),
|
||
|
delta.String(),
|
||
|
t1.Sub(t2).String(),
|
||
|
)
|
||
|
}
|