-
Notifications
You must be signed in to change notification settings - Fork 0
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
Add findings section to detectorTool
#21
Conversation
15ef3bc
to
c48da73
Compare
c48da73
to
9677ec6
Compare
"type": "string", | ||
"description": "The ID of the rule" | ||
}, | ||
"name": { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I can imagine also a web link to the rule definition.
I think the name and ID might be the same in some cases. For CodeQL, this is definitely the case. Is that okay?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah I think that's fine. This purpose is to enable us to be consistent with "Fixes rule from tool (id: )", but I don't think it's a problem if name == id.
"description": "Reason the finding was not fixed" | ||
} | ||
}, | ||
"additionalProperties": true, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I like this section, but it could be potentially massive. Scanners commonly find pathological conditions where they end up reporting 50,000 things. Is there anything we can/should do in the spec to protect ourselves from massive, redundant info?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We can add a maxItems
although it's incumbent upon the consumer to enforce that. Basically it would mean we'd ignore any results beyond maxItems
.
"name": { | ||
"type": "string", | ||
"description": "The name of the rule" | ||
}, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think description
is too onerous to add for codemod authors. We should provide a link to their documentation, if they have one, and that's it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Okay that's fair. So optional ruleUrl
or something similar?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, I think rule URL is needed and scratches this itch
}, | ||
"additionalProperties": true, | ||
"required": ["guid", "fixed"], | ||
"if": { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TIL you can have if
statements in here
codetf.schema.json
Outdated
}, | ||
"description": { | ||
"type": "string", | ||
"description": "A description of the rule" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This raises internationalization concerns for me, but I already have those same concerns about other descriptions in CodeTF, so we're no worse off by adding this. 🙏🏻'ing that LLM can just do all the English -> SomethingElse translations.
"if": { | ||
"properties": { | ||
"fixed": { "boolean": false } | ||
}, | ||
"required": ["reason"] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fancy
"type": "string", | ||
"description": "Short description of the tool vendor rule that detected the issue" | ||
"findings": { | ||
"type": "array", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What's the case where a codemod would have multiple findings for a single tool within a single change?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The detectionTool
belongs to the result
and not to the change
so I think we can expect potentially multiple findings here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I see, I misread that.
I know it's not explicit in the data model, but to help with my understanding, what's the relationship that we expect between change
and finding
? Is it, every finding
that has fixed: true
has one or more change
s ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah I think so. Would it make sense to include the same finding ID as an optional field of cange
or changeSet
as well?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'll vote YAGNI for now but we can consider enriching the data model with that link later.
"type": "string", | ||
"description": "ID of the tool vendor rule that detected the issue" | ||
"rule": { | ||
"$ref": "#/definitions/detector/rule", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I kind of like the name detector
. Consider chaining detectionTool
to detector
.
A bit of a strawman so we can have a discussion about it. Also took @gilday's suggestion to nest the rule in a separate object.