所以首先我需要声明我对 Pester 很陌生,可能没有正确编写我的测试或者没有正确理解它的所有功能。
所以背景是我想用 Pester 自动化我的 PowerShell 模块,并且到目前为止已经编写了一些测试。
我的模块的一部分是将配置内容保存在 clixml 文件中。我想编写一组测试以确保保存和获取配置按预期工作。
基本上我有一个功能来保存配置文件和一个检索它。我的 Pester 测试如下所示:
BeforeAll{
if(Test-path existingconfigfile.xml){
Rename-Item -Path "existingconfigfile" -NewName "backup.xml"
}
Save-configfunction -param1 'Value1' -param2 'Value2'
#saves as test.xml
}
Afterall{
if(Test-path backup.xml){
# Remove mocked test file
Remove-Item -Path "test.xml" -Force
# Place original back
Rename-Item -Path "backup.xml" -NewName "existingconfigfile.xml"
}
}
it "importconfig should return expected values for mocked object" {
{
$result = Get-config
$result
$result.Containsvalue('Value1') | Should be $true
}
}
现在我尝试了该it
块的几种变体:
it "importconfig should return expected values for mocked object" {
{
$result = Get-config
$result.param1 | Should be "Value1"
}
}
it "importconfig should return expected values for mocked object" {
$result = Get-Config
$result | Should match 'Value1'
$result | Should match 'Value2'
}
it "importconfig should return expected values for mocked object" {
$result = Get-Config
$result.Param1 | Should match 'Value1'
$result.Param2 | Should match 'Value2'
}
即使我将匹配值更改为不正确的值,Pester 也总是返回通过的测试。Pester 在所有情况下都会这样做。因此,出于某种原因,Pester 没有正确限定这些值并且总是返回一个肯定的结果。
所以我想知道我做错了什么。显然,如果值确实匹配,Pester 应该通过测试,但是当它们不匹配时它应该失败。