-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
Java: add test exercising Gradle download pruning #19135
Java: add test exercising Gradle download pruning #19135
Conversation
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.
Pull Request Overview
This PR introduces a new integration test and corresponding change note to ensure that, under buildless mode with Gradle, the system no longer attempts to download non-jar Maven artifacts (e.g. BOMs).
- Updates the change notes to document the fix.
- Adds a Python integration test to exercise Gradle download pruning.
- Introduces a Java test file that, however, appears to misuse the @test annotation.
Reviewed Changes
Copilot reviewed 3 out of 8 changed files in this pull request and generated 1 comment.
File | Description |
---|---|
java/ql/lib/change-notes/2025-03-27-gradle-fetch-reduction.md | Updated changenotes explaining the download pruning fix. |
java/ql/integration-tests/java/buildless-gradle-boms/test.py | Added a new integration test for Gradle BOM download pruning. |
java/ql/integration-tests/java/buildless-gradle-boms/src/main/java/com/fractestexample/Test.java | Contains a method that improperly uses the JUnit @test annotation as a parameter. |
Files not reviewed (5)
- java/ql/integration-tests/java/buildless-gradle-boms/build.gradle: Language not supported
- java/ql/integration-tests/java/buildless-gradle-boms/buildless-fetches.expected: Language not supported
- java/ql/integration-tests/java/buildless-gradle-boms/diagnostics.expected: Language not supported
- java/ql/integration-tests/java/buildless-gradle-boms/settings.gradle: Language not supported
- java/ql/integration-tests/java/buildless-gradle-boms/source_archive.expected: Language not supported
Comments suppressed due to low confidence (1)
java/ql/integration-tests/java/buildless-gradle-boms/test.py:1
- The integration test currently creates a database but does not verify that the BOM artifact is pruned. Consider adding assertions or checks to confirm that no unwanted downloads occur.
def test(codeql, java, gradle_8_3):
Tip: Copilot only keeps its highest confidence comments to reduce noise and keep you focused. Learn more
public Fraction test(org.junit.jupiter.api.Test t) { return Fraction.ONE; } | ||
|
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.
Using org.junit.jupiter.api.Test as a parameter type appears to be incorrect; consider annotating the method with @test and removing the parameter to correctly define a test method.
public Fraction test(org.junit.jupiter.api.Test t) { return Fraction.ONE; } | |
@Test | |
public Fraction test() { return Fraction.ONE; } |
Copilot is powered by AI, so mistakes are possible. Review output carefully before use.
dc4a280
to
766b735
Compare
766b735
to
d8f7f18
Compare
This exhibits that buildless doesn't attempt to download junit-bom, a non-jar dependency of junit-jupiter-api.