Skip to content

Commit

Permalink
[Feature] Fix AppVeyor Fails (PowerShell#5520)
Browse files Browse the repository at this point in the history
  • Loading branch information
markekraus authored and TravisEz13 committed Nov 21, 2017
1 parent cc24b88 commit 3ff495d
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2740,22 +2740,22 @@ Describe "Validate Invoke-WebRequest and Invoke-RestMethod -InFile" -Tags "Featu
Describe "Web cmdlets tests using the cmdlet's aliases" -Tags "CI" {

BeforeAll {
$response = Start-HttpListener -Port 8082
$response = Start-HttpListener -Port 8079
}

AfterAll {
$null = Stop-HttpListener -Port 8082
$null = Stop-HttpListener -Port 8079
$response.PowerShell.Dispose()
}

It "Execute Invoke-WebRequest" {
$result = iwr "http://localhost:8082/PowerShell?test=response&output=hello" -TimeoutSec 5
$result = iwr "http://localhost:8079/PowerShell?test=response&output=hello" -TimeoutSec 5
$result.StatusCode | Should Be "200"
$result.Content | Should Be "hello"
}

It "Execute Invoke-RestMethod" {
$result = irm "http://localhost:8082/PowerShell?test=response&output={%22hello%22:%22world%22}&contenttype=application/json" -TimeoutSec 5
$result = irm "http://localhost:8079/PowerShell?test=response&output={%22hello%22:%22world%22}&contenttype=application/json" -TimeoutSec 5
$result.Hello | Should Be "world"
}
}

0 comments on commit 3ff495d

Please sign in to comment.