Fix QuantityIncreasesRisk edge case with only high behaviors present#1055
Merged
Conversation
Signed-off-by: egibs <20933572+egibs@users.noreply.github.com>
stevebeattie
requested changes
Jul 24, 2025
stevebeattie
left a comment
Member
There was a problem hiding this comment.
There's a lot of twisty logic in this, based on what command line arguments are passed. It'd be nice if we had some tests around this so that we make sure we're handling this logic correctly.
Co-authored-by: Steve Beattie <steve+github@nxnw.org> Signed-off-by: Evan Gibler <20933572+egibs@users.noreply.github.com>
Co-authored-by: Steve Beattie <steve+github@nxnw.org> Signed-off-by: Evan Gibler <20933572+egibs@users.noreply.github.com>
stevebeattie
approved these changes
Jul 24, 2025
stevebeattie
left a comment
Member
There was a problem hiding this comment.
Okay, I think I understand the logic and the changes, and am approving the PR. Would still like to capture the desired behaviors in some test cases.
Thanks!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
@jamie-albert pointed out that aggregated high behaviors which register as critical would be dropped when using
--min-risk=criticaland--min-file-risk=critical.This was mainly due to
handleOverridesdropping any behaviors that weren't greater than or equal to theminRisk(4).This PR fixes that edge case and adds additional guardrails when using
--quantity-increases-riskso that we preserve any behaviors until we finally get toif c.QuantityIncreasesRisk && upgradeRisk(ctx, overallRiskScore, riskCounts, size)....I also de-duped the usage of
HighestMatchRiskso we don't have to do that twice per file.Verifying that this works: