mirror of
https://github.com/coder/coder.git
synced 2026-09-24 15:04:27 +08:00
* chore: add Now, Since, AfterFunc to clock; use clock for configmaps test * chore: update flake.nix vendor hash Signed-off-by: Spike Curtis <spike@coder.com> --------- Signed-off-by: Spike Curtis <spike@coder.com>
35 lines
1.4 KiB
Go
35 lines
1.4 KiB
Go
// Package clock is a library for testing time related code. It exports an interface Clock that
|
|
// mimics the standard library time package functions. In production, an implementation that calls
|
|
// thru to the standard library is used. In testing, a Mock clock is used to precisely control and
|
|
// intercept time functions.
|
|
package clock
|
|
|
|
import (
|
|
"context"
|
|
"time"
|
|
)
|
|
|
|
type Clock interface {
|
|
// TickerFunc is a convenience function that calls f on the interval d until either the given
|
|
// context expires or f returns an error. Callers may call Wait() on the returned Waiter to
|
|
// wait until this happens and obtain the error.
|
|
TickerFunc(ctx context.Context, d time.Duration, f func() error, tags ...string) Waiter
|
|
// NewTimer creates a new Timer that will send the current time on its channel after at least
|
|
// duration d.
|
|
NewTimer(d time.Duration, tags ...string) *Timer
|
|
// AfterFunc waits for the duration to elapse and then calls f in its own goroutine. It returns
|
|
// a Timer that can be used to cancel the call using its Stop method. The returned Timer's C
|
|
// field is not used and will be nil.
|
|
AfterFunc(d time.Duration, f func(), tags ...string) *Timer
|
|
|
|
// Now returns the current local time.
|
|
Now(tags ...string) time.Time
|
|
// Since returns the time elapsed since t. It is shorthand for Clock.Now().Sub(t).
|
|
Since(t time.Time, tags ...string) time.Duration
|
|
}
|
|
|
|
// Waiter can be waited on for an error.
|
|
type Waiter interface {
|
|
Wait(tags ...string) error
|
|
}
|