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

Handle when an alert message contains links to files outside of the repository source #2672

Merged
merged 3 commits into from
Aug 8, 2023

Conversation

robertbrignull
Copy link
Contributor

Closes #2622

Fixes support for MRVA using queries where a placeholder link goes to outside of the source archive. In this case we have a location without a region and this was causing a crash because we were naughtily assuming fields to be defined.

Rendering of alerts now works and the message placeholder is rendered as a regular string instead of a link:
Screenshot 2023-08-04 at 12 28 42

Use the following query to reproduce the bug and observe that it now works:

/**
 * @kind problem
 */

import java

// Pick arbitrary element which is part of source; chose EnumType here because projects
// likely don't have that many enum types
// TypeString comes from the JDK and is not part of the source of the project
from EnumType t, TypeString notPartOfSource
where t.fromSource()
select t, "message $@", notPartOfSource, notPartOfSource.getName()

Checklist

  • CHANGELOG.md has been updated to incorporate all user visible changes made by this pull request.
  • Issues have been created for any UI or other user-facing changes made by this pull request.
  • [Maintainers only] If this pull request makes user-facing changes that require documentation changes, open a corresponding docs pull request in the github/codeql repo and add the ready-for-doc-review label there.

@robertbrignull robertbrignull requested review from a team as code owners August 4, 2023 11:33
Copy link
Contributor

@charisk charisk left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for fixing this! I've not tested locally myself but the code changes make sense.

@robertbrignull
Copy link
Contributor Author

I've not tested locally myself but the code changes make sense.

It was last week, but I did test locally, including with a message that does contain working links. I think it's all fine.

@robertbrignull robertbrignull merged commit f52a512 into main Aug 8, 2023
@robertbrignull robertbrignull deleted the robertbrignull/sarif-processing-no-location branch August 8, 2023 15:56
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
2 participants