Tests/Integration/MSFT_xExchAntiMalwareScanning.Integration.Tests.ps1

<#
    .SYNOPSIS
        Automated unit integration for MSFT_xExchAntiMalwareScanning 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 = 'xExchAntiMalwareScanning'
[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 = IsSetupComplete

#endregion HEADER

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'
    }

    Describe 'Test Enabling and Disabling Malware Scanning' {
        #Test enabling with no restart of the service
        $testParams = @{
            Enabled = $true
            Credential = $Global:ShellCredentials
            AllowServiceRestart = $false
        }

        $expectedGetResults = @{
            Enabled = $true
        }

        Test-TargetResourceFunctionality -Params $testParams `
                                         -ContextLabel 'Enable Malware Scanning - No Restart' `
                                         -ExpectedGetResults $expectedGetResults

        #Test disabling with no restart of the service
        $testParams.Enabled = $false
        $expectedGetResults.Enabled = $false

        Test-TargetResourceFunctionality -Params $testParams `
                                         -ContextLabel 'Disable Malware Scanning - No Restart' `
                                         -ExpectedGetResults $expectedGetResults


        #Test enabling with a restart of the service
        $testParams.Enabled = $true
        $testParams.AllowServiceRestart = $true
        $expectedGetResults.Enabled = $true

        Test-TargetResourceFunctionality -Params $testParams `
                                         -ContextLabel 'Enable Malware Scanning - With Restart' `
                                         -ExpectedGetResults $expectedGetResults


        #Test disabling with a restart of the service
        $testParams.Enabled = $false
        $expectedGetResults.Enabled = $false

        Test-TargetResourceFunctionality -Params $testParams `
                                         -ContextLabel 'Disable Malware Scanning - With Restart' `
                                         -ExpectedGetResults $expectedGetResults
    }
}
else
{
    Write-Verbose -Message 'Tests in this file require that Exchange is installed to be run.'
}