Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix handling of conflicting dynamic parameters #2592

Merged
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
62 changes: 49 additions & 13 deletions src/functions/Mock.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -1339,21 +1339,20 @@ function Get-ContextToDefine {
}
else {
# the parameter is not defined in the parameter set,
# it is probably dynamic, let's see if I can get away with just adding
# it to the list of stuff to define
# it is probably dynamic, try remove "_" since the conflicting names
# are already handled to properly print the debug message

$name = if ($param.Key -in $script:ConflictingParameterNames) {
if ($PesterPreference.Debug.WriteDebugMessages.Value) {
Write-PesterDebugMessage -Scope Mock -Message "! Variable `$$($param.Key) is a built-in variable, rewriting it to `$_$($param.Key). Use the version with _ in your -ParameterFilter."
if ($param.Key.StartsWith('_')) {
$originalName = $param.Key.TrimStart('_')
if ($originalName -in $script:ConflictingParameterNames) {
if ($PesterPreference.Debug.WriteDebugMessages.Value) {
Write-PesterDebugMessage -Scope Mock -Message "! Variable `$$($originalName) is a built-in variable, rewriting it to `$_$($originalName). Use the version with _ in your -ParameterFilter."
}
}
"_$($param.Key)"
}
else {
$param.Key
}

if (-not $r.ContainsKey($name)) {
$r.Add($name, $param.Value)
if (-not $r.ContainsKey($param.Key)) {
$r.Add($param.Key, $param.Value)
}
}
}
Expand Down Expand Up @@ -1457,13 +1456,50 @@ function Get-MockDynamicParameter {

switch ($PSCmdlet.ParameterSetName) {
'Cmdlet' {
Get-DynamicParametersForCmdlet -CmdletName $CmdletName -Parameters $Parameters
$dynamicParams = Get-DynamicParametersForCmdlet -CmdletName $CmdletName -Parameters $Parameters
}

'Function' {
Get-DynamicParametersForMockedFunction -DynamicParamScriptBlock $DynamicParamScriptBlock -Parameters $Parameters -Cmdlet $Cmdlet
$dynamicParams = Get-DynamicParametersForMockedFunction -DynamicParamScriptBlock $DynamicParamScriptBlock -Parameters $Parameters -Cmdlet $Cmdlet
}
}

if ($null -eq $dynamicParams) {
return
}

Repair-ConflictingDynamicParameters -DynamicParams $dynamicParams
}

function Repair-ConflictingDynamicParameters {
[OutputType([System.Management.Automation.RuntimeDefinedParameterDictionary])]
param (
[Parameter(Mandatory = $true)]
[System.Management.Automation.RuntimeDefinedParameterDictionary]
$DynamicParams
)

$repairedDynamicParams = New-Object System.Management.Automation.RuntimeDefinedParameterDictionary
nohwnd marked this conversation as resolved.
Show resolved Hide resolved
$conflictingParams = Get-ConflictingParameterNames

foreach ($paramName in $DynamicParams.Keys) {
$dynamicParam = $DynamicParams[$paramName]

if ($conflictingParams -contains $paramName) {
$newName = "_$paramName"
$dynamicParam.Name = $newName

$aliasAttribute = New-Object System.Management.Automation.AliasAttribute -ArgumentList $paramName
nohwnd marked this conversation as resolved.
Show resolved Hide resolved
$dynamicParam.Attributes.Add($aliasAttribute)

$repairedDynamicParams[$newName] = $dynamicParam
}
else {
$repairedDynamicParams[$paramName] = $dynamicParam
}
}

return $repairedDynamicParams
}

function Get-DynamicParametersForCmdlet {
Expand Down
69 changes: 69 additions & 0 deletions tst/functions/Mock.Tests.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -3160,3 +3160,72 @@ Describe 'Mocking with nested Pester runs' {
Get-Command Get-ChildItem | Should -Not -Be 2
}
}

Describe 'Usage of Alias in DynamicParams' {
# https://github.com/pester/Pester/issues/1274

BeforeAll {
function New-DynamicAttr($ParamDictionary, $Name, $Alias = $null) {
$attr = New-Object -Type `
System.Management.Automation.ParameterAttribute
nohwnd marked this conversation as resolved.
Show resolved Hide resolved
$attr.Mandatory = $false
$attr.ParameterSetName = '__AllParameterSets'
$attributeCollection = New-Object `
-Type System.Collections.ObjectModel.Collection[System.Attribute]
nohwnd marked this conversation as resolved.
Show resolved Hide resolved
$attributeCollection.Add($attr)

if ($null -ne $Alias) {
$attr = New-Object -Type `
System.Management.Automation.AliasAttribute -ArgumentList @($Alias)
nohwnd marked this conversation as resolved.
Show resolved Hide resolved
$attributeCollection.Add($attr)
}

$dynParam1 = New-Object -Type `
System.Management.Automation.RuntimeDefinedParameter($Name, [string],
$attributeCollection)
nohwnd marked this conversation as resolved.
Show resolved Hide resolved

$ParamDictionary.Add($Name, $dynParam1)
}

function Test-DynamicParam {
[CmdletBinding()]
param(
[String]$Name
)

dynamicparam {
if ($Name.StartsWith("Hello")) {
$paramDictionary = New-Object `
-Type System.Management.Automation.RuntimeDefinedParameterDictionary
nohwnd marked this conversation as resolved.
Show resolved Hide resolved
New-DynamicAttr -ParamDictionary $paramDictionary -Name "PSEdition"

return $paramDictionary
}
}

process {
if ($PSBoundParameters.PSEdition) {
Write-Host "PSEdition value: $($PSBoundParameters.PSEdition)"
}
}
}
}

Context 'Mocking with ParameterFilter' {
It 'Mocks Test-DynamicParam with PSEdition set to Desktop' {
Mock Test-DynamicParam { "World" } -ParameterFilter { $_PSEdition -eq 'Desktop' }

Test-DynamicParam -Name "Hello" -PSEdition 'Desktop' | Should -Be 'World'
}
}

Context 'Validating Mock Invocation' {
It 'Invokes Test-DynamicParam with correct parameters' {
Mock Test-DynamicParam { "World" }

Test-DynamicParam -Name "Hello" -PSEdition 'Desktop' | Should -Be 'World'

Should -Invoke Test-DynamicParam -Exactly 1 -Scope It
}
}
}