| |
| |
|
|
| |
| |
| |
|
|
| [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute('PSAvoidUsingConvertToSecureStringWithPlainText', '')] |
| param() |
|
|
| function GetRandomString() |
| { |
| return [System.IO.Path]::GetFileNameWithoutExtension([System.IO.Path]::GetRandomFileName()) |
| } |
|
|
| Describe "New-PSSessionOption parameters for non-Windows platforms" -Tag "CI" { |
|
|
| BeforeAll { |
| $originalDefaultParameterValues = $PSDefaultParameterValues.Clone() |
|
|
| if ($IsWindows) { |
| $PSDefaultParameterValues['it:skip'] = $true |
| } |
| } |
|
|
| AfterAll { |
| $global:PSDefaultParameterValues = $originalDefaultParameterValues |
| } |
|
|
| It "Verifies New-PSSessionOption parameters" { |
|
|
| $cmdInfo = Get-Command New-PSSessionOption |
|
|
| $commonParameterCount = [System.Management.Automation.Internal.CommonParameters].GetProperties().Length |
| $cmdInfo.Parameters.Count | Should -Be ($commonParameterCount + 2) -Because "Only -SkipCACheck and -SkipCNCheck switch parameters are available" |
|
|
| { $null = $cmdInfo.ResolveParameter("SkipCACheck") } | Should -Not -Throw -Because "SkipCACheck parameter should be available" |
| { $null = $cmdInfo.ResolveParameter("SkipCNCheck") } | Should -Not -Throw -Because "SkipCNCheck parameter should be available" |
| } |
| } |
|
|
| Describe "SkipCACheck and SkipCNCheck PSSession options are required for New-PSSession on non-Windows platforms" -Tag "CI" { |
|
|
| BeforeAll { |
| $originalDefaultParameterValues = $PSDefaultParameterValues.Clone() |
|
|
| |
| if ($IsWindows -or $IsMacOS) { |
| $PSDefaultParameterValues['it:skip'] = $true |
| } |
| else { |
| $userName = "User_$(Get-Random -Maximum 99999)" |
| $userPassword = GetRandomString |
| $cred = [pscredential]::new($userName, (ConvertTo-SecureString -String $userPassword -AsPlainText -Force)) |
| $soSkipCA = New-PSSessionOption -SkipCACheck |
| $soSkipCN = New-PSSessionOption -SkipCNCheck |
| } |
| } |
|
|
| AfterAll { |
| $global:PSDefaultParameterValues = $originalDefaultParameterValues |
| } |
|
|
| $testCases = @( |
| @{ |
| Name = 'Verifies expected error when session option is missing' |
| ScriptBlock = { New-PSSession -cn localhost -Credential $cred -Authentication Basic -UseSSL } |
| ExpectedErrorCode = 825 |
| }, |
| @{ |
| Name = 'Verifies expected error when SkipCACheck option is missing' |
| ScriptBlock = { New-PSSession -cn localhost -Credential $cred -Authentication Basic -UseSSL -SessionOption $soSkipCN } |
| ExpectedErrorCode = 825 |
| }, |
| @{ |
| Name = 'Verifies expected error when SkipCNCheck option is missing' |
| ScriptBlock = { New-PSSession -cn localhost -Credential $cred -Authentication Basic -UseSSL -SessionOption $soSkipCA } |
| ExpectedErrorCode = 825 |
| } |
| ) |
|
|
| It "<Name>" -TestCases $testCases { |
| param ($scriptBlock, $expectedErrorCode) |
|
|
| if ( -not (Get-WsManSupport)) { |
| Set-ItResult -Skipped -Because "MI library not available for this platform" |
| return |
| } |
|
|
| $er = { & $scriptBlock } | Should -Throw -ErrorId 'System.Management.Automation.Remoting.PSRemotingDataStructureException,Microsoft.PowerShell.Commands.NewPSSessionCommand' -PassThru |
| $er.Exception.ErrorCode | Should -Be $expectedErrorCode |
| } |
| } |
|
|
| Describe "New-PSSession -UseWindowsPowerShell switch parameter" -Tag "CI" { |
|
|
| BeforeAll { |
| $originalDefaultParameterValues = $PSDefaultParameterValues.Clone() |
|
|
| if (-not $IsWindows) { |
| $PSDefaultParameterValues['it:skip'] = $true |
| } |
| } |
|
|
| AfterAll { |
| $global:PSDefaultParameterValues = $originalDefaultParameterValues |
| } |
|
|
| It "Should respect explicit -UseWindowsPowerShell:`$false parameter value" { |
| |
| $sessionWithTrue = $null |
| try { |
| { $script:sessionWithTrue = New-PSSession -UseWindowsPowerShell:$true } | Should -Not -Throw |
| $script:sessionWithTrue | Should -Not -BeNullOrEmpty |
|
|
| |
| $version = Invoke-Command -Session $script:sessionWithTrue -ScriptBlock { $PSVersionTable.PSVersion } |
| $version.Major | Should -Be 5 |
| $version.Minor | Should -Be 1 |
| } |
| finally { |
| if ($script:sessionWithTrue) { Remove-PSSession $script:sessionWithTrue -ErrorAction SilentlyContinue } |
| } |
|
|
| |
| $sessionWithFalse = $null |
| try { |
| { $script:sessionWithFalse = New-PSSession -UseWindowsPowerShell:$false } | Should -Not -Throw |
| $script:sessionWithFalse | Should -Not -BeNullOrEmpty |
|
|
| |
| $script:sessionWithFalse.Transport | Should -Be 'WSMan' |
| } |
| finally { |
| if ($script:sessionWithFalse) { Remove-PSSession $script:sessionWithFalse -ErrorAction SilentlyContinue } |
| } |
| } |
| } |
|
|