PowerShell/test/powershell/Language/Scripting/Dynamicparameters.Tests.ps1
bergmeister ffd39b2853 PSScriptAnalyzer fixes by category (#4261)
- Fix PSScriptAnalyzer warnings of type PSAvoidUsingCmdletAliases for 'ForEach-Object' (alias is '%' or 'foreach')
- Fix PSScriptAnalyzer warnings of type PSAvoidUsingCmdletAliases for 'Where-Object' (alias is '?' or 'where')
- Fix PSScriptAnalyzer warnings of type PSAvoidUsingCmdletAliases for 'Select-Object' (alias is 'select')
- Fix PSScriptAnalyzer warnings of type PSPossibleIncorrectComparisonWithNull. Essentially, $null has to be on the left-hand side when using it for comparison.
- A Test in ParameterBinding.Tests.ps1 needed adapting as this test used to rely on the wrong null comparison
- Replace a subset of tests of kind '($object -eq $null) | Should Be $true' with '$object | Should Be $null'
2017-07-21 21:03:49 -07:00

85 lines
2.9 KiB
PowerShell

Describe "Dynamic parameter support in script cmdlets." -Tags "CI" {
BeforeAll {
Class MyTestParameter {
[parameter(ParameterSetName = 'pset1', position=0, mandatory=1)]
[string] $name
}
function foo-bar
{
[CmdletBinding()]
param($path)
dynamicparam {
if ($PSBoundParameters["path"] -contains "abc") {
$attributes = [System.Management.Automation.ParameterAttribute]::New()
$attributes.ParameterSetName = 'pset1'
$attributes.Mandatory = $false
$attributeCollection = [System.Collections.ObjectModel.Collection``1[System.Attribute]]::new()
$attributeCollection.Add($attributes)
$dynParam1 = [System.Management.Automation.RuntimeDefinedParameter]::new("dp1", [Int32], $attributeCollection)
$paramDictionary = [System.Management.Automation.RuntimeDefinedParameterDictionary]::new()
$paramDictionary.Add("dp1", $dynParam1)
return $paramDictionary
}
elseif($PSBoundParameters["path"] -contains "class") {
$paramDictionary = [MyTestParameter]::new()
return $paramDictionary
}
$paramDictionary = $null
return $null
}
begin {
if(($null -ne $paramDictionary) -and ($paramDictionary -is [MyTestParameter]) ) {
$paramDictionary.name
}
elseif ($null -ne $paramDictionary) {
if ($null -ne $paramDictionary.dp1.Value) {
$paramDictionary.dp1.Value
}
else {
"dynamic parameters not passed"
}
}
else {
"no dynamic parameters"
}
}
process {}
end {}
}
}
It "The dynamic parameter is enabled and bound" {
foo-bar -path abc -dp1 42 | Should Be 42
}
It "When the dynamic parameter is not available, and raises an error when specified" {
try {
foo-bar -path def -dp1 42
Throw "Exception expected, execution should not have reached here"
} catch {
$_.FullyQualifiedErrorId | Should Be "NamedParameterNotFound,foo-bar"
}
}
It "No dynamic parameter shouldn't cause an errr " {
foo-bar -path def | Should Be 'no dynamic parameters'
}
It "Not specifying dynamic parameter shouldn't cause an error" {
foo-bar -path abc | Should Be 'dynamic parameters not passed'
}
It "Parameter is defined in Class" {
foo-bar -path class -name "myName" | Should Be 'myName'
}
}