Tests/QA/Changelog.common.v4.Tests.ps1
[Diagnostics.CodeAnalysis.SuppressMessageAttribute('DscResource.AnalyzerRules\Measure-ParameterBlockParameterAttribute', '', Scope='Function', Target='*')] param ( $ModuleName, $ModuleBase, $ModuleManifest, $ProjectPath, $SourcePath, $SourceManifest, $Tag, $ExcludeTag, $ExcludeModuleFile, $ExcludeSourceFile, $MainGitBranch ) $isPester5 = (Get-Module -Name Pester).Version -lt '5.0.0' # Only run if _not_ Pester 5. if (-not $isPester5) { return } if (-not $ProjectPath) { # Invoke-DscResourceTest is only looking at a built module, skipping this test file. Write-Verbose "No Project path set: $ProjectPath. Skipping changelog checks." return } else { Write-Verbose "Pushing location $ProjectPath on Stack ProjectTest" Push-Location -StackName ProjectTest -Path $ProjectPath } try { Describe 'Changelog Management' -Tag 'Changelog' { $skipTest = -not ( [System.Boolean] (Get-Command -Name 'git' -ErrorAction 'SilentlyContinue') ` -and [System.Boolean] (& (Get-Process -Id $PID).Path -NoProfile -Command 'git rev-parse --is-inside-work-tree 2>$null') ) It 'Changelog has been updated' -Skip:$skipTest { # Get the list of changed files compared with main $headCommit = & git rev-parse HEAD $mainCommit = & git @('rev-parse', "origin/$MainGitBranch") $filesChanged = & git @('diff', "$mainCommit...$headCommit", '--name-only') if ($headCommit -ne $mainCommit) { # if we're not testing same commit (i.e. main..main) $filesChanged.Where{ (Split-Path -Path $_ -Leaf) -match '^changelog.md' } | Should -Not -BeNullOrEmpty -Because 'the changelog should have at least one entry for every pull request' } } $skipTest = -not [System.Boolean] (Get-Command -Name 'git' -ErrorAction 'SilentlyContinue') ` -or -not (Import-Module -Name ChangelogManagement -ErrorAction 'SilentlyContinue' -PassThru) It 'Changelog format compliant with keepachangelog format' -Skip:$skipTest { { Get-ChangelogData -Path (Join-Path -Path $ProjectPath -ChildPath 'CHANGELOG.md') -ErrorAction 'Stop' } | Should -Not -Throw } It 'Changelog should have an Unreleased header' -Skip:$skipTest { (Get-ChangelogData -Path (Join-Path -Path $ProjectPath -ChildPath 'CHANGELOG.md') -ErrorAction 'Stop').Unreleased.RawData | Should -Not -BeNullOrEmpty } } } finally { Write-Debug "Poping location on Stack ProjectTest" Pop-Location -StackName ProjectTest } |