Windows-powershell / PowerShell-master /test /powershell /Modules /Microsoft.WSMan.Management /CredSSP.Tests.ps1
| # Copyright (c) Microsoft Corporation. | |
| # Licensed under the MIT License. | |
| Import-Module HelpersCommon | |
| Describe "CredSSP cmdlet tests" -Tags 'Feature','RequireAdminOnWindows' { | |
| BeforeAll { | |
| $powershell = Join-Path $PSHOME "pwsh" | |
| $notEnglish = $false | |
| $IsToBeSkipped = !$IsWindows; | |
| $originalDefaultParameterValues = $PSDefaultParameterValues.Clone() | |
| if ( $IsToBeSkipped ) | |
| { | |
| $PSDefaultParameterValues["it:skip"] = $true | |
| } | |
| else | |
| { | |
| if ([System.Globalization.CultureInfo]::CurrentCulture.Name -ne "en-US") | |
| { | |
| $notEnglish = $true | |
| } | |
| } | |
| } | |
| AfterAll { | |
| $global:PSDefaultParameterValues = $originalDefaultParameterValues | |
| } | |
| BeforeEach { | |
| if ( ! $IsToBeSkipped ) | |
| { | |
| $errtxt = "$testdrive/error.txt" | |
| Remove-Item $errtxt -Force -ErrorAction SilentlyContinue | |
| $donefile = "$testdrive/done" | |
| Remove-Item $donefile -Force -ErrorAction SilentlyContinue | |
| } | |
| } | |
| It "Error returned if invalid parameters: <description>" -TestCases @( | |
| @{params=@{Role="Client"};Description="Client role, no DelegateComputer"}, | |
| @{params=@{Role="Server";DelegateComputer="."};Description="Server role w/ DelegateComputer"} | |
| ) { | |
| param ($params) | |
| { Enable-WSManCredSSP @params } | Should -Throw -ErrorId "System.InvalidOperationException,Microsoft.WSMan.Management.EnableWSManCredSSPCommand" | |
| } | |
| It "Enable-WSManCredSSP works: <description>" -Skip:($NotEnglish -or $IsToBeSkipped) -TestCases @( | |
| @{ params = @{ Role="Client"; DelegateComputer="*" }; description = "client"; expected = "The machine is configured to allow delegating fresh credentials to the following target\(s\):wsman/\*" }, | |
| @{ params = @{ Role="Server" }; description = "server"; expected = "This computer is configured to receive credentials from a remote client computer" } | |
| ) { | |
| param ($params, $description, $expected) | |
| $c = Enable-WSManCredSSP @params -Force | |
| $c.CredSSP | Should -BeTrue | |
| if ($params.Role -eq "Client") | |
| { | |
| Wait-UntilTrue -IntervalInMilliseconds 500 -sb { | |
| $c = Get-WSManCredSSP | |
| $c[0] -match $expected | |
| } | Should -BeTrue -Because "WSManCredSSP should have been enabled to allow delegating fresh credentials to wsman/*, but it was not." | |
| } | |
| else | |
| { | |
| Wait-UntilTrue -IntervalInMilliseconds 500 -sb { | |
| $c = Get-WSManCredSSP | |
| $c[1] -match $expected | |
| } | Should -BeTrue -Because "WSManCredSSP should have been enabled to allow receiving credentials from a remote client computer, but it was not." | |
| } | |
| } | |
| It "Disable-WSManCredSSP works: <role>" -Skip:($NotEnglish -or $IsToBeSkipped) -TestCases @( | |
| @{Role="Client"}, | |
| @{Role="Server"} | |
| ) { | |
| param ($role) | |
| Disable-WSManCredSSP -Role $role | Should -BeNullOrEmpty | |
| $c = Get-WSManCredSSP | |
| if ($role -eq "Client") | |
| { | |
| $c[0] | Should -Match "The machine is not configured to allow delegating fresh credentials." | |
| } | |
| else | |
| { | |
| $c[1] | Should -Match "This computer is not configured to receive credentials from a remote client computer" | |
| } | |
| } | |
| It "Call cmdlet as API" { | |
| $credssp = [Microsoft.WSMan.Management.EnableWSManCredSSPCommand]::new() | |
| $credssp.Role = "Client" | |
| $credssp.Role | Should -BeExactly "Client" | |
| $credssp.DelegateComputer = "foo", "bar" | |
| $credssp.DelegateComputer -join ',' | Should -Be "foo,bar" | |
| $credssp.Force = $true | |
| $credssp.Force | Should -BeTrue | |
| $credssp = [Microsoft.WSMan.Management.DisableWSManCredSSPCommand]::new() | |
| $credssp.Role = "Server" | |
| $credssp.Role | Should -BeExactly "Server" | |
| } | |
| } | |
| Describe "CredSSP cmdlet error cases tests" -Tags 'Feature' { | |
| It "Error returned if runas non-admin: <cmdline>" -Skip:(!$IsWindows) -TestCases @( | |
| @{cmdline = "Enable-WSManCredSSP -Role Server -Force"; cmd = "EnableWSManCredSSPCommand"}, | |
| @{cmdline = "Disable-WSManCredSSP -Role Server"; cmd = "DisableWSManCredSSPCommand"}, | |
| @{cmdline = "Get-WSManCredSSP"; cmd = "GetWSmanCredSSPCommand"} | |
| ) { | |
| param ($cmdline, $cmd) | |
| if (Test-IsWindowsArm64) { | |
| Set-ItResult -Pending -Because "WSManCredSSP results in InvalidOperationException on ARM64." | |
| } | |
| $scriptBlock = [scriptblock]::Create($cmdline) | |
| $scriptBlock | Should -Throw -ErrorId "System.InvalidOperationException,Microsoft.WSMan.Management.$cmd" | |
| } | |
| } | |