Describe "Verify SBOMs" { BeforeAll { Write-Verbose "In Describe BeforeAll" -Verbose Import-Module $PSScriptRoot/../../../build.psm1 Import-Module $PSScriptRoot/../packaging.psd1 -Force $matchCases = @() $testCases = @() $missingFromPackageCases = @() $missingFromManifestCases = @() Write-Verbose "${env:PACKAGE_FOLDER}" -Verbose Get-ChildItem $env:PACKAGE_FOLDER -Filter *.zip | Where-Object { $_.Name -notlike 'powershell-symbols*' } | ForEach-Object { Write-Verbose "Found $($_.Name)..." -Verbose $testCases += @{ FilePath = $_.FullName Name = $_.Name Extension = $_.Extension } } if ($IsLinux) { Get-ChildItem $env:PACKAGE_FOLDER -Filter *.rpm | ForEach-Object { Write-Verbose "Found $($_.Name)..." -Verbose $testCases += @{ FilePath = $_.FullName Name = $_.Name Extension = $_.Extension } } } foreach($case in $testCases) { $skip = $null $name = $case.Name Write-Verbose "Testing $name..." -Verbose $extractedPath = Join-Path Testdrive:\ -ChildPath ([System.io.path]::GetRandomFileName()) $null = New-Item -Path $extractedPath -ItemType Directory -Force $resolvedPath = (Resolve-Path -Path $extractedPath).ProviderPath switch ($case.Extension) { '.zip' { Expand-Archive -Path $case.FilePath -DestinationPath $extractedPath $manifestPath = Join-Path $extractedPath -ChildPath '/_manifest/spdx_2.2/manifest.spdx.json' } '.rpm' { $skip = "rpm test is not stable" } Default { throw "Unknown extension $($case.Extension)" } } It "$name has a BOM" { if ($skip) { Set-ItResult -Pending -Because $skip } $manifestPath | Should -Exist } # RPM hashes are broken, skip that if ($case.Extension -in '.zip') { Test-PackageManifest -PackagePath $extractedPath | ForEach-Object { $status = $_.Status $expectedHash = $_.ExpectedHash $actual = $_.ActualHash $file = $_.File switch ($status) { # cover match and mismatch default { $matchCases += @{ Name = $name File = $file ActualHash = $actual ExpectedHash = $ExpectedHash Status = $status } } "MissingFromPackage" { $missingFromPackageCases = @{ Name = $name File = $file ActualHash = $actual ExpectedHash = $ExpectedHash Status = $status } } "MissingFromManifest" { $missingFromManifestCases = @{ Name = $name File = $file ActualHash = $actual ExpectedHash = $ExpectedHash Status = $status } } } } } } } Context "Package files" { It " should have with matching hash" -TestCases $matchCases { param( $Name, $File, $ActualHash, $ExpectedHash, $Status ) $status | Should -Be "Match" -Because "$actualHash should be $expectedHash" } It " should have with matching hash" -TestCases $missingFromPackageCases -Skip:($missingFromPackageCases.Count -eq 0) { param( $Name, $File, $ActualHash, $ExpectedHash, $Status ) $status | Should -Be "Match" -Because "All files in manifest should exist in package" } It "Manifest for should have " -TestCases $missingFromManifestCases -Skip:($missingFromManifestCases.Count -eq 0) { param( $Name, $File, $ActualHash, $ExpectedHash, $Status ) $status | Should -Be "Match" -Because "All files in package should exist in manifest" } } }