我遇到了基于类的DSC资源的单元测试问题。我试图在类中模拟几个函数,我得到一个强制转换错误。
PSInvalidCastException: Cannot convert the "bool TestVMExists(string vmPath,
string vmName)" value of type "System.Management.Automation.PSMethod" to type
"System.Management.Automation.ScriptBlock".
我的测试代码是:
using module 'C:\Program Files\WindowsPowerShell\Modules\xVMWareVM\xVMWareVM.psm1'
$resource = [xVMWareVM]::new()
Describe "Set" {
Context "If the VM does not exist" {
Mock xVMWareVM $resource.TestVMExists {return $false}
Mock xVMWareVM $resource.CreateVM
It "Calls Create VM once" {
Assert-MockCalled $resource.CreateVM -Times 1
}
}
}
有谁知道如何实现这个目标?
提前致谢
答案 0 :(得分:2)
您目前无法使用Pester模拟类功能。当前的解决方法是使用Add-Member -MemberType ScriptMethod
替换该函数。这意味着你不会得到模拟断言。
我借用DockerDsc tests by @bgelens。
如果没有您的课程代码,我无法对此进行测试,但它应该与上面的@bgelens代码一起提供您的想法。
using module 'C:\Program Files\WindowsPowerShell\Modules\xVMWareVM\xVMWareVM.psm1'
Describe "Set" {
Context "If the VM does not exist" {
$resource = [xVMWareVM]::new()
$global:CreateVmCalled = 0
$resource = $resource |
Add-Member -MemberType ScriptMethod -Name TestVMExists -Value {
return $false
} -Force -PassThru
$resource = $resource |
Add-Member -MemberType ScriptMethod -Name CreateVM -Value {
$global:CreateVmCalled ++
} -Force -PassThru
It "Calls Create VM once" {
$global:CreateVmCalled | should be 1
}
}
}