Giter Site home page Giter Site logo

pester-tests's Introduction

Demo for PowerShell Testing with Pester

Install powershell for mac

brew install --cask powershell

Test if powershell is installed:

pwsh

Install pester

pwsh

Install-Module -Name Pester -Force

Run Pester Tests

Invoke-Pester ./A-Test.ps1

Or just run the file:

./A-Test.ps1

Docs

Assertions

Be

Not case sensitive, checks if two objects are the same

$true | Should -Be $true

$true | Should -Not -Be $false

Be exactly

Case sensitive, checks if to objects are the same

$actual | Should -BeExactly "Actual value" # Test will pass

Be false

Asserts that value is false

$false | Should -BeFalse

BeGreaterOrEqual

2 | Should -BeGreaterOrEqual 0

BeGreaterThan

(Get-Date).AddMinutes(5) | Should -BeGreaterThan (Get-Date)

BeIn

27 | Should -BeIn (1..100)

BeLessOrEqual

1 | Should -BeLessOrEqual 10

BeLessThan

$Error.Count | Should -BeLessThan 1

And some more

Check: https://pester.dev/docs/assertions/

Assertions on Files

Check if file exists

$pathToFile | Should -Exist

Check contents of files

$pathToFile | Should -FileContentMatchExactly $content

Custom Assertions

function BeAwesome($ActualValue, [switch] $Negate) {
[bool] $succeeded = $ActualValue -eq 'Awesome'
if ($Negate) { $succeeded = -not $succeeded }

    if (-not $succeeded) {
        if ($Negate) {
            $failureMessage = "{$ActualValue} is Awesome"
        }
        else {
            $failureMessage = "{$ActualValue} is not Awesome"
        }
    }

    return New-Object psobject -Property @{
        Succeeded      = $succeeded
        FailureMessage = $failureMessage
    }
}

Add-ShouldOperator -Name BeAwesome `
-Test $function:BeAwesome `
-Alias 'BA'

PS C:\> "bad" | Should -BeAwesome

pester-tests's People

Contributors

jfinckh avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.