-
Notifications
You must be signed in to change notification settings - Fork 8.1k
Add -SkipHeaderValidation switch to Invoke-WebRequest and Invoke-RestMethod to support adding headers without validating the header value. #4085
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -184,6 +184,49 @@ function ExecuteRedirectRequest | |
| return $result | ||
| } | ||
|
|
||
| # This function calls either Invoke-WebRequest or Invoke-RestMethod with the given uri | ||
| # using the custum headers and the optional SkipHeaderValidation switch. | ||
| function ExecuteRequestWithCustomHeaders | ||
| { | ||
| param ( | ||
| [Parameter(Mandatory)] | ||
| [string] | ||
| $Uri, | ||
|
|
||
| [ValidateSet('Invoke-WebRequest', 'Invoke-RestMethod')] | ||
| [string] $Cmdlet = 'Invoke-WebRequest', | ||
|
|
||
| [Parameter(Mandatory)] | ||
| [ValidateNotNull()] | ||
| [Hashtable] $Headers, | ||
|
|
||
| [switch] $SkipHeaderValidation | ||
| ) | ||
| $result = [PSObject]@{Output = $null; Error = $null; Content = $null} | ||
|
|
||
| try | ||
| { | ||
| if ($Cmdlet -eq 'Invoke-WebRequest') | ||
| { | ||
| $result.Output = Invoke-WebRequest -Uri $Uri -TimeoutSec 5 -Headers $Headers -SkipHeaderValidation:$SkipHeaderValidation.IsPresent | ||
| $result.Content = $result.Output.Content | ConvertFrom-Json | ||
| } | ||
| else | ||
| { | ||
| $result.Output = Invoke-RestMethod -Uri $Uri -TimeoutSec 5 -Headers $Headers -SkipHeaderValidation:$SkipHeaderValidation.IsPresent | ||
| # NOTE: $result.Output should already be a PSObject (Invoke-RestMethod converts the returned json automatically) | ||
| # so simply reference $result.Output | ||
| $result.Content = $result.Output | ||
| } | ||
| } | ||
| catch | ||
| { | ||
| $result.Error = $_ | ||
| } | ||
|
|
||
| return $result | ||
| } | ||
|
|
||
| <# | ||
| Defines the list of redirect codes to test as well as the | ||
| expected Method when the redirection is handled. | ||
|
|
@@ -662,6 +705,35 @@ Describe "Invoke-WebRequest tests" -Tags "Feature" { | |
|
|
||
| #endregion Redirect tests | ||
|
|
||
| #region SkipHeaderVerification Tests | ||
|
|
||
| It "Verifies Invoke-WebRequest default header handling with no errors" { | ||
| $headers = @{"If-Match" = "*"} | ||
| $response = ExecuteRequestWithCustomHeaders -Uri "http://localhost:8080/PowerShell?test=echo" -headers $headers | ||
|
|
||
| $response.Error | Should BeNullOrEmpty | ||
| $response.Content.Headers -contains "If-Match" | Should Be $true | ||
| } | ||
|
|
||
| It "Verifies Invoke-WebRequest default header handling reports an error is returned for an invalid If-Match header value" { | ||
| $headers = @{"If-Match" = "12345"} | ||
| $response = ExecuteRequestWithCustomHeaders -Uri "http://localhost:8080/PowerShell?test=echo" -headers $headers | ||
|
|
||
| $response.Error | Should Not BeNullOrEmpty | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Tha same.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The check is intentional. Checking for $result.Error provides a better failure id if the underlying request fails versus the NullReferenceException that would occur in the next statement. |
||
| $response.Error.FullyQualifiedErrorId | Should Be "System.FormatException,Microsoft.PowerShell.Commands.InvokeWebRequestCommand" | ||
|
||
| $response.Error.Exception.Message | Should Be "The format of value '12345' is invalid." | ||
| } | ||
|
|
||
| It "Verifies Invoke-WebRequest header handling does not report an error when using -SkipHeaderValidation" { | ||
| $headers = @{"If-Match" = "12345"} | ||
| $response = ExecuteRequestWithCustomHeaders -Uri "http://localhost:8080/PowerShell?test=echo" -headers $headers -SkipHeaderValidation | ||
|
|
||
| $response.Error | Should BeNullOrEmpty | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The same.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The check is intentional. Checking for $result.Error provides a better failure id if the underlying request fails versus the NullReferenceException that would occur in the next statement. |
||
| $response.Content.Headers -contains "If-Match" | Should Be $true | ||
| } | ||
|
|
||
| #endregion SkipHeaderVerification Tests | ||
|
|
||
| BeforeEach { | ||
| if ($env:http_proxy) { | ||
| $savedHttpProxy = $env:http_proxy | ||
|
|
@@ -1124,6 +1196,35 @@ Describe "Invoke-RestMethod tests" -Tags "Feature" { | |
|
|
||
| #endregion Redirect tests | ||
|
|
||
| #region SkipHeaderVerification tests | ||
|
|
||
| It "Verifies Invoke-RestMethod default header handling with no errors" { | ||
| $headers = @{"If-Match" = "*"} | ||
| $response = ExecuteRequestWithCustomHeaders -Uri "http://localhost:8081/PowerShell?test=echo" -headers $headers -Cmdlet "Invoke-RestMethod" | ||
|
|
||
| $response.Error | Should BeNullOrEmpty | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Tha same. |
||
| $response.Content.Headers -contains "If-Match" | Should Be $true | ||
| } | ||
|
|
||
| It "Verifies Invoke-RestMethod default header handling reports an error is returned for an invalid If-Match header value" { | ||
| $headers = @{"If-Match" = "12345"} | ||
| $response = ExecuteRequestWithCustomHeaders -Uri "http://localhost:8081/PowerShell?test=echo" -headers $headers -Cmdlet "Invoke-RestMethod" | ||
|
|
||
| $response.Error | Should Not BeNullOrEmpty | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The same.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The check is intentional. Checking for $result.Error provides a better failure id if the underlying request fails versus the NullReferenceException that would occur in the next statement. |
||
| $response.Error.FullyQualifiedErrorId | Should Be "System.FormatException,Microsoft.PowerShell.Commands.InvokeRestMethodCommand" | ||
|
||
| $response.Error.Exception.Message | Should Be "The format of value '12345' is invalid." | ||
| } | ||
|
|
||
| It "Verifies Invoke-RestMethod header handling does not report an error when using -SkipHeaderValidation" { | ||
| $headers = @{"If-Match" = "12345"} | ||
| $response = ExecuteRequestWithCustomHeaders -Uri "http://localhost:8081/PowerShell?test=echo" -headers $headers -SkipHeaderValidation -Cmdlet "Invoke-RestMethod" | ||
|
|
||
| $response.Error | Should BeNullOrEmpty | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The same.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The check is intentional. Checking for $result.Error provides a better failure id if the underlying request fails versus the NullReferenceException that would occur in the next statement. |
||
| $response.Content.Headers -contains "If-Match" | Should Be $true | ||
| } | ||
|
|
||
| #endregion SkipHeaderVerification tests | ||
|
|
||
| BeforeEach { | ||
| if ($env:http_proxy) { | ||
| $savedHttpProxy = $env:http_proxy | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -134,6 +134,13 @@ Function Start-HTTPListener { | |
| $contentType = $queryItems["contenttype"] | ||
| $output = $queryItems["output"] | ||
| } | ||
|
|
||
| # Echo the request as the output. | ||
| "echo" | ||
|
||
| { | ||
| Write-Verbose -Message "Echo request" | ||
| $output = $request | ConvertTo-Json -Depth 6 | ||
| } | ||
|
|
||
| <# | ||
| This test provides support for multiple redirection types as well as a custom | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We can remove this - next line makes the check.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The check is intentional. Checking for $result.Error provides a better failure id if the underlying request fails versus the NullReferenceException that would occur in the next statement.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I believe NullReferenceException would occur only if we call a method but we call a property.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You're right but the end result does not change. If the request does not complete successfully, I want to know that. Testing the content doesn't help me diagnose that and, in fact, obfuscates it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for clarify!