Tests/Integration/MSFT_xExchOabVirtualDirectory.Integration.Tests.ps1
<#
.SYNOPSIS Automated integration test for MSFT_xExchOabVirtualDirectory DSC Resource. This test module requires use of credentials. The first run through of the tests will prompt for credentials from the logged on user. #> #region HEADER [System.String]$script:moduleRoot = Split-Path -Parent (Split-Path -Parent $PSScriptRoot) [System.String]$script:DSCModuleName = 'xExchange' [System.String]$script:DSCResourceFriendlyName = 'xExchOabVirtualDirectory' [System.String]$script:DSCResourceName = "MSFT_$($script:DSCResourceFriendlyName)" Import-Module -Name (Join-Path -Path $script:moduleRoot -ChildPath (Join-Path -Path 'Tests' -ChildPath (Join-Path -Path 'TestHelpers' -ChildPath 'xExchangeTestHelper.psm1'))) -Force Import-Module -Name (Join-Path -Path $script:moduleRoot -ChildPath (Join-Path -Path 'Modules' -ChildPath 'xExchangeHelper.psm1')) -Force Import-Module -Name (Join-Path -Path $script:moduleRoot -ChildPath (Join-Path -Path 'DSCResources' -ChildPath (Join-Path -Path "$($script:DSCResourceName)" -ChildPath "$($script:DSCResourceName).psm1"))) #Check if Exchange is installed on this machine. If not, we can't run tests [System.Boolean] $exchangeInstalled = Test-ExchangeSetupComplete #endregion HEADER if ($exchangeInstalled) { #Get required credentials to use for the test $shellCredentials = Get-TestCredential #Get the Server FQDN for using in URL's if ($null -eq $serverFqdn) { $serverFqdn = [System.Net.Dns]::GetHostByName($env:COMPUTERNAME).HostName } #Get the test OAB $testOabName = Get-TestOfflineAddressBook -ShellCredentials $shellCredentials Describe 'Test Setting Properties with xExchOabVirtualDirectory' { $testParams = @{ Identity = "$($env:COMPUTERNAME)\OAB (Default Web Site)" Credential = $shellCredentials OABsToDistribute = $testOabName BasicAuthentication = $false OAuthAuthentication = $false ExtendedProtectionFlags = 'Proxy','ProxyCoHosting' ExtendedProtectionSPNList = @() ExtendedProtectionTokenChecking = 'Allow' InternalUrl = "http://$($serverFqdn)/OAB" ExternalUrl = '' RequireSSL = $false WindowsAuthentication = $true PollInterval = 481 } $expectedGetResults = @{ Identity = "$($env:COMPUTERNAME)\OAB (Default Web Site)" BasicAuthentication = $false OAuthAuthentication = $false ExtendedProtectionTokenChecking = 'Allow' InternalUrl = "http://$($serverFqdn)/OAB" ExternalUrl = '' RequireSSL = $false WindowsAuthentication = $true PollInterval = 481 } Test-TargetResourceFunctionality -Params $testParams ` -ContextLabel 'Set standard parameters' ` -ExpectedGetResults $expectedGetResults Test-ArrayContentsEqual -TestParams $testParams ` -DesiredArrayContents $testParams.ExtendedProtectionFlags ` -GetResultParameterName 'ExtendedProtectionFlags' ` -ContextLabel 'Verify ExtendedProtectionFlags' ` -ItLabel 'ExtendedProtectionFlags should contain two values' Test-ArrayContentsEqual -TestParams $testParams ` -DesiredArrayContents $testParams.ExtendedProtectionSPNList ` -GetResultParameterName 'ExtendedProtectionSPNList' ` -ContextLabel 'Verify ExtendedProtectionSPNList' ` -ItLabel 'ExtendedProtectionSPNList should be empty' Test-Array2ContainsArray1 -TestParams $testParams ` -DesiredArrayContents $testParams.OABsToDistribute ` -GetResultParameterName 'OABsToDistribute' ` -ContextLabel 'Verify OABsToDistribute' ` -ItLabel 'OABsToDistribute contains an OAB' } } else { Write-Verbose -Message 'Tests in this file require that Exchange is installed to be run.' } |