We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Description of the issue
When using the Within keyword, comparison of wrapped non-string types incorrectly returns Fail instead of Pass.
Within
Fail
Pass
In addition comparison against null also fails.
To Reproduce
Steps to reproduce the issue:
Rule 'WithinTypes' { Within 'BooleanValue' $True Within 'IntValue' 0, 1, 2, 3 Within 'NullValue' $Null }
$testObject = @( [PSCustomObject]@{ BooleanValue = $True; IntValue = 1; NullValue = $Null; } [PSCustomObject]@{ BooleanValue = $False; IntValue = 100; NullValue = $Null; } ([PSCustomObject]@{ BooleanValue = $True; IntValue = 1; NullValue = $Null; } | ConvertTo-Json | ConvertFrom-Json) [PSCustomObject]@{ BooleanValue = $Null; IntValue = $Null; NullValue = 'NotNull'; } ) $testObject | Invoke-PSRule -Name 'WithinTypes' -Outcome All;
Expected behaviour
Within should correctly compare non-string types.
Module in use and version:
Captured output from $PSVersionTable:
$PSVersionTable
Name Value ---- ----- PSVersion 6.2.1 PSEdition Core GitCommitId 6.2.1 OS Microsoft Windows 10.0.18362 Platform Win32NT PSCompatibleVersions {1.0, 2.0, 3.0, 4.0…} PSRemotingProtocolVersion 2.3 SerializationVersion 1.1.0.1 WSManStackVersion 3.0
Additional context
Additional cases related to #226.
The text was updated successfully, but these errors were encountered:
Fix within comparision issue #237
595f5e8
Add debug messages and verbose limiting #146 #235 (#236)
c24358d
- Add debug messages and verbose limiting #146 #235 - Fix test to handle DebugPreference for Window PS - Fix within comparison issue #237
BernieWhite
Successfully merging a pull request may close this issue.
Description of the issue
When using the
Within
keyword, comparison of wrapped non-string types incorrectly returnsFail
instead ofPass
.In addition comparison against null also fails.
To Reproduce
Steps to reproduce the issue:
Expected behaviour
Within
should correctly compare non-string types.Module in use and version:
Captured output from
$PSVersionTable
:Additional context
Additional cases related to #226.
The text was updated successfully, but these errors were encountered: