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

Java: add test exercising Gradle download pruning #19135

Merged
merged 2 commits into from
Mar 31, 2025

Conversation

smowton
Copy link
Contributor

@smowton smowton commented Mar 27, 2025

This exhibits that buildless doesn't attempt to download junit-bom, a non-jar dependency of junit-jupiter-api.

@Copilot Copilot bot review requested due to automatic review settings March 27, 2025 15:20
@smowton smowton requested a review from a team as a code owner March 27, 2025 15:20
Copy link
Contributor

@Copilot Copilot AI left a 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

Comment on lines +7 to +8
public Fraction test(org.junit.jupiter.api.Test t) { return Fraction.ONE; }

Copy link
Preview

Copilot AI Mar 27, 2025

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.

Suggested change
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.

@smowton smowton force-pushed the smowton/admin/test-gradle-bom-downloads branch from dc4a280 to 766b735 Compare March 31, 2025 11:17
@smowton smowton force-pushed the smowton/admin/test-gradle-bom-downloads branch from 766b735 to d8f7f18 Compare March 31, 2025 12:36
@smowton smowton merged commit aaaa7f4 into github:main Mar 31, 2025
10 of 15 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants