Tests/appveyor.pester.ps1
# This script will invoke pester tests # It should invoke on PowerShell v2 and later # We serialize XML results and pull them in appveyor.yml #If Finalize is specified, we collect XML output, upload tests, and indicate build errors param( [switch]$Finalize, [switch]$Test ) #Initialize some variables, move to the project root $PSVersion = $PSVersionTable.PSVersion.Major $TestFile = "TestResultsPS$PSVersion.xml" $ProjectRoot = $ENV:APPVEYOR_BUILD_FOLDER Set-Location $ProjectRoot #Run a test with the current version of PowerShell if($Test) { "`n`tSTATUS: Testing with PowerShell $PSVersion`n" Import-Module Pester Invoke-Pester -Path "$ProjectRoot\Tests" -OutputFormat NUnitXml -OutputFile "$ProjectRoot\$TestFile" -PassThru | Export-Clixml -Path "$ProjectRoot\PesterResultsPS$PSVersion.xml" } #If finalize is specified, check for failures and If($Finalize) { #Show status... $AllFiles = Get-ChildItem -Path $ProjectRoot\*Results*.xml | Select -ExpandProperty FullName "`n`tSTATUS: Finalizing results`n" "COLLATING FILES:`n$($AllFiles | Out-String)" #Upload results for test page "UPLOADING FILES:`n" Get-ChildItem -Path "$ProjectRoot\TestResultsPS*.xml" | Foreach-Object { $Address = "https://ci.appveyor.com/api/testresults/nunit/$($env:APPVEYOR_JOB_ID)" $Source = $_.FullName "$Address $Source" (New-Object 'System.Net.WebClient').UploadFile( $Address, $Source ) } #What failed? $Results = @( Get-ChildItem -Path "$ProjectRoot\PesterResultsPS*.xml" | Import-Clixml ) $FailedCount = $Results | Select -ExpandProperty FailedCount | Measure-Object -Sum | Select -ExpandProperty Sum if ($FailedCount -gt 0) { $FailedItems = $Results | Select -ExpandProperty TestResult | Where {$_.Passed -notlike $True} "FAILED TESTS SUMMARY:`n" $FailedItems | ForEach-Object { $Item = $_ [pscustomobject]@{ Describe = $Item.Describe Context = $Item.Context Name = "It $($Item.Name)" Result = $Item.Result } } | Sort Describe, Context, Name, Result | Format-List throw "$FailedCount tests failed." } } |