add support for running local machine

This commit is contained in:
Benjamin Davidson 2020-07-17 10:42:22 -07:00
Родитель 933fd342ef
Коммит ca83fc5c0a
1 изменённых файлов: 15 добавлений и 6 удалений

Просмотреть файл

@ -398,12 +398,21 @@
$reqModules += 'Hyper-V'
}
if ($nodeName -match $env:COMPUTERNAME)
{
$actModules = Get-Module -Name $reqModules -ListAvailable -ErrorAction SilentlyContinue
$actFeatureState = Get-WindowsFeature -Name $reqFeatures -ErrorAction SilentlyContinue
$actModuleCmdletNames = $actModules.ExportedCommands.Values.Name
}
else
{
$actModules, $actFeatureState = Invoke-Command -ComputerName $nodeName -ScriptBlock {
$modules = Get-Module -Name $using:reqModules -ListAvailable -ErrorAction SilentlyContinue
$featureState = Get-WindowsFeature -Name $using:reqFeatures -ErrorAction SilentlyContinue
return $Modules, $featureState
}
$actModuleCmdletNames = $actModules.ExportedCommands.Values
}
### Verify that the required features exist on the SUT
$reqFeatures | ForEach-Object {
@ -430,7 +439,7 @@
$reqCmdlets | ForEach-Object {
It "[Global Unit]-[SUT: $nodeName] should have the cmdlet [$_] available" {
$actModules.ExportedCommands.Values -contains $_ | Should be $true
$actModuleCmdletNames -contains $_ | Should be $true
}
}