Tests/Integration/MSFT_xDFSReplicationGroupFolder.Integration.Tests.ps1
<#
These integration tests can only be run on a computer that: 1. Is a member of an Active Directory domain. 2. Has access to two Windows Server 2012 or greater servers with the FS-DFS-Replication and RSAT-DFS-Mgmt-Con features installed. 3. An AD User account that has the required permissions that are needed to create a DFS Replication Group. If the above are available then to allow these tests to be run a MSFT_xDFSReplicationGroupFolder.config.json file must be created in the same folder as this file. The content should be a customized version of the following: { "Username": "CONTOSO.COM\\Administrator", "Folders": [ "TestFolder1", "TestFolder2" ], "Members": [ "Server1", "Server2" ], "ContentPaths": [ "c:\\IntegrationTests\\TestFolder1", "c:\\IntegrationTests\\TestFolder2" ], "Password": "MyPassword" } If the above are available and configured these integration tests will run. #> $Global:DSCModuleName = 'xDFS' $Global:DSCResourceName = 'MSFT_xDFSReplicationGroupFolder' # Test to see if the config file is available. $ConfigFile = "$([System.IO.Path]::GetDirectoryName($MyInvocation.MyCommand.Path))\$($Global:DSCResourceName).config.json" if (! (Test-Path -Path $ConfigFile)) { return } #region HEADER # Integration Test Template Version: 1.1.0 [String] $moduleRoot = Split-Path -Parent (Split-Path -Parent (Split-Path -Parent $Script:MyInvocation.MyCommand.Path)) if ( (-not (Test-Path -Path (Join-Path -Path $moduleRoot -ChildPath 'DSCResource.Tests'))) -or ` (-not (Test-Path -Path (Join-Path -Path $moduleRoot -ChildPath 'DSCResource.Tests\TestHelper.psm1'))) ) { & git @('clone','https://github.com/PowerShell/DscResource.Tests.git',(Join-Path -Path $moduleRoot -ChildPath '\DSCResource.Tests\')) } Import-Module (Join-Path -Path $moduleRoot -ChildPath 'DSCResource.Tests\TestHelper.psm1') -Force $TestEnvironment = Initialize-TestEnvironment ` -DSCModuleName $Global:DSCModuleName ` -DSCResourceName $Global:DSCResourceName ` -TestType Integration #endregion # Using try/finally to always cleanup even if something awful happens. try { #region Integration Tests $ConfigFile = Join-Path -Path $PSScriptRoot -ChildPath "$($Global:DSCResourceName).config.ps1" . $ConfigFile Describe "$($Global:DSCResourceName)_Integration" { # Create the Replication group to work with New-DFSReplicationGroup ` -GroupName $ReplicationGroupFolder.GroupName foreach ($Member in $ReplicationGroupFolder.Members) { Add-DFSRMember ` -GroupName $ReplicationGroupFolder.GroupName ` -ComputerName $Member } foreach ($Folder in $ReplicationGroupFolder.Folders) { New-DFSReplicatedFolder ` -GroupName $ReplicationGroupFolder.GroupName ` -FolderName $Folder } #region DEFAULT TESTS It 'Should compile without throwing' { { $ConfigData = @{ AllNodes = @( @{ NodeName = 'localhost' PSDscAllowPlainTextPassword = $true } ) } Invoke-Expression -Command "$($Global:DSCResourceName)_Config -OutputPath `$TestEnvironment.WorkingFolder -ConfigurationData `$ConfigData" Start-DscConfiguration -Path $TestEnvironment.WorkingFolder -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 It 'Should have set the resource and all the parameters should match' { $ReplicationGroupFolderNew = Get-DfsReplicatedFolder ` -GroupName $ReplicationGroupFolder.GroupName ` -FolderName $ReplicationGroupFolder.FolderName ` -ErrorAction Stop $ReplicationGroupFolderNew.GroupName | Should Be $ReplicationGroupFolder.GroupName $ReplicationGroupFolderNew.FolderName | Should Be $ReplicationGroupFolder.FolderName $ReplicationGroupFolderNew.Description | Should Be $ReplicationGroupFolder.Description $ReplicationGroupFolderNew.DirectoryNameToExclude | Should Be $ReplicationGroupFolder.DirectoryNameToExclude $ReplicationGroupFolderNew.FilenameToExclude | Should Be $ReplicationGroupFolder.FilenameToExclude } # Clean up Remove-DFSReplicationGroup ` -GroupName $ReplicationGroupFolder.GroupName ` -RemoveReplicatedFolders ` -Force ` -Confirm:$false } #endregion } finally { #region FOOTER Restore-TestEnvironment -TestEnvironment $TestEnvironment #endregion } |