Documentation
¶
Overview ¶
Package mock contains the basic collection of functions and types for controlling mocks and mock request/response setup. It is part of the public interface and starting to get stable, however, we are still experimenting to optimize the interface and the user experience.
Index ¶
- Constants
- Variables
- func Chain(fncalls ...func(*Mocks) any) func(*Mocks) any
- func Detach(mode DetachMode, fncall func(*Mocks) any) func(*Mocks) any
- func Get[T any](mocks *Mocks, creator func(*Controller) *T) *T
- func GetSubSlice[T any](from, to int, calls []T) any
- func NewErrDetachMode(mode DetachMode) error
- func NewErrDetachNotAllowed(mode DetachMode) error
- func NewErrNoCall(call any) error
- func Parallel(fncalls ...func(*Mocks) any) func(*Mocks) any
- func Setup(fncalls ...func(*Mocks) any) func(*Mocks) any
- func Sub(from, to int, fncall func(*Mocks) any) func(*Mocks) any
- type Call
- type ConfigFunc
- func Context(context int) ConfigFunc
- func ContinueOnMethod(enable bool) ConfigFunc
- func DisableCapacities(disable bool) ConfigFunc
- func DisableMethods(disable bool) ConfigFunc
- func DisablePointerAddresses(disable bool) ConfigFunc
- func DisablePointerMethods(disable bool) ConfigFunc
- func FromDate(date string) ConfigFunc
- func FromFile(file string) ConfigFunc
- func Indent(indent string) ConfigFunc
- func MaxDepth(maxDepth int) ConfigFunc
- func SortKeys(sort bool) ConfigFunc
- func SpewKeys(spew bool) ConfigFunc
- func ToDate(date string) ConfigFunc
- func ToFile(file string) ConfigFunc
- type Controller
- type DetachMode
- type DiffConfig
- func (c *DiffConfig) Context(context int)
- func (c *DiffConfig) ContinueOnMethod(enable bool)
- func (c *DiffConfig) Diff(want, got any) string
- func (c *DiffConfig) DisableCapacities(disable bool)
- func (c *DiffConfig) DisableMethods(disable bool)
- func (c *DiffConfig) DisablePointerAddresses(disable bool)
- func (c *DiffConfig) DisablePointerMethods(disable bool)
- func (c *DiffConfig) FromDate(date string)
- func (c *DiffConfig) FromFile(file string)
- func (c *DiffConfig) Indent(indent string)
- func (c *DiffConfig) MaxDepth(maxDepth int)
- func (c *DiffConfig) SortKeys(sort bool)
- func (c *DiffConfig) SpewKeys(spew bool)
- func (c *DiffConfig) ToDate(date string)
- func (c *DiffConfig) ToFile(file string)
- type Equal
- type Mocks
- func (mocks *Mocks) Add(delta int) int
- func (mocks *Mocks) Call(fn any, call func(...any) []any) any
- func (mocks *Mocks) Config(fncalls ...ConfigFunc) *Mocks
- func (mocks *Mocks) Do(fn any, args ...any) any
- func (mocks *Mocks) Done()
- func (mocks *Mocks) Equal(want any) *Equal
- func (mocks *Mocks) Expect(fncalls SetupFunc) *Mocks
- func (mocks *Mocks) Get(creator reflect.Value) any
- func (mocks *Mocks) GetArg(key any) any
- func (mocks *Mocks) GetMock(expect any) any
- func (mocks *Mocks) Panic(fn any, reason any) any
- func (mocks *Mocks) Return(fn any, args ...any) any
- func (mocks *Mocks) SetArg(key any, value any) *Mocks
- func (mocks *Mocks) SetArgs(args map[any]any) *Mocks
- func (mocks *Mocks) Times(num int) int
- func (mocks *Mocks) Wait()
- type SetupFunc
Constants ¶
const ( // DefaultContext provides the default number of context lines to show // before and after the changes in a diff. DefaultContext = 3 // DefaultSkippingSize is the maximum size of the string representation of // a value presented in the output. DefaultSkippingSize = 50 // bufio.MaxScanTokenSize - 100 // DefaultSkippingTail is the size of the tail after the skipped value // part. DefaultSkippingTail = 5 )
Variables ¶
var ( // ErrTypeNotSupported type for unsupported type errors. ErrTypeNotSupported = errors.New("type not supported") // ErrModeNotSupported type for unsupported mode errors. ErrModeNotSupported = errors.New("mode not supported") )
Functions ¶
func Chain ¶
Chain creates a single chain of mock calls that is validated by `gomock`. If the execution order deviates from the order defined in the chain, the test validation fails. The method returns the full mock calls tree to allow chaining with other ordered setup method.
func Detach ¶
func Detach(mode DetachMode, fncall func(*Mocks) any) func(*Mocks) any
Detach detach given mock call setup using given detach mode. It is possible to detach the mock call from the preceding mock calls (`Head`), from the succeeding mock calls (`Tail`), or from both as used in `Setup`.
func Get ¶
func Get[T any](mocks *Mocks, creator func(*Controller) *T) *T
Get resolves the actual mock from the mock handler by providing the constructor function generated by `gomock` to create a new mock.
func GetSubSlice ¶
GetSubSlice returns the sub slice of mock calls starting at index `from` up to index `to` including. A negative value is used to calculate an index from the end of the slice. If the index `from` is after the index `to`, the indexes are automatically switched.
func NewErrDetachMode ¶
func NewErrDetachMode(mode DetachMode) error
NewErrDetachMode creates an error that the given detach mode is not supported.
func NewErrDetachNotAllowed ¶
func NewErrDetachNotAllowed(mode DetachMode) error
NewErrDetachNotAllowed creates an error that the detach mode is not supported.
func NewErrNoCall ¶
NewErrNoCall creates an error with given call type to panic on incorrect call type.
func Parallel ¶
Parallel creates a set of parallel set of mock calls that is validated by `gomock`. While the parallel setup provides some freedom, this still defines constraints with respect to parent and child setup methods, e.g. when setting up parallel chains in a chain, each parallel chains needs to follow the last mock call and finish before the following mock call.
If the execution order deviates from the order defined by the parallel context, the test validation fails. The method returns the full set of mock calls to allow combining them with other ordered setup methods.
func Setup ¶
Setup creates only a lazily ordered set of mock calls that is detached from the parent setup by returning no calls for chaining. The mock calls created by the setup are only validated in so far in relation to each other, that `gomock` delivers results for the same mock call receiver in the order provided during setup.
func Sub ¶
Sub returns the sub slice of mock calls starting at index `from` up to index `to` including. A negative value is used to calculate an index from the end of the slice. If the index of `from` is higher as the index `to`, the indexes are automatically switched. The returned sub slice of mock calls keeps its original semantic.
Types ¶
type ConfigFunc ¶ added in v0.0.34
type ConfigFunc func(*Mocks)
ConfigFunc common mock handler configuration function signature.
func Context ¶ added in v0.0.34
func Context(context int) ConfigFunc
Context sets the number of context lines to show before and after changes in a diff. The default, 3, means no context lines.
func ContinueOnMethod ¶ added in v0.0.34
func ContinueOnMethod(enable bool) ConfigFunc
ContinueOnMethod sets whether or not recursion should continue once a custom error or `Stringer` interface is invoked. The default, false, means it will print the results of invoking the custom error or `Stringer` interface and return immediately instead of continuing to recurse into the internals of the data type.
*Note:* This flag does not have any effect if method invocation is disabled via the DisableMethods or DisablePointerMethods options.
func DisableCapacities ¶ added in v0.0.34
func DisableCapacities(disable bool) ConfigFunc
DisableCapacities sets whether to disable the printing of capacities for arrays, slices, maps and channels. This is useful when diffing data structures in tests.
func DisableMethods ¶ added in v0.0.34
func DisableMethods(disable bool) ConfigFunc
DisableMethods sets whether or not error and `Stringer` interfaces are invoked for types that implement them. Default is true, meaning that these methods will not be invoked.
func DisablePointerAddresses ¶ added in v0.0.34
func DisablePointerAddresses(disable bool) ConfigFunc
DisablePointerAddresses sets whether to disable the printing of pointer addresses. This is useful when diffing data structures in tests.
func DisablePointerMethods ¶ added in v0.0.34
func DisablePointerMethods(disable bool) ConfigFunc
DisablePointerMethods sets whether or not to check for and invoke error and `Stringer` interfaces on types which only accept a pointer receiver when the current type is not a pointer.
*Note:* This might be an unsafe action since calling one a pointer receiver could technically mutate the value. In practice, types which choose to satisfy an error or `Stringer` interface with a pointer receiver should not mutate their state inside these methods. As a result, this option relies on access to the unsafe package, so it will not have any effect when running in environments without access to the unsafe package such as Google App Engine or with the "safe" build tag specified.
func FromDate ¶ added in v0.0.34
func FromDate(date string) ConfigFunc
FromDate sets the label to use for the "from" date of the diff. Default is empty.
func FromFile ¶ added in v0.0.34
func FromFile(file string) ConfigFunc
FromFile sets the label to use for the "from" side of the diff. Default is `Want`.
func Indent ¶ added in v0.0.34
func Indent(indent string) ConfigFunc
Indent sets the string to use for each indentation level. The global config instance that all top-level functions use set this to a single space by default. If you would like more indentation, you might set this to a tab with `\t` or perhaps two spaces with ` `.
func MaxDepth ¶ added in v0.0.34
func MaxDepth(maxDepth int) ConfigFunc
MaxDepth sets the maximum number of levels to descend into nested data structures. The default 0 means there is no limit. Circular data structures are properly detected, so it is not necessary to set this value unless you specifically want to limit deeply nested structures.
func SortKeys ¶ added in v0.0.34
func SortKeys(sort bool) ConfigFunc
SortKeys sets whether map keys should be sorted before being printed. Use this to have a more deterministic, diffable output. Note that only native types (bool, int, uint, floats, uintptr and string) and types that support the error or `Stringer` interfaces (if methods are enabled) are supported, with other types sorted according to the reflect.Value.String() output which guarantees display stability.
func SpewKeys ¶ added in v0.0.34
func SpewKeys(spew bool) ConfigFunc
SpewKeys sets that, as a last resort attempt, map keys should be spewed to strings and sorted by those strings. This is only considered if keys are sorted (see `SortKeys`).
func ToDate ¶ added in v0.0.34
func ToDate(date string) ConfigFunc
ToDate specifies the label to use for the "to" date of the diff. Default is empty.
func ToFile ¶ added in v0.0.34
func ToFile(file string) ConfigFunc
ToFile sets the label to use for the "to" side of the diff. Default is `Got`.
type DetachMode ¶
type DetachMode int
DetachMode defines the mode for detaching mock calls.
const ( // None mode to not detach mode. None DetachMode = 0 // Head mode to detach head, i.e. do not order mock calls after predecessor // mock calls provided via context. Head DetachMode = 1 // Tail mode to detach tail, i.e. do not order mock calls before successor // mock calls provided via context. Tail DetachMode = 2 // Both mode to detach tail and head, i.e. do neither order mock calls after // predecessor nor before successor provided via context. Both DetachMode = 3 )
func (DetachMode) String ¶
func (m DetachMode) String() string
String return string representation of detach mode.
type DiffConfig ¶ added in v0.0.49
type DiffConfig struct {
// contains filtered or unexported fields
}
DiffConfig holds configuration settings for matchers.
func NewDiffConfig ¶ added in v0.0.49
func NewDiffConfig() *DiffConfig
NewDiffConfig creates a new matcher configuration instance with default values.
func (*DiffConfig) Context ¶ added in v0.0.49
func (c *DiffConfig) Context(context int)
Context sets the number of context lines to show before and after changes in a diff. The default, 3, means no context lines.
func (*DiffConfig) ContinueOnMethod ¶ added in v0.0.49
func (c *DiffConfig) ContinueOnMethod(enable bool)
ContinueOnMethod sets whether or not recursion should continue once a custom error or `Stringer` interface is invoked. The default, false, means it will print the results of invoking the custom error or `Stringer` interface and return immediately instead of continuing to recurse into the internals of the data type.
*Note:* This flag does not have any effect if method invocation is disabled via the DisableMethods or DisablePointerMethods options.
func (*DiffConfig) Diff ¶ added in v0.0.49
func (c *DiffConfig) Diff(want, got any) string
Diff returns a diff of the expected value and the actual value as long as both are of the same type and are a struct, map, slice, array or string. Otherwise it returns an empty string.
func (*DiffConfig) DisableCapacities ¶ added in v0.0.49
func (c *DiffConfig) DisableCapacities(disable bool)
DisableCapacities sets whether to disable the printing of capacities for arrays, slices, maps and channels. This is useful when diffing data structures in tests.
func (*DiffConfig) DisableMethods ¶ added in v0.0.49
func (c *DiffConfig) DisableMethods(disable bool)
DisableMethods sets whether or not error and `Stringer` interfaces are invoked for types that implement them. Default is true, meaning that these methods will not be invoked.
func (*DiffConfig) DisablePointerAddresses ¶ added in v0.0.49
func (c *DiffConfig) DisablePointerAddresses(disable bool)
DisablePointerAddresses sets whether to disable the printing of pointer addresses. This is useful when diffing data structures in tests.
func (*DiffConfig) DisablePointerMethods ¶ added in v0.0.49
func (c *DiffConfig) DisablePointerMethods(disable bool)
DisablePointerMethods sets whether or not to check for and invoke error and `Stringer` interfaces on types which only accept a pointer receiver when the current type is not a pointer.
*Note:* This might be an unsafe action since calling one a pointer receiver could technically mutate the value. In practice, types which choose to satisfy an error or `Stringer` interface with a pointer receiver should not mutate their state inside these methods. As a result, this option relies on access to the unsafe package, so it will not have any effect when running in environments without access to the unsafe package such as Google App Engine or with the "safe" build tag specified.
func (*DiffConfig) FromDate ¶ added in v0.0.49
func (c *DiffConfig) FromDate(date string)
FromDate sets the label to use for the "from" date of the diff. Default is empty.
func (*DiffConfig) FromFile ¶ added in v0.0.49
func (c *DiffConfig) FromFile(file string)
FromFile sets the label to use for the "from" side of the diff. Default is `Want`.
func (*DiffConfig) Indent ¶ added in v0.0.49
func (c *DiffConfig) Indent(indent string)
Indent sets the string to use for each indentation level. The global config instance that all top-level functions use set this to a single space by default. If you would like more indentation, you might set this to a tab with `\t` or perhaps two spaces with ` `.
func (*DiffConfig) MaxDepth ¶ added in v0.0.49
func (c *DiffConfig) MaxDepth(maxDepth int)
MaxDepth sets the maximum number of levels to descend into nested data structures. The default 0 means there is no limit. Circular data structures are properly detected, so it is not necessary to set this value unless you specifically want to limit deeply nested structures.
func (*DiffConfig) SortKeys ¶ added in v0.0.49
func (c *DiffConfig) SortKeys(sort bool)
SortKeys sets map keys should be sorted before being printed. Use this to have a more deterministic, diffable output. Note that only native types (bool, int, uint, floats, uintptr and string) and types that support the error or `Stringer` interfaces (if methods are enabled) are supported, with other types sorted according to the reflect.Value.String() output which guarantees display stability.
func (*DiffConfig) SpewKeys ¶ added in v0.0.49
func (c *DiffConfig) SpewKeys(spew bool)
SpewKeys sets that, as a last resort attempt, map keys should be spewed to strings and sorted by those strings. This is only considered if keys are sorted (see `SortKeys`).
func (*DiffConfig) ToDate ¶ added in v0.0.49
func (c *DiffConfig) ToDate(date string)
ToDate sets the label to use for the "to" date of the diff. Default is empty.
func (*DiffConfig) ToFile ¶ added in v0.0.49
func (c *DiffConfig) ToFile(file string)
ToFile sets the label to use for the "to" side of the diff. Default is `Got`.
type Equal ¶ added in v0.0.34
type Equal struct {
// contains filtered or unexported fields
}
Equal is an improved `gomock.Matcher` that matches via `reflect.DeepEqual` showing detailed diff when there is a mismatch.
func (*Equal) Matches ¶ added in v0.0.34
Matches returns whether the actual value is equal to the expected value.
type Mocks ¶
type Mocks struct {
// The mock controller used.
Ctrl *Controller
// contains filtered or unexported fields
}
Mocks common mock handler.
func NewMocks ¶
func NewMocks(t gomock.TestReporter, fncalls ...ConfigFunc) *Mocks
NewMocks creates a new mock handler using given test reporter, e.g. *testing.T, or [test.Test].
func (*Mocks) Add ¶
Add adds the given delta on the wait group to register the expected or notify the consumed mock calls. This method implements the sync.WaitGroup interface to support testing of detached *goroutines* in an isolated [test](../test) environment.
**Note:** Usually call expectation setup is completely handled via `Call`, `Do`, `Return`, and `Panic`. Use this method only for synchronizing tests *goroutines*.
func (*Mocks) Call ¶
Call is a convenience method to setup a call back function for gomock.Do and gomock.DoAndReturn. Using this method signals an expected mock call during setup as well as a consumed mock call when executing the given call back function. The function is supplied with the regular call parameters and expected to return the mock result - if required, as gomock.Do ignores arguments.
**Note:** Call registers exactly one expected call automatically.
func (*Mocks) Config ¶ added in v0.0.34
func (mocks *Mocks) Config(fncalls ...ConfigFunc) *Mocks
Config configures the mock handler with given config functions.
func (*Mocks) Do ¶
Do is a convenience method to setup a call back function for gomock.Do or gomock.DoAndReturn. Using this method signals an expected mock call during setup as well as a consumed mock call when executing the given call back function returning the given optional arguments as mock result - if necessary, as gomock.Do ignores arguments.
**Note:** Do registers exactly one expected call automatically.
func (*Mocks) Done ¶
func (mocks *Mocks) Done()
Done removes exactly one expected mock call from the wait group to notify a consumed mock call. This method implements the sync.WaitGroup interface to support testing of detached `go-routines` in an isolated [test](../test) environment.
**Note:** Usually call expectation setup is completely handled via `Call`, `Do`, `Return`, and `Panic`. Use this method only for synchronizing tests *goroutines*.
func (*Mocks) Equal ¶ added in v0.0.34
Equal returns an improved equals matcher showing a detailed diff when there is a mismatch in the expected and actual values.
func (*Mocks) Get ¶
Get resolves the singleton mock from the mock handler by providing the reflection value of the constructor function generated by gomock to create a new mock. The mock is only created once and stored in an internal creator function to mock map.
func (*Mocks) GetArg ¶
GetArg gets the mock argument value for the given argument key. This can be used to access a common test arguments from a mock call.
func (*Mocks) GetMock ¶ added in v0.0.51
GetMock resolves the related mock from the mock handler, if the provided value is a mock constructor. Else the provided value is returned as is. This can be used to resolve optional mock expectations without breaking other test expectations.
func (*Mocks) Panic ¶
Panic is a convenience method to setup a call back function that panics with given reason for gomock.Do or gomock.DoAndReturn. Using this method signals an expected mock call during setup as well as a consumed mock call when executing the given call back function.
**Note:** Return registers exactly one expected call automatically.
func (*Mocks) Return ¶
Return is a convenience method to setup a call back function for gomock.Do or gomock.DoAndReturn. Using this method signals an expected mock call during setup as well as a consumed mock call when executing the given call back function returning the given optional arguments as mock result - if necessary, as gomock.Do ignores arguments.
**Note:** Return registers exactly one expected call automatically.
func (*Mocks) SetArg ¶
SetArg sets the given mock argument value for the given argument key. This can be used to pass a common test arguments to mock calls.
func (*Mocks) SetArgs ¶
SetArgs sets the given mock argument values for the given argument keys. This can be used to pass a set of common test arguments to mock calls.
func (*Mocks) Times ¶
Times is creating the expectation that exactly the given number of mock call are consumed. This call is supposed to be used as input for gomock.Times in combination with Call, [Do], [Return], and [Panic]. Setting up [Times] is considering that these methods add one expected call by reducing the registration by one.
func (*Mocks) Wait ¶
func (mocks *Mocks) Wait()
Wait waits for all mock calls registered via Call, [Do], [Return], [Panic], and [Times] to be consumed before testing can continue. This method implements the sync.WaitGroup interface to support testing of detached *goroutines* in an isolated [test](../test) environment.