A simple and lightweight module for Go providing a context clock and a mock clock for testing time-based scenarios in accelerated, deterministic time.
-
Context Clock: A clock that can be passed in a context;
-
Mock Clock: A clock that can be used in tests to simulate time passing independently of the actual time, allowing for accelerated and deterministic testing of time-based code;
-
Mock Timers: Context deadlines, timeouts, timers and tickers that behave deterministically with a mock clock, allowing for testing of time-based code without relying on the system clock or the passage of real time;
-
Compatible: Works as a drop-in replacement for the standard library
timepackage, easing migration toblugnu/time. Clock-agnostic types & functions are aliased, while clock-dependent operations have context-aware alternatives; -
Lightweight: No external dependencies, making it easy to use and integrate into existing projects;
go get github.com/blugnu/timeAs far as possible, blugnu/time is designed to be a drop-in replacement for the standard
library time package with additional functions where required.
Migration from the standard library time package to blugnu/time involves replacing
references to the time package with references to a blugnu/time.Clock interface,
usually obtained from a context:
import "time"
func DoSomethingTimeDependent(ctx context.Context) {
ux := time.Now()
// ...
}becomes:
import "github.com/blugnu/time"
func DoSomethingTimeDependent(ctx context.Context) {
time := time.FromContext(ctx)
ux := time.Now()
// ...
}Note that shadowing the time package can be a quick way to migrate code that
uses the standard library time package to use the blugnu/time package.
However, this may upset some linters and could cause confusion in larger
codebases. If this is a concern, an alternative name can be used for the clock
variable, although this will require more changes to migrate the codebase:
import "github.com/blugnu/time"
func DoSomethingTimeDependent(ctx context.Context) {
clock := time.FromContext(ctx)
ux := clock.Now()
// ...
}Alternatively, functions are provided in the blugnu/time package that correspond
to the standard library time package functions, with the addition of requiring a
context:
import "github.com/blugnu/time"
func DoSomethingTimeDependent(ctx context.Context) {
ux := time.Now(ctx)
// ...
}Aliases are provided for constants, types and clock-agnostic functions from the standard
library time package:
// standard library time
import "time"
ux := time.Unix()
// becomes:
import "github.com/blugnu/time"
ux := time.Unix()Clock-dependent functions are replaced by similes which accept a context, or may be called using an implementation provided by a clock:
// standard library time
import "time"
time.Now()
// becomes
import "github.com/blugnu/time"
time.Now(ctx)
// or:
clock := time.ClockFromContext(ctx)
clock.Now()Update references to clock-dependent functions to avoid mixing use of mocked and non-mocked time which would cause unpredictable behaviour in tests.
Context deadlines and timeouts are clock-dependent. The blugnu/time package provides
ContextWithDeadline and ContextWithTimeout functions that return a context with a
deadline or timeout that is based on the clock passed in the context. When using a mock
clock, the deadline or timeout will be based on the mock clock, allowing for deterministic
behaviour in tests.
// standard library time
import "time"
ctx, cancel := context.WithDeadline(parentCtx, time.Now().Add(5*time.Second))
defer cancel()
// becomes
import "github.com/blugnu/time"
ctx, cancel := time.ContextWithDeadline(parentCtx, time.Now().Add(5*time.Second))
defer cancel()-
inject a
MockClockinto theContextused for tests; -
use the provided
MockClockmethods to advance the clock in a deterministic fashion to exercise time-dependent code, including context deadlines and timeouts independently of the elapsed time of the test.
// Simulates testing some code using a context with a timeout that would
// normally take 10 seconds to complete in real-time.
//
// The test will instead run in milliseconds.
func TestAcceleratedTime() {
// create a mock clock
clock := time.NewMockClock()
// create a context with a 10s timeout
ctx, cancel := clock.ContextWithTimeout(context.Background(), 10*time.Second)
defer cancel() // ensure the context is cancelled to avoid leaks
// start a goroutine that will block until the context is cancelled;
// a waitgroup is used to sync with the test
var wg sync.WaitGroup
wg.Add(1)
go func() {
<-ctx.Done()
wg.Done()
}()
// advance the mock clock by 10s; this will cause the context to be cancelled
// immediately and the goroutine to unblock
clock.AdvanceBy(10 * time.Second)
wg.Wait()
// verify that the context was cancelled due to the timeout
if ctx.Err() != context.DeadlineExceeded {
t.Errorf("expected context.DeadlineExceeded, got %s", ctx.Err())
}
}Functions are provided for adding or retrieving a clock to/from a context as well as initialising a mock clock either stand-alone or in a context:
// returns the clock from the context or the system clock if not present
ClockFromContext(ctx context.Context) Clock
// adds a clock to the context; panics if the context already has a clock
ContextWithClock(ctx context.Context, clock Clock) context.Context
// adds a mock clock to the context; panics if the context already has a clock
ContextWithMockClock(ctx context.Context, opts ...MockClockOption) (context.Context, MockClock)
// configures a new mock clock
NewMockClock(opts ...MockClockOption) Clock
// returns the clock from the context or nil if not present
TryClockFromContext(ctx context.Context) ClockThe system clock is the actual clock of the system, which is used to measure real time. There is only one system clock.
A mock clock is a simulated clock that can be used to control the passage of time in tests. A mock clock can be used to simulate time passing at a different rate than the system clock while preserving the behaviour of tickers, timers, timeouts and deadlines.
This can provide tests that run more reliably and more quickly than in real-time. For example, a test that requires many hours of elapsed clock time can be executed in milliseconds.
Individual tests may use different mock clocks, allowing for different tests to run at different rates or to simulate different clock behaviours.
💡 A mocked clock in a test is only effective if the code being tested is "context-clock aware". It must consistently use a clock obtained from context and/or use the
blugnu/timepackage functions that accept a context.
A mock clock can be either running or stopped. Mock clocks are created stopped by default,
unless the StartRunning() option is applied.
A stopped clock will not advance time automatically. The clock must be explicitly advanced
using the AdvanceBy or AdvanceTo methods. This provides precise control over the passage
of time in tests.
When a mock clock is running, it will advance time automatically in real-time whenever
a clock operation is performed involving the current time, or the Update method called.
💡 A running mock clock does not update in the background. The "running" state means that the clock advances in real-time only when it is interacted with and it cannot be explicitly advanced by arbitrary increments (
AdvanceByorAdvanceTo).
Attempting to explicitly advance a running clock will result in a panic. This is to prevent accidental use of a running clock in tests that expect a stopped clock.
Similarly, calling Update on a stopped clock will also result in a panic.
Although not usually necessary or recommended, a running mock clock may be stopped and
started using the Stop and Start methods. Every call to Stop must be matched with
a call to Start to resume running.
Attempting to Start a clock that is already running will result in a panic.
Sleeping a mocked clock will block the calling goroutine until the mock time has advanced by the specified duration.
For a running clock, this is handled by waiting for the specified duration using the system clock.
For a stopped clock, the calling goroutine will be suspended until the mock clock has been advanced by the specified duration. Since the caller is suspended, the clock must be advanced by some other goroutine to resume the caller.
The AtNow option is a convenience for time.AtTime(time.SystemClock().Now()).
The AtTime option allows you to set the initial time of the mock clock. By default a mock
clock is set to the zero time (Unix Epoch).
The DropsTicks option sets the mock clock to drop any extra ticks when advancing time.
This option only affects tickers, not timers or context deadlines.
By default, if a ticker is set to fire every 1s and the clock is advanced by 10s, then
the ticker will fire 10 times, once for each second. With DropsTicks set the ticker will
fire only once in this situation, at the end of the 10 seconds.
The InLocation option allows you to set the location of the mock clock. The default is UTC.
The StartRunning option sets the mock clock to start running immediately when it is
created. By default, the mock clock is stopped and must be started manually if required.
The mock clock suspends the calling goroutine for 1ms when performing certain operations, allowing goroutines to be scheduled if required.
💡 This is not always necessary, but avoids having to manually yield the goroutine in tests that may otherwise block indefinitely and involves negligible overhead for tests that do not require it.
The YieldTime option allows the time for which the caller is suspended to be changed or
disabled entirely (specifying a duration of 0) if required.
