Tests/DSCluster/SDRS-AutomationLevel.Vester.ps1
# Test file for the Vester module - https://github.com/WahlNetwork/Vester # Called via Invoke-Pester VesterTemplate.Tests.ps1 # Test title, e.g. 'DNS Servers' $Title = 'SDRS State' # Test description: How New-VesterConfig explains this value to the user $Description = 'Specifies the Storage DRS automation level for the datastore cluster. This parameter accepts Disabled, Manual, and FullyAutomated values' # The config entry stating the desired values $Desired = $cfg.dscluster.sdrsautomationlevel # The test value's data type, to help with conversion: bool/string/int $Type = 'string' # The command(s) to pull the actual value for comparison # $Object will scope to the folder this test is in (Cluster, Host, etc.) [ScriptBlock]$Actual = { $Object.SdrsAutomationLevel } # The command(s) to match the environment to the config # Use $Object to help filter, and $Desired to set the correct value [ScriptBlock]$Fix = { Set-DatastoreCluster -DatastoreCluster $Object -SdrsAutomationLevel $Desired -Confirm:$FALSE -ErrorAction Stop } |