Functions/GenXdev.Coding.PowerShell.Modules/Add-MissingGenXdevUnitTests.ps1
function Add-MissingGenXdevUnitTests { Get-GenXDevCmdlets | ForEach-Object { $genXdevCmdlet = $_ if ([IO.File]::Exists($_.ScriptTestFilePath) -and ([IO.File]::ReadAllText($_.ScriptTestFilePath).Trim() -ne "")) { return } $prompt = (@" ################################################################################ Describe `"`$CmdletName`" { It `"should pass PSScriptAnalyzer rules`" { # get the script path for analysis `$scriptPath = GenXdev.FileSystem\Expand-Path `"`$PSScriptRoot\..\..\Functions\`$FullModuleName\`$CmdLetNoTestName.ps1`" # run analyzer with explicit settings `$analyzerResults = GenXdev.Coding\Invoke-GenXdevScriptAnalyzer `` -Path `$scriptPath [string] `$message = `"`" `$analyzerResults | ForEach-Object { `$message = `$message + @`" -------------------------------------------------- Rule: `$(`$_.RuleName)`` Description: `$(`$_.Description) Message: `$(`$_.Message) ``r``n `"@ } `$analyzerResults.Count | Should -Be 0 -Because @`" The following PSScriptAnalyzer rules are being violated: `$message `"@; } } ################################################################################ "@).Replace( "`$CmdletName", $genXdevCmdlet.Name ).Replace( "`$FullModuleName", $genXdevCmdlet.ModuleName ).Replace( "`$CmdLetNoTestName", $genXdevCmdlet.Name ) # $prompt | Out-File -FilePath "Tests\$($genXdevCmdlet.FullModuleName)\$($genXdevCmdlet.CmdLetNoTestName).Tests.ps1" -Force # Write-Host "Created Tests\$($genXdevCmdlet.FullModuleName)\$($genXdevCmdlet.CmdLetNoTestName).Tests.ps1" $prompt | Out-File ((Expand-Path ($genXdevCmdlet.ScriptTestFilePath) -CreateDirectory)) -Force Write-Output $prompt } } |