Skip to content

Conversation

@kortemik
Copy link
Member

Description

Checklists

Testing

General

  • I have checked that my test files and functions have meaningful names.
  • I have checked that each test tests only a single behavior.
  • I have done happy tests.
  • I have tested only my own code.
  • I have tested at least all public methods.

Assertions

  • I have checked that my tests use assertions and not runtime overhead.
  • I have checked that my tests end in assertions.
  • I have checked that there is no comparison statements in assertions.
  • I have checked that assertions are in tests and not in helper functions.
  • I have checked that assertions for iterables are outside of for loops and both sides of the iteration blocks.
  • I have checked that assertions are not tested inside consumers.

Testing Data

  • I have tested algorithms and anything else with the possibility of unbound growth.
  • I have checked that all testing data is local and fully replaceable or reproducible or both.
  • I have checked that all test files are standalone.
  • I have checked that all test-specific fake objects and classes are in the test directory.
  • I have checked that my tests do not contain anything related to customers, infrastructure or users.
  • I have checked that my tests do not contain non-generic information.
  • I have checked that my tests do not do external requests and are not privately or publicly routable.

Statements

  • I have checked that my tests do not use throws for exceptions.
  • I have checked that my tests do not use try-catch statements.
  • I have checked that my tests do not use if-else statements.

Java

  • I have checked that my tests for Java uses JUnit library.
  • I have checked that my tests for Java uses JUnit utilities for parameters.

Other

  • I have only tested public behavior and not private implementation details.
  • I have checked that my tests are not (partially) commented out.
  • I have checked that hand-crafted variables in assertions are used accordingly.
  • I have tested Object Equality.
  • I have checked that I do not have any manual tests or I have a valid reason for them and I have explained it in the PR description.

Code Quality

  • I have checked that my code follows metrics set in Procedure: Class Metrics.
  • I have checked that my code follows metrics set in Procedure: Method Metrics.
  • I have checked that my code follows metrics set in Procedure: Object Quality.
  • I have checked that my code does not have any NULL values.
  • I have checked my code does not contain FIXME or TODO comments.

import java.util.concurrent.atomic.AtomicReference;
import java.util.function.BiConsumer;

public class Entry {
Copy link

Choose a reason for hiding this comment

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

class & variables could be final.

import java.io.FileNotFoundException;
import java.util.Map;

public class InterpreterSettingsConfig {
Copy link

Choose a reason for hiding this comment

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

class&variables in getConfig could be final.
getConfig could be renamed to just config().

@kortemik kortemik requested a review from eemhu January 27, 2026 12:07
}

final String propertieskey = "properties";
if (!sparkObject.containsKey(propertieskey)) {
Copy link

Choose a reason for hiding this comment

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

could make a separate validation object for these like in nlf_01. perhaps for another issue

import java.util.concurrent.atomic.AtomicReference;
import java.util.function.BiConsumer;

public final class Entry {
Copy link

Choose a reason for hiding this comment

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

Perhaps there could be a "DPLQuery" object that takes the query as a ctor argument and returns the result dataset. Then "Entry" could handle the arguments and initializing objects and printing the dataset to console/file.

Copy link
Member Author

Choose a reason for hiding this comment

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

how does this differ from current?

 final DPLExecutorResult executorResult = dplExecutor
                    .interpret(batchHandler, sparkSession, queryId, noteId, paragraphId, lines);

takes the query and the intialized objects and returns the result via the batchHandler. Entry is atm responsible for print and initialization.

Copy link

Choose a reason for hiding this comment

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

I was thinking it would pretty much contain the lines 90-118, and return the String that is currently updated with the AtomicReference. But in the end I suppose it doesn't differ all that much from the current implementation.

@kortemik kortemik requested a review from eemhu January 28, 2026 06:27
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