PowerShell/test/powershell
Michael Klement 87834d07b4 Fix error in windows provider when the environment has accidental duplicates that differ only by case (#6489)
Fix error in windows provider when the environment has accidental duplicates that differ only by case.

Make the provider storage for the environment on windows ignore duplicates
 and only report the effective value.
Add tests to verify existing environment get-item behavior and to ensure that Get-Item env:<var> reports the same as $env:<var>, namely the effective value.
Fixes #6305 and supersedes #6320 based on discussion in #6460.
2018-03-27 14:58:26 -07:00
..
engine Add Test-Json cmdlet (NJsonSchema) (#5229) 2018-03-26 11:52:48 -07:00
Host Upgrade tests in test\powershell\Host folder to PesterV4 syntax (#6250) 2018-03-23 10:48:26 -07:00
Installer Update copyright and license headers (#6134) 2018-02-13 09:23:53 -08:00
Language Throw better parsing error when statements should be put in named block (#6434) 2018-03-21 14:24:20 -07:00
Modules Fix error in windows provider when the environment has accidental duplicates that differ only by case (#6489) 2018-03-27 14:58:26 -07:00
Provider Update copyright and license headers (#6134) 2018-02-13 09:23:53 -08:00
SDK Update copyright and license headers (#6134) 2018-02-13 09:23:53 -08:00
README.md Make the experience better when start-pspester doesn't find pester (#5673) 2017-12-12 16:16:10 -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.