Test/MSFT_xExchActiveSyncVirtualDirectory.Integration.Tests.ps1
###NOTE: This test module requires use of credentials. The first run through of the tests will prompt for credentials from the logged on user. Import-Module $PSScriptRoot\..\DSCResources\MSFT_xExchActiveSyncVirtualDirectory\MSFT_xExchActiveSyncVirtualDirectory.psm1 Import-Module $PSScriptRoot\..\Misc\xExchangeCommon.psm1 -Verbose:0 Import-Module $PSScriptRoot\xExchange.Tests.Common.psm1 -Verbose:0 #Check if Exchange is installed on this machine. If not, we can't run tests [bool]$exchangeInstalled = IsSetupComplete if ($exchangeInstalled) { #Get required credentials to use for the test if ($null -eq $Global:ShellCredentials) { [PSCredential]$Global:ShellCredentials = Get-Credential -Message "Enter credentials for connecting a Remote PowerShell session to Exchange" } #Get the Server FQDN for using in URL's if ($null -eq $Global:ServerFqdn) { $Global:ServerFqdn = [System.Net.Dns]::GetHostByName($env:COMPUTERNAME).HostName } if ($null -eq $Global:WebCertAuthInstalled) { $webCertAuth = Get-WindowsFeature -Name Web-Cert-Auth if ($webCertAuth.InstallState -ne "Installed") { $Global:WebCertAuthInstalled = $false Write-Verbose "Web-Cert-Auth is not installed. Skipping certificate based authentication tests." } else { $Global:WebCertAuthInstalled = $true } } if ($Global:WebCertAuthInstalled -eq $true) { #Get the thumbprint to use for ActiveSync Cert Based Auth if ($null -eq $Global:CBACertThumbprint) { $Global:CBACertThumbprint = Read-Host -Prompt "Enter the thumbprint of an Exchange certificate to use when enabling Certificate Based Authentication" } } Describe "Test Setting Properties with xExchActiveSyncVirtualDirectory" { $testParams = @{ Identity = "$($env:COMPUTERNAME)\Microsoft-Server-ActiveSync (Default Web Site)" Credential = $Global:ShellCredentials AutoCertBasedAuth = $false AutoCertBasedAuthThumbprint = '' BasicAuthEnabled = $true ClientCertAuth = 'Ignore' CompressionEnabled = $false ExternalUrl = "https://$($Global:ServerFqdn)/Microsoft-Server-ActiveSync" InternalUrl = "https://$($Global:ServerFqdn)/Microsoft-Server-ActiveSync" WindowsAuthEnabled = $false } $expectedGetResults = @{ Identity = "$($env:COMPUTERNAME)\Microsoft-Server-ActiveSync (Default Web Site)" BasicAuthEnabled = $true ClientCertAuth = 'Ignore' CompressionEnabled = $false ExternalUrl = "https://$($Global:ServerFqdn)/Microsoft-Server-ActiveSync" InternalUrl = "https://$($Global:ServerFqdn)/Microsoft-Server-ActiveSync" WindowsAuthEnabled = $false } Test-TargetResourceFunctionality -Params $testParams -ContextLabel "Set standard parameters" -ExpectedGetResults $expectedGetResults $testParams.ExternalUrl = '' $testParams.InternalUrl = '' $expectedGetResults.ExternalUrl = $null $expectedGetResults.InternalUrl = $null Test-TargetResourceFunctionality -Params $testParams -ContextLabel "Try with empty URL's" -ExpectedGetResults $expectedGetResults if ($Global:WebCertAuthInstalled -eq $true) { $testParams.AutoCertBasedAuth = $true $testParams.AutoCertBasedAuthThumbprint = $Global:CBACertThumbprint $testParams.ClientCertAuth = 'Required' $expectedGetResults.ClientCertAuth = 'Required' Test-TargetResourceFunctionality -Params $testParams -ContextLabel "Try enabling certificate based authentication" -ExpectedGetResults $expectedGetResults } #Set Authentication values back to default $testParams = @{ Identity = "$($env:COMPUTERNAME)\Microsoft-Server-ActiveSync (Default Web Site)" Credential = $Global:ShellCredentials BasicAuthEnabled = $false ClientCertAuth = 'Ignore' WindowsAuthEnabled = $true } $expectedGetResults = @{ Identity = "$($env:COMPUTERNAME)\Microsoft-Server-ActiveSync (Default Web Site)" BasicAuthEnabled = $false ClientCertAuth = 'Ignore' WindowsAuthEnabled = $true } Test-TargetResourceFunctionality -Params $testParams -ContextLabel "Reset authentication to default" -ExpectedGetResults $expectedGetResults } } else { Write-Verbose "Tests in this file require that Exchange is installed to be run." } |