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

[BAEL-8962] Check if a code compiles in Java using JavaCompiler #18358

Open
wants to merge 6 commits into
base: master
Choose a base branch
from

Conversation

dhrubo55
Copy link
Contributor

@dhrubo55 dhrubo55 commented Mar 3, 2025

No description provided.

}

@Test
void testCompileFromString_Success() {
Copy link
Collaborator

Choose a reason for hiding this comment

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

We use given_when_then or when_then BDD style syntax for test names (same elsewhere)

@dhrubo55 dhrubo55 force-pushed the BAEL-8962-Check-if-a-code-compiles-in-Java-using-JavaCompiler branch from e173bdc to e63c994 Compare March 16, 2025 11:00


JavaCompiler.CompilationTask task = compiler.getTask(
null, // Writer for compiler output
Copy link
Collaborator

Choose a reason for hiding this comment

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

Suggested change
null, // Writer for compiler output
null, // Writer for compiler output

return success;
}

// Add this method to JavaCompilerUtils
Copy link
Collaborator

Choose a reason for hiding this comment

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

?

private boolean compile(Iterable<? extends JavaFileObject> compilationUnits) {
DiagnosticCollector<JavaFileObject> diagnostics = new DiagnosticCollector<>();


Copy link
Collaborator

Choose a reason for hiding this comment

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

Remove extra line

loadedClass.getMethod("main", String[].class).invoke(null, (Object) args);
}
}

Copy link
Collaborator

Choose a reason for hiding this comment

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

Remove extra line

}

@Test
void given_simpleHelloWorldClass_when_compiledFromString_then_compilationSucceeds() {
Copy link
Collaborator

Choose a reason for hiding this comment

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

This is not the right syntax, see the suggestion for the syntax we require

Suggested change
void given_simpleHelloWorldClass_when_compiledFromString_then_compilationSucceeds() {
void givenSimpleHelloWorldClass_whenCompiledFromString_thenCompilationSucceeds() {


@Test
void given_simpleHelloWorldClass_when_compiledFromString_then_compilationSucceeds() {
// Simple "Hello World" class
Copy link
Collaborator

Choose a reason for hiding this comment

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

Remove all the comments from the tests, the assertion messages and test layout should speak for itself

<dependency>
<groupId>com.github.stefanbirkner</groupId>
<artifactId>system-lambda</artifactId>
<version>1.2.1</version>
Copy link
Collaborator

Choose a reason for hiding this comment

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

Extract a version number property (this is another mandatory guideline)

DiagnosticCollector<JavaFileObject> diagnostics = new DiagnosticCollector<>();

JavaCompiler.CompilationTask task = compiler.getTask(
null, // Writer for compiler output
Copy link
Collaborator

Choose a reason for hiding this comment

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

The alignment is still not correct here. Please review it visually and fix it.

Comment on lines +15 to +18
/**
* A utility class for compiling Java source code using the Java Compiler API.
* This class provides methods to compile Java code from strings or files.
*/
Copy link
Collaborator

Choose a reason for hiding this comment

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

I was also advised by the team that we have guidelines to not use comments to add explanations for the code. All the required explanations should be in the text. Can you please remove the comments and JavaDoc from the PR to address this, and move any comments that are important to note into the article text instead.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants