スクリプトの先頭に関数が含まれ、その後にこれらの関数を呼び出すさまざまなコマンドが続く PowerShell .ps1 ファイルがあります。スクリプト ファイルの単体テストに Pester を使用しています。
PowerShell .ps1 スクリプト内にある関数をモックするにはどうすればよいですか?
関数をモックしようとしましたが、「コマンドが見つかりませんでした」というエラーが表示されます。
また、記述ブロックに空の「ダミー」関数を追加しようとしました。これで上記のエラーは発生しませんが、スクリプト内の関数を正しくモックしていません。
私は2つのファイルを持っています。1 つはテストを保持し、もう 1 つは関数と関数の呼び出しを保持します。以下に 2 つの例を示します。
ファイル1.ps1
Function Backup-Directory([switch]$IsError)
{
If($IsError)
{
Write-Error "Error"
Exit 1
}
}
Backup-Directory $true
File2.Tests.ps1
$here = (Split-Path -Parent $MyInvocation.MyCommand.Path) -replace '\\test', '\main'
$sut = (Split-Path -Leaf $MyInvocation.MyCommand.Path) -replace '\.Tests\.', '.'
$productionFile = "$here\$sut"
Describe "File1" {
Context "When the Back-Directory outputs an error." {
# Arrange
Mock Back-Directory { }
Mock Write-Error
# Act
& $productionFile
$hasSucceeded = $?
# Assert
It "Calls Backup-Directory" {
Assert-MockCalled Backup-Directory -Exactly 1 -ParameterFilter {
$IsError -eq $true
}
}
It "Writes error message." {
Assert-MockCalled Write-Error -Exactly 1 -ParameterFilter {
$Message -eq "Error"
}
}
It "Exits with an error." {
$hasSucceeded | Should be $false
}
}
}