PowerShell/test/tools/Modules/WebListener
Mark Kraus 19197e11f3 Replace Remaining HttpBin.org Tests with WebListener (#5665)
•Replaces all remaining test that rely on httpbin.org
•Adds Put, Post, Patch, and Delete tests to WebListener by means of routes to Get test and modifications to the Get controller.
•Adds responsephrase option to the Response test to accommodate error message tests
•removed redundant GET tests from irm and iwr tests.
•Fixed markdown linting errors in README.md for WebListener
2017-12-13 19:28:05 +04:00
..
ClientCert.pfx Add test WebListener module and tests for Web Cmdlet Certificate Authentication (#4622) 2017-08-31 13:30:35 +04:00
README.md Add SslProtocol Support to WebCmdlets (#5329) 2017-11-13 10:45:46 -08:00
ServerCert.pfx Add test WebListener module and tests for Web Cmdlet Certificate Authentication (#4622) 2017-08-31 13:30:35 +04:00
WebListener.psd1 Add test WebListener module and tests for Web Cmdlet Certificate Authentication (#4622) 2017-08-31 13:30:35 +04:00
WebListener.psm1 Replace Remaining HttpBin.org Tests with WebListener (#5665) 2017-12-13 19:28:05 +04:00

WebListener Module

A PowerShell module for managing the WebListener App. The included SelF-Signed Certificate ServerCert.pfx has the password set to password and is issued for the Client and Server Authentication key usages. This certificate is used by the WebListener App for SSL/TLS. The included SelF-Signed Certificate ClientCert.pfx has the password set to password and has not been issued for any specific key usage. This Certificate is used for Client Certificate Authentication with the WebListener App. The port used for -HttpsPort will use TLS 1.2.

Running WebListener

Import-Module .\build.psm1
Publish-PSTestTools
$Listener = Start-WebListener -HttpPort 8083 -HttpsPort 8084 -Tls11Port 8085 -TlsPort 8086

Stopping WebListener

Stop-WebListener