# Copyright (c) Microsoft Corporation. # Licensed under the MIT License. Describe 'Get-Error tests' -Tag CI { It 'Get-Error resolves $error[0] and includes InnerException' { try { 1/0 } catch { } $out = Get-Error | Out-String $out | Should -BeLikeExactly '*InnerException*' $err = Get-Error $err | Should -BeOfType System.Management.Automation.ErrorRecord $err.PSObject.TypeNames | Should -Not -Contain 'System.Management.Automation.ErrorRecord' $err.PSObject.TypeNames | Should -Contain 'System.Management.Automation.ErrorRecord#PSExtendedError' # need to exercise the formatter to validate that the internal types are removed from the error object $null = $err | Out-String $err | Should -BeOfType System.Management.Automation.ErrorRecord $err.PSObject.TypeNames | Should -Contain 'System.Management.Automation.ErrorRecord' $err.PSObject.TypeNames | Should -Not -Contain 'System.Management.Automation.ErrorRecord#PSExtendedError' } It 'Get-Error -Newest `` works: ' -TestCases @( @{ scenario = 'less than total'; count = 1; paramname = 'Newest' } @{ scenario = 'equal to total'; count = 2; paramname = 'Last' } @{ scenario = 'greater than total'; count = 9999; paramname = 'Newest' } ){ param ($count, $paramname) try { 1/0 } catch { } try { Get-Item (New-Guid) -ErrorAction SilentlyContinue } catch { } $params = @{ $paramname = $count } $out = Get-Error @params $expected = $count if ($count -eq 9999) { $expected = $error.Count } $out.Count | Should -Be $expected } It 'Get-Error -Newest with invalid value `` should fail' -TestCases @( @{ value = 0 } @{ value = -2 } ){ param($value) { Get-Error -Newest $value } | Should -Throw -ErrorId 'ParameterArgumentValidationError,Microsoft.PowerShell.Commands.GetErrorCommand' } It 'Get-Error will accept pipeline input' { try { 1/0 } catch { } $out = $error[0] | Get-Error | Out-String $out | Should -BeLikeExactly '*-2146233087*' } It 'Get-Error will handle Exceptions' { $e = [Exception]::new('myexception') $error.Insert(0, $e) $out = Get-Error | Out-String $out | Should -BeLikeExactly '*myexception*' $err = Get-Error $err | Should -BeOfType System.Exception $err.PSObject.TypeNames | Should -Not -Contain 'System.Exception' $err.PSObject.TypeNames | Should -Contain 'System.Exception#PSExtendedError' # need to exercise the formatter to validate that the internal types are removed from the error object $null = $err | Out-String $err | Should -BeOfType System.Exception $err.PSObject.TypeNames | Should -Contain 'System.Exception' $err.PSObject.TypeNames | Should -Not -Contain 'System.Exception#PSExtendedError' } It 'Get-Error will not modify the original error object' { try { 1 / 0 } catch { } $null = Get-Error $error[0].pstypenames | Should -Be System.Management.Automation.ErrorRecord, System.Object } It 'Get-Error adds ExceptionType for Exceptions' { try { throw [ArgumentException] 'myexception' } catch { } $out = Get-Error | Out-String $out | Should -Match "Type\s+:\s(.\[\d+m)?System.ArgumentException" } It 'Get-Error uses Error color for Message and PositionMessage members' { if (-not $host.ui.SupportsVirtualTerminal) { Set-ItResult -Skipped -Because 'Windows Server 2012 R2 does not support VT100 escape sequences' } $suppressVT = $false if (Test-Path env:/__SuppressAnsiEscapeSequences) { $suppressVT = $true $env:__SuppressAnsiEscapeSequences = $null } try { $originalRendering = $PSStyle.OutputRendering $PSStyle.OutputRendering = 'Ansi' $out = pwsh -noprofile -command '$PSStyle.OutputRendering = "ANSI"; try { 1/0 } catch { }; Get-Error' | Out-String # need to escape the open square bracket so the regex works $resetColor = $PSStyle.Reset.Replace('[','\[') $errorColor = $PSStyle.Formatting.Error.Replace('[','\[') $out | Should -Match "Message +: ${resetColor}${errorColor}[A-z]+" # match the position message underline $out | Should -Match ".*?${errorColor}~~~" } finally { $PSStyle.OutputRendering = $originalRendering if ($suppressVT) { $env:__SuppressAnsiEscapeSequences = 1 } } } It 'Get-Error works with strict mode' { $out = pwsh -noprofile -command 'Set-StrictMode -Version Latest; $PSStyle.OutputRendering = "PlainText"; 1/0; Get-Error' | Out-String $out | Should -Match "Message : Attempted to divide by zero." } It 'BoundParameters show as name/value pairs' { try { function test { [CmdletBinding()]param($A,$B) } $Param = @{ A = "First"; B = "Second"; C = 24 } test @Param } catch { # do nothing } $out = Get-Error | Out-String $out | Should -Match "BoundParameters\s+:\s+A : First\s+B : Second\s" } }