Mock
SYNOPSIS
Mocks the behavior of an existing command with an alternate implementation.
SYNTAX
DESCRIPTION
This creates new behavior for any existing command within the scope of a Describe or Context block. The function allows you to specify a script block that will become the command's new behavior.
Optionally, you may create a Parameter Filter which will examine the parameters passed to the mocked command and will invoke the mocked behavior only if the values of the parameter values pass the filter. If they do not, the original command implementation will be invoked instead of a mock.
You may create multiple mocks for the same command, each using a different ParameterFilter. ParameterFilters will be evaluated in reverse order of their creation. The last one created will be the first to be evaluated. The mock of the first filter to pass will be used. The exception to this rule are Mocks with no filters. They will always be evaluated last since they will act as a "catch all" mock.
Mocks can be marked Verifiable. If so, the Assert-VerifiableMock command can be used to check if all Verifiable mocks were actually called. If any verifiable mock is not called, Assert-VerifiableMock will throw an exception and indicate all mocks not called.
If you wish to mock commands that are called from inside a script module, you can do so by using the -ModuleName parameter to the Mock command. This injects the mock into the specified module. If you do not specify a module name, the mock will be created in the same scope as the test script. You may mock the same command multiple times, in different scopes, as needed. Each module's mock maintains a separate call history and verified status.
EXAMPLES
EXAMPLE 1
Using this Mock, all calls to Get-ChildItem will return a hashtable with a FullName property returning "A_File.TXT"
EXAMPLE 2
This Mock will only be applied to Get-ChildItem calls within the user's temp directory.
EXAMPLE 3
When this mock is used, if the Mock is never invoked and Assert-VerifiableMock is called, an exception will be thrown. The command behavior will do nothing since the ScriptBlock is empty.
EXAMPLE 4
Multiple mocks of the same command may be used. The parameter filter determines which is invoked. Here, if Get-ChildItem is called on the "2" directory of the temp folder, then B_File.txt will be returned.
EXAMPLE 5
Here, both mocks could apply since both filters will pass. A_File.TXT will be returned because it was the most recent Mock created.
EXAMPLE 6
Here, A_File.TXT will be returned. Since no filter was specified, it will apply to any call to Get-ChildItem that does not pass another filter.
EXAMPLE 7
Here, B_File.TXT will be returned. Even though the filterless mock was created more recently. This illustrates that filterless Mocks are always evaluated last regardless of their creation order.
EXAMPLE 8
Using this Mock, all calls to Get-ChildItem from within the MyTestModule module will return a hashtable with a FullName property returning "A_File.TXT"
EXAMPLE 9
This example shows how calls to commands made from inside a module can be mocked by using the -ModuleName parameter.
PARAMETERS
-CommandName
The name of the command to be mocked.
-MockWith
A ScriptBlock specifying the behavior that will be used to mock CommandName. The default is an empty ScriptBlock. NOTE: Do not specify param or dynamicparam blocks in this script block. These will be injected automatically based on the signature of the command being mocked, and the MockWith script block can contain references to the mocked commands parameter variables.
-Verifiable
When this is set, the mock will be checked when Assert-VerifiableMock is called.
-ParameterFilter
An optional filter to limit mocking behavior only to usages of CommandName where the values of the parameters passed to the command pass the filter.
This ScriptBlock must return a boolean value. See examples for usage.
-ModuleName
Optional string specifying the name of the module where this command is to be mocked. This should be a module that calls the mocked command; it doesn't necessarily have to be the same module which originally implemented the command.
-RemoveParameterType
Optional parameter that removes a type of a parameter in the fuction declaration. This is useful when you are testing a function that has a strongly typed parameter but you are not able to create an object of the required type.
This parameter applies only to the first definintion of a mock within the current scope. If there are multiple mocks with the same name, any subsequent configuration of parameters will be ingored, including parameter validation described below.
-RemoveParameterValidation
Optional parameter that removes validation from a parameter in the fuction declaration. This is useful when you are testing a function that validates it's input, but you are unable to satisfy the validation.
This parameter applies only to the first definintion of a mock within the current scope. If there are multiple mocks with the same name, any subsequent configuration of parameters will be ingored, including parameter types described above.
CommonParameters
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.
INPUTS
OUTPUTS
NOTES
RELATED LINKS
https://pester.dev/docs/v4/commands/Assert-MockCalled
https://pester.dev/docs/v4/commands/Assert-VerifiableMock
https://pester.dev/docs/v4/commands/Describe
https://pester.dev/docs/v4/commands/Context
https://pester.dev/docs/v4/commands/It
https://pester.dev/docs/v4/commands/Should
https://pester.dev/docs/v4/usage/mocking
EDIT THIS PAGE
This page was auto-generated using Pester's comment based help. To edit the content of this page, change the corresponding help in the pester/Pester repository. See our contribution guide for more information.