PowerShell/test/powershell
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
..
engine Update a flaky test that fails intermittently in CI (#5641) 2017-12-06 12:46:53 -08:00
Host Updated csproj to use the latest help package (#5454) 2017-11-15 16:29:04 -08:00
Installer Run tests for Windows installer only on Windows (#5619) 2017-12-04 14:18:52 -08:00
Language Enable conversions from PSMethod to Delegate (#5287) 2017-12-01 18:40:35 -08:00
Modules Replace Remaining HttpBin.org Tests with WebListener (#5665) 2017-12-13 19:28:05 +04:00
Provider Rename powershell.exe to pwsh.exe (#5101) 2017-10-17 17:25:11 -07:00
SDK Rename powershell.exe to pwsh.exe (#5101) 2017-10-17 17:25:11 -07:00
README.md Make the experience better when start-pspester doesn't find pester (#5673) 2017-12-12 16:07:12 -08:00

Pester Testing Test Guide

Also see the Writing Pester Tests document.

Running Pester Tests

First, restore the correct version of Pester using Restore-PSPester.

Then, go to the top level of the PowerShell repository and run: Start-PSPester inside a self-hosted copy of PowerShell.

You can use Start-PSPester -Tests SomeTestSuite* to limit the tests run.

Testing new powershell processes

Any launch of a new powershell process must include -noprofile so that modified user and system profiles do not causes tests to fail. You also must take care to call the development copy of PowerShell, which is not the first one on the path.

Example:

    $powershell = Join-Path -Path $PsHome -ChildPath "pwsh"
    & $powershell -noprofile -command "ExampleCommand" | Should Be "ExampleOutput"

Portability

Some tests simply must be tied to certain platforms. Use Pester's -Skip directive on an It statement to do this. For instance to run the test only on Windows:

It "Should do something on Windows" -Skip:($IsLinux -Or $IsMacOS) { ... }

Or only on Linux and OS X:

It "Should do something on Linux" -Skip:$IsWindows { ... }

Pending

When writing a test that should pass, but does not, please do not skip or delete the test, but use It "Should Pass" -Pending to mark the test as pending, and file an issue on GitHub.