Skip to content
This repository was archived by the owner on Jun 13, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Describe "E2E validation of PSGallery" {
Describe "E2E validation of PSGallery" -fixture{
BeforeAll {
$Repository = "InternalPSGallery"
$ModuleName = "FormatTools"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Describe "Simple Validation of PSGallery" {
Describe -name "Simple Validation of PSGallery" {
It "The PowerShell Gallery should be responsive" {
$request = [System.Net.WebRequest]::Create("http://psget/psgallery")
$response = $Request.GetResponse()
Expand Down
15 changes: 13 additions & 2 deletions Modules/OperationValidation/OperationValidation.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,19 @@ function Get-TestFromScript
}, $true) |
ForEach-Object {
# This is the name of the 'describe' block
$describeName = ($_.CommandElements | Where-Object { $_.StaticType.name -eq 'string' })[1].SafeGetValue()

for ($x = 0; $x -lt $_.CommandElements.Count; $x++)
{
#Name parameter is named
if ($_.CommandElements[$x] -is [System.Management.Automation.Language.CommandParameterAst] -and $_.CommandElements[$x].ParameterName -eq 'Name')
{
$describeName = $_.CommandElements[$x + 1].value
}
#if we have a string without a parameter name, return first hit. Name parameter is at position 0.
ElseIf (($_.CommandElements[$x] -is [System.Management.Automation.Language.StringConstantExpressionAst]) -and ($_.CommandElements[$x - 1] -is [System.Management.Automation.Language.StringConstantExpressionAst]))
{
$describeName = $_.CommandElements[$x].value
}
}
$item = [PSCustomObject][ordered]@{
Name = $describeName
Tags = @()
Expand Down