Tests/Integration/MSFT_AuditPolicyGUID.Integration.tests.ps1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 |
$script:DSCModuleName = 'AuditPolicyDsc' $script:DSCResourceName = 'MSFT_AuditPolicyGUID' #region HEADER # Integration Test Template Version: 1.1.1 [String] $script:moduleRoot = Split-Path -Parent (Split-Path -Parent $PSScriptRoot) if ( (-not (Test-Path -Path (Join-Path -Path $script:moduleRoot -ChildPath 'DSCResource.Tests'))) -or ` (-not (Test-Path -Path (Join-Path -Path $script:moduleRoot -ChildPath 'DSCResource.Tests\TestHelper.psm1')))) { & git @('clone','https://github.com/PowerShell/DscResource.Tests.git',(Join-Path -Path $script:moduleRoot -ChildPath '\DSCResource.Tests\')) } Import-Module (Join-Path -Path $script:moduleRoot -ChildPath 'DSCResource.Tests\TestHelper.psm1') -Force $TestEnvironment = Initialize-TestEnvironment ` -DSCModuleName $script:DSCModuleName ` -DSCResourceName $script:DSCResourceName ` -TestType Integration #endregion # set the subcategory details being tested $script:subCategory = 'Credential Validation' # Using try/finally to always cleanup even if something awful happens. try { #region Integration Tests $ConfigFile = Join-Path -Path $PSScriptRoot -ChildPath "$($script:DSCResourceName).config.ps1" . $ConfigFile Describe "$($script:DSCResourceName)_Integration" { Context 'Should enable failure audit flag' { #region DEFAULT TESTS $auditFlag = 'Failure' $auditFlagEnsure = 'Present' # set the system Subcategory to the incorrect state to ensure a valid test. & 'auditpol' '/set' "/subcategory:$subCategory" '/failure:disable' It 'Should compile without throwing' { { & "$($script:DSCResourceName)_Config" -Name $subCategory ` -AuditFlag $auditFlag ` -AuditFlagEnsure $auditFlagEnsure ` -OutputPath $TestDrive Start-DscConfiguration -Path $TestDrive ` -ComputerName localhost -Wait -Verbose -Force } | Should Not Throw } It 'Should be able to call Get-DscConfiguration without throwing' { { Get-DscConfiguration -Verbose -ErrorAction Stop } | Should Not Throw } #endregion $currentConfig = Get-DscConfiguration -Verbose -ErrorAction Stop It 'Should return the correct configuration' { $currentConfig.Name | Should Be $subCategory $currentConfig.AuditFlag | Should Be $auditFlag $currentConfig.Ensure | Should Be $auditFlagEnsure } } Context 'Should disable failure audit flag' { #region DEFAULT TESTS $auditFlag = 'Failure' $auditFlagEnsure = 'Absent' # set the system Subcategory to the incorrect state to ensure a valid test. & 'auditpol' '/set' "/subcategory:$subCategory" '/failure:enable' It 'Should compile without throwing' { { & "$($script:DSCResourceName)_Config" -Name $subCategory ` -AuditFlag $auditFlag ` -AuditFlagEnsure $auditFlagEnsure ` -OutputPath $TestDrive Start-DscConfiguration -Path $TestDrive ` -ComputerName localhost -Wait -Verbose -Force } | Should not throw } It 'Should be able to call Get-DscConfiguration without throwing' { { Get-DscConfiguration -Verbose -ErrorAction Stop } | Should Not throw } #endregion $currentConfig = Get-DscConfiguration -Verbose -ErrorAction Stop It 'Should return the correct configuration' { $currentConfig.Name | Should Be $subCategory $currentConfig.AuditFlag | Should Not Be $auditFlag $currentConfig.Ensure | Should Be $auditFlagEnsure } } Context 'Should enable success audit flag' { #region DEFAULT TESTS $auditFlag = 'Success' $auditFlagEnsure = 'Present' # set the system Subcategory to the incorrect state to ensure a valid test. & 'auditpol' '/set' "/subcategory:$subCategory" '/success:disable' It 'Should compile without throwing' { { & "$($script:DSCResourceName)_Config" -Name $subCategory ` -AuditFlag $auditFlag ` -AuditFlagEnsure $auditFlagEnsure ` -OutputPath $TestDrive Start-DscConfiguration -Path $TestDrive ` -ComputerName localhost -Wait -Verbose -Force } | Should not throw } It 'Should be able to call Get-DscConfiguration without throwing' { { Get-DscConfiguration -Verbose -ErrorAction Stop } | Should Not throw } #endregion $currentConfig = Get-DscConfiguration -Verbose -ErrorAction Stop It 'Should return the correct configuration' { $currentConfig.Name | Should Be $subCategory $currentConfig.AuditFlag | Should Be $auditFlag $currentConfig.Ensure | Should Be $auditFlagEnsure } } Context 'Should disable success audit flag' { #region DEFAULT TESTS $auditFlag = 'Success' $auditFlagEnsure = 'Absent' # set the system Subcategory to the incorrect state to ensure a valid test. & 'auditpol' '/set' "/subcategory:$subCategory" '/success:enable' It 'Should compile without throwing' { { & "$($script:DSCResourceName)_Config" -Name $subCategory ` -AuditFlag $auditFlag ` -AuditFlagEnsure $auditFlagEnsure ` -OutputPath $TestDrive Start-DscConfiguration -Path $TestDrive ` -ComputerName localhost -Wait -Verbose -Force } | Should not throw } It 'Should be able to call Get-DscConfiguration without throwing' { { Get-DscConfiguration -Verbose -ErrorAction Stop } | Should Not throw } #endregion $currentConfig = Get-DscConfiguration -Verbose -ErrorAction Stop It 'Should return the correct configuration' { $currentConfig.Name | Should Be $subCategory $currentConfig.AuditFlag | Should Not Be $auditFlag $currentConfig.Ensure | Should Be $auditFlagEnsure } } } #endregion } finally { #region FOOTER Restore-TestEnvironment -TestEnvironment $TestEnvironment #endregion } |