Tests/SyncRules.Tests.ps1
|
#Requires -Modules Pester <# .SYNOPSIS Pester tests for Sync Rule cmdlets. #> BeforeAll { $ModulePath = Join-Path $PSScriptRoot '..' Get-Module JIM -ErrorAction SilentlyContinue | Remove-Module -Force Import-Module $ModulePath -Force } AfterAll { Get-Module JIM -ErrorAction SilentlyContinue | Remove-Module -Force } Describe 'Get-JIMSyncRule' { Context 'Parameter Sets' { BeforeAll { $command = Get-Command Get-JIMSyncRule } It 'Should have a List parameter set as default' { $command.DefaultParameterSet | Should -Be 'List' } It 'Should have a ById parameter set' { $command.ParameterSets.Name | Should -Contain 'ById' } } Context 'Parameter Validation' { BeforeAll { $command = Get-Command Get-JIMSyncRule } It 'Should have Id parameter' { $command.Parameters['Id'] | Should -Not -BeNullOrEmpty } It 'Should have ConnectedSystemId parameter that accepts pipeline by property name' { $param = $command.Parameters['ConnectedSystemId'] $param | Should -Not -BeNullOrEmpty $param.Attributes | Where-Object { $_ -is [System.Management.Automation.ParameterAttribute] -and $_.ValueFromPipelineByPropertyName } | Should -Not -BeNullOrEmpty } It 'Should have ConnectedSystemName parameter' { $command.Parameters['ConnectedSystemName'] | Should -Not -BeNullOrEmpty } } Context 'Requires Connection' { BeforeEach { Disconnect-JIM } It 'Should throw when not connected' { { Get-JIMSyncRule } | Should -Throw '*Connect-JIM*' } } Context 'Help Documentation' { BeforeAll { $help = Get-Help Get-JIMSyncRule -Full } It 'Should have a synopsis' { $help.Synopsis | Should -Not -BeNullOrEmpty } It 'Should have examples' { $help.Examples.Example.Count | Should -BeGreaterThan 0 } It 'Should have related links' { $help.RelatedLinks | Should -Not -BeNullOrEmpty } } } Describe 'New-JIMSyncRule' { Context 'Parameter Validation' { BeforeAll { $command = Get-Command New-JIMSyncRule } It 'Should have a mandatory Name parameter' { $param = $command.Parameters['Name'] $param.Attributes | Where-Object { $_ -is [System.Management.Automation.ParameterAttribute] -and $_.Mandatory } | Should -Not -BeNullOrEmpty } It 'Should have a mandatory ConnectedSystemId parameter in ById set' { $param = $command.Parameters['ConnectedSystemId'] $paramAttr = $param.Attributes | Where-Object { $_ -is [System.Management.Automation.ParameterAttribute] -and $_.Mandatory -and $_.ParameterSetName -eq 'ById' } $paramAttr | Should -Not -BeNullOrEmpty } It 'Should have a ConnectedSystemName parameter' { $command.Parameters['ConnectedSystemName'] | Should -Not -BeNullOrEmpty } It 'Should have a mandatory ConnectedSystemObjectTypeId parameter' { $param = $command.Parameters['ConnectedSystemObjectTypeId'] $param.Attributes | Where-Object { $_ -is [System.Management.Automation.ParameterAttribute] -and $_.Mandatory } | Should -Not -BeNullOrEmpty } It 'Should have a mandatory MetaverseObjectTypeId parameter' { $param = $command.Parameters['MetaverseObjectTypeId'] $param.Attributes | Where-Object { $_ -is [System.Management.Automation.ParameterAttribute] -and $_.Mandatory } | Should -Not -BeNullOrEmpty } It 'Should have a mandatory Direction parameter' { $param = $command.Parameters['Direction'] $param.Attributes | Where-Object { $_ -is [System.Management.Automation.ParameterAttribute] -and $_.Mandatory } | Should -Not -BeNullOrEmpty } It 'Should have Direction parameter with ValidateSet' { $param = $command.Parameters['Direction'] $validateSet = $param.Attributes | Where-Object { $_ -is [System.Management.Automation.ValidateSetAttribute] } $validateSet | Should -Not -BeNullOrEmpty $validateSet.ValidValues | Should -Contain 'Import' $validateSet.ValidValues | Should -Contain 'Export' } It 'Should have ProjectToMetaverse switch parameter' { $command.Parameters['ProjectToMetaverse'].SwitchParameter | Should -BeTrue } It 'Should have ProvisionToConnectedSystem switch parameter' { $command.Parameters['ProvisionToConnectedSystem'].SwitchParameter | Should -BeTrue } It 'Should have a PassThru switch parameter' { $command.Parameters['PassThru'].SwitchParameter | Should -BeTrue } It 'Should support ShouldProcess' { $command.Parameters['WhatIf'] | Should -Not -BeNullOrEmpty } } Context 'Requires Connection' { BeforeEach { Disconnect-JIM } It 'Should throw when not connected' { { New-JIMSyncRule -Name "Test" -ConnectedSystemId 1 -ConnectedSystemObjectTypeId 1 -MetaverseObjectTypeId 1 -Direction Import -ErrorAction Stop } | Should -Throw '*Connect-JIM*' } } Context 'Help Documentation' { BeforeAll { $help = Get-Help New-JIMSyncRule -Full } It 'Should have a synopsis' { $help.Synopsis | Should -Not -BeNullOrEmpty } It 'Should have examples' { $help.Examples.Example.Count | Should -BeGreaterThan 0 } } } Describe 'Set-JIMSyncRule' { Context 'Parameter Validation' { BeforeAll { $command = Get-Command Set-JIMSyncRule } It 'Should have a mandatory Id parameter' { $param = $command.Parameters['Id'] $param.Attributes | Where-Object { $_ -is [System.Management.Automation.ParameterAttribute] -and $_.Mandatory } | Should -Not -BeNullOrEmpty } It 'Should have Enable switch parameter' { $command.Parameters['Enable'].SwitchParameter | Should -BeTrue } It 'Should have Disable switch parameter' { $command.Parameters['Disable'].SwitchParameter | Should -BeTrue } It 'Should have a PassThru switch parameter' { $command.Parameters['PassThru'].SwitchParameter | Should -BeTrue } It 'Should support ShouldProcess' { $command.Parameters['WhatIf'] | Should -Not -BeNullOrEmpty } } Context 'Requires Connection' { BeforeEach { Disconnect-JIM } It 'Should throw when not connected' { { Set-JIMSyncRule -Id 1 -Name "Test" -ErrorAction Stop } | Should -Throw '*Connect-JIM*' } } Context 'Help Documentation' { BeforeAll { $help = Get-Help Set-JIMSyncRule -Full } It 'Should have a synopsis' { $help.Synopsis | Should -Not -BeNullOrEmpty } It 'Should have examples' { $help.Examples.Example.Count | Should -BeGreaterThan 0 } } } Describe 'Remove-JIMSyncRule' { Context 'Parameter Validation' { BeforeAll { $command = Get-Command Remove-JIMSyncRule } It 'Should support ShouldProcess' { $command.Parameters['WhatIf'] | Should -Not -BeNullOrEmpty $command.Parameters['Confirm'] | Should -Not -BeNullOrEmpty } It 'Should have a Force switch parameter' { $command.Parameters['Force'].SwitchParameter | Should -BeTrue } It 'Should have a PassThru switch parameter' { $command.Parameters['PassThru'].SwitchParameter | Should -BeTrue } It 'Should have Id parameter that accepts pipeline by property name' { $param = $command.Parameters['Id'] $param.Attributes | Where-Object { $_ -is [System.Management.Automation.ParameterAttribute] -and $_.ValueFromPipelineByPropertyName } | Should -Not -BeNullOrEmpty } It 'Should have InputObject parameter that accepts pipeline input' { $param = $command.Parameters['InputObject'] $param.Attributes | Where-Object { $_ -is [System.Management.Automation.ParameterAttribute] -and $_.ValueFromPipeline } | Should -Not -BeNullOrEmpty } } Context 'Requires Connection' { BeforeEach { Disconnect-JIM } It 'Should throw when not connected' { { Remove-JIMSyncRule -Id 1 -Force -ErrorAction Stop } | Should -Throw '*Connect-JIM*' } } Context 'Help Documentation' { BeforeAll { $help = Get-Help Remove-JIMSyncRule -Full } It 'Should have a synopsis' { $help.Synopsis | Should -Not -BeNullOrEmpty } It 'Should have examples' { $help.Examples.Example.Count | Should -BeGreaterThan 0 } } } |