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

Streamline data provider listener invocation #3058

Merged
merged 1 commit into from Feb 9, 2024

Conversation

krmahadevan
Copy link
Member

@krmahadevan krmahadevan commented Feb 7, 2024

Closes #3045

Fixes #3045 .

Did you remember to?

  • Add test case(s)
  • Update CHANGES.txt
  • Auto applied styling via ./gradlew autostyleApply

We encourage pull requests that:

  • Add new features to TestNG (or)
  • Fix bugs in TestNG

If your pull request involves fixing SonarQube issues then we would suggest that you please discuss this with the
TestNG-dev before you spend time working on it.

Note: For more information on contribution guidelines please make sure you refer our Contributing section for detailed set of steps.

Summary by CodeRabbit

  • Bug Fixes
    • Resolved an issue causing data provider listeners to be called twice under certain conditions.
    • Fixed a crash (java.lang.IllegalStateException) occurring when results per method were empty.
    • Removed outdated JUnit support in TestNG, enhancing compatibility and performance.
  • New Features
    • Improved TestNG's data provider functionality by ensuring listeners are invoked only once per data provider, enhancing test reliability.
  • Tests
    • Added new tests to validate that data provider listeners are correctly invoked.

Copy link

coderabbitai bot commented Feb 7, 2024

Walkthrough

The recent updates focus on addressing issues related to IDataProviderListener in TestNG, ensuring the appropriate calling of methods, fixing an illegal state exception, and removing deprecated JUnit support. New test cases and classes were introduced to validate these fixes, enhancing the reliability of data-driven testing.

Changes

Files Changes
CHANGES.txt, DataProviderHolder.java Fixed issues GITHUB-3045, GITHUB-3038, and GITHUB-3022; updated data provider listener handling.
.../internal/invokers/TestInvoker.java, DataProviderHolder.java Introduced new imports, methods, and changed data provider listener handling.
.../test/java/test/dataprovider/DataProviderTest.java Added new test methods, classes, and helper methods for testing data provider behavior.
.../test/java/test/dataprovider/issue3045/DataProviderListener.java, DataProviderTestClassSample.java, DataProviderWithoutListenerTestClassSample.java Added new classes and methods related to IDataProviderListener for issue resolution.

Assessment against linked issues

Objective Addressed Explanation
Ensure IDataProviderListener methods are called once per data provider method in every setup (#3045)
Address double call issue in specific setup with custom listener and multiple test sections in TestNG suite (#3045)
Remove deprecated JUnit support (#3022)
Fix java.lang.IllegalStateException when results per method are empty (#3038)

Poem

Bugs in code, like shadows in light,
CodeRabbit hops, making them right.
🐇✨ With fixes applied, tests now sing,
TestNG's dance, a bug-free spring.

Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

Share

Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>.
    • Generate unit-tests for this file.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit tests for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai generate interesting stats about this repository from git and render them as a table.
    • @coderabbitai show all the console.log statements in this repository.
    • @coderabbitai read src/utils.ts and generate unit tests.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (invoked as PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger a review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai help to get help.

Additionally, you can add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.

CodeRabbit Configration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • The JSON schema for the configuration file is available here.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/coderabbit-overrides.v2.json

CodeRabbit Discord Community

Join our Discord Community to get help, request features, and share feedback.

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Review Status

Actionable comments generated: 2

Configuration used: CodeRabbit UI

Commits Files that changed from the base of the PR and between 4af6e94 and 8770d6a.
Files selected for processing (6)
  • CHANGES.txt (1 hunks)
  • testng-core/src/main/java/org/testng/internal/invokers/TestInvoker.java (2 hunks)
  • testng-core/src/test/java/test/dataprovider/DataProviderTest.java (3 hunks)
  • testng-core/src/test/java/test/dataprovider/issue3045/DataProviderListener.java (1 hunks)
  • testng-core/src/test/java/test/dataprovider/issue3045/DataProviderTestClassSample.java (1 hunks)
  • testng-core/src/test/java/test/dataprovider/issue3045/DataProviderWithoutListenerTestClassSample.java (1 hunks)
Additional comments: 11
testng-core/src/test/java/test/dataprovider/issue3045/DataProviderWithoutListenerTestClassSample.java (1)
  • 1-18: LGTM!
testng-core/src/test/java/test/dataprovider/issue3045/DataProviderTestClassSample.java (1)
  • 1-20: LGTM!
testng-core/src/test/java/test/dataprovider/issue3045/DataProviderListener.java (1)
  • 1-35: LGTM!
testng-core/src/test/java/test/dataprovider/DataProviderTest.java (3)
  • 25-26: LGTM!
  • 59-61: LGTM!
  • 674-702: LGTM!
testng-core/src/main/java/org/testng/internal/invokers/TestInvoker.java (4)
  • 21-21: Import java.util.function.BinaryOperator is correctly added to support merging operations in the dataProviderListeners() method.
  • 23-23: Import java.util.function.Function is correctly added to support functional programming practices, specifically in the dataProviderListeners() method for mapping operations.
  • 270-272: The className(IDataProviderListener listener) method is correctly implemented to return the class name of a listener. This utility method aids in identifying unique listeners by their class names, which is essential for the deduplication logic in dataProviderListeners().
  • 284-286: The filtering logic in dataProviderListeners() correctly ensures that only unique listeners are added from the suite level, preventing duplicate invocations. This implementation aligns with the PR's objective to invoke IDataProviderListener methods only once per data provider method.
CHANGES.txt (1)
  • 3-3: The version number 7.10.0 is mentioned without any associated changes. Please verify if this is intentional or if the changes for this version are missing.

@@ -1,5 +1,6 @@
Current
7.10.0
Fixed: GITHUB-3045: IDataProviderListener - beforeDataProviderExecution and afterDataProviderExecution are called twice in special setup (Krishnan Mahadevan)
Copy link

Choose a reason for hiding this comment

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

The version 7.10.0 is listed without any subsequent changes or enhancements detailed, which deviates from the expected format of documenting version updates.

- 7.10.0
+ 7.10.0 (Date or detailed changes missing)

Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation.

Suggested change
Fixed: GITHUB-3045: IDataProviderListener - beforeDataProviderExecution and afterDataProviderExecution are called twice in special setup (Krishnan Mahadevan)
Fixed: GITHUB-3045: IDataProviderListener - beforeDataProviderExecution and afterDataProviderExecution are called twice in special setup (Krishnan Mahadevan)
7.10.0 (Date or detailed changes missing)

Comment on lines 276 to 280
BinaryOperator<IDataProviderListener> merger = (l1, l2) -> l1;
Map<String, IDataProviderListener> data =
this.holder.getListeners().stream()
.collect(Collectors.toMap(TestInvoker::className, Function.identity(), merger));
Collection<IDataProviderListener> dpListeners = Sets.newHashSet(data.values());
Copy link

Choose a reason for hiding this comment

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

The use of BinaryOperator<IDataProviderListener> merger = (l1, l2) -> l1; in dataProviderListeners() effectively ensures that in case of duplicates, the first encountered listener is retained. This logic is crucial for preventing multiple invocations of the same listener. However, consider adding a comment explaining the choice of keeping the first listener in case of duplicates for future maintainability.

+ // In case of duplicate listeners, retain the first encountered instance
  BinaryOperator<IDataProviderListener> merger = (l1, l2) -> l1;

Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation.

Suggested change
BinaryOperator<IDataProviderListener> merger = (l1, l2) -> l1;
Map<String, IDataProviderListener> data =
this.holder.getListeners().stream()
.collect(Collectors.toMap(TestInvoker::className, Function.identity(), merger));
Collection<IDataProviderListener> dpListeners = Sets.newHashSet(data.values());
// In case of duplicate listeners, retain the first encountered instance
BinaryOperator<IDataProviderListener> merger = (l1, l2) -> l1;
Map<String, IDataProviderListener> data =
this.holder.getListeners().stream()
.collect(Collectors.toMap(TestInvoker::className, Function.identity(), merger));
Collection<IDataProviderListener> dpListeners = Sets.newHashSet(data.values());

Copy link
Member

@juherr juherr left a comment

Choose a reason for hiding this comment

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

As I understand the fix, it removes duplicated listeners.
Instead, why not trying to not add the duplication?

@krmahadevan
Copy link
Member Author

As I understand the fix, it removes duplicated listeners. Instead, why not trying to not add the duplication?

I think the duplication happens when merging the listeners. That is why I am pruning the duplicates while iterating

@krmahadevan
Copy link
Member Author

@juherr - please ignore my earlier comment. You were right. I refactored the code to add the pruning at the level wherein entries are being added. Please check now.

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Review Status

Actionable comments generated: 0

Configuration used: CodeRabbit UI

Commits Files that changed from the base of the PR and between 4af6e94 and e5c2b4e.
Files selected for processing (6)
  • CHANGES.txt (1 hunks)
  • testng-core/src/main/java/org/testng/DataProviderHolder.java (4 hunks)
  • testng-core/src/test/java/test/dataprovider/DataProviderTest.java (3 hunks)
  • testng-core/src/test/java/test/dataprovider/issue3045/DataProviderListener.java (1 hunks)
  • testng-core/src/test/java/test/dataprovider/issue3045/DataProviderTestClassSample.java (1 hunks)
  • testng-core/src/test/java/test/dataprovider/issue3045/DataProviderWithoutListenerTestClassSample.java (1 hunks)
Files skipped from review as they are similar to previous changes (5)
  • CHANGES.txt
  • testng-core/src/test/java/test/dataprovider/DataProviderTest.java
  • testng-core/src/test/java/test/dataprovider/issue3045/DataProviderListener.java
  • testng-core/src/test/java/test/dataprovider/issue3045/DataProviderTestClassSample.java
  • testng-core/src/test/java/test/dataprovider/issue3045/DataProviderWithoutListenerTestClassSample.java
Additional comments: 4
testng-core/src/main/java/org/testng/DataProviderHolder.java (4)
  • 15-15: Switching listeners from a Set to a ConcurrentMap is a good approach for ensuring thread safety and uniqueness of listeners based on their class. This change aligns with the PR's objective to prevent duplicate listener invocations.
  • 19-19: Returning an unmodifiable collection of the map's values in getListeners maintains immutability and thread safety of the listeners collection when exposed to external callers.
  • 31-31: Using putIfAbsent in addListener effectively prevents duplicate listeners based on their class, aligning with the objective to ensure each listener is added only once. This is a correct use of ConcurrentMap's capabilities.
  • 43-43: Calling addListeners with other.getListeners() in the merge method to combine listeners from another DataProviderHolder is a straightforward and effective way to merge listener collections without introducing duplicates.

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Review Status

Actionable comments generated: 0

Configuration used: CodeRabbit UI

Commits Files that changed from the base of the PR and between 4c7653d and 4a811ab.
Files selected for processing (6)
  • CHANGES.txt (1 hunks)
  • testng-core/src/main/java/org/testng/DataProviderHolder.java (4 hunks)
  • testng-core/src/test/java/test/dataprovider/DataProviderTest.java (3 hunks)
  • testng-core/src/test/java/test/dataprovider/issue3045/DataProviderListener.java (1 hunks)
  • testng-core/src/test/java/test/dataprovider/issue3045/DataProviderTestClassSample.java (1 hunks)
  • testng-core/src/test/java/test/dataprovider/issue3045/DataProviderWithoutListenerTestClassSample.java (1 hunks)
Files skipped from review as they are similar to previous changes (6)
  • CHANGES.txt
  • testng-core/src/main/java/org/testng/DataProviderHolder.java
  • testng-core/src/test/java/test/dataprovider/DataProviderTest.java
  • testng-core/src/test/java/test/dataprovider/issue3045/DataProviderListener.java
  • testng-core/src/test/java/test/dataprovider/issue3045/DataProviderTestClassSample.java
  • testng-core/src/test/java/test/dataprovider/issue3045/DataProviderWithoutListenerTestClassSample.java

runTest(DataProviderWithoutListenerTestClassSample.class, DataProviderListener.class.getName());
}

private static void runTest(Class<?> clazz, String listener) {
Copy link
Member

Choose a reason for hiding this comment

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

Class<? extends TestngListener> could be expressive.

Copy link
Member Author

Choose a reason for hiding this comment

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

No. The first parameter is actually the test class and not the listener. The listener is being passed in as a String

Copy link
Member

Choose a reason for hiding this comment

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

Yes. That's my point. Why do you use a string?

Copy link
Member Author

Choose a reason for hiding this comment

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

TestNG is either ways going to accept a string. So why not ?

Copy link
Member

Choose a reason for hiding this comment

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

It is a question of style and api design. You should not exposed untyped object when it is possible to avoid it.
String is not a strong type because you can put everything into it.
Here Class is a better choice and you will not have to check inputs.
Just do the string conversion the later you can.

Copy link
Member Author

Choose a reason for hiding this comment

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

@juherr - Couple of things

  • This is an existing API in the XmlSuite class and I am not adding a new one. XmlSuite will only accept strings.
  • The method in question is being used by 2 test methods with the sole intention of avoiding code duplication. So the rationale of exposing any untyped object or api design does not hold valid here.
  • I will still have to check for inputs, because the reusable method runTest is going to set a fully qualified class name to XmlSuite ONLY if a listener was passed. So if a Class<?> was passed, then I would be sending in null and thus doing a null check and if a string is being sent, i do a empty check.

So I am not convinced that the change you are suggesting is going to add any value here because this is just within the scope of a reusable method that is being shared by 2 test methods with the sole intention of avoiding code duplication.

Copy link
Member

Choose a reason for hiding this comment

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

The point is not modifing current api
And I agree the value add here, in this specific context, is very low.
It is a general advice which I think should be an habbit.
I don't understand the argument to not doing it.

Copy link
Member Author

Choose a reason for hiding this comment

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

@juherr - It wasn't an argument. I was genuinely trying to understand the rationale. I agree with you on the fact that it would need to be a general good habit. My contention was that in this case it wasn't needed.

Either ways, it turns out that we both missed one part in that method :) I was using a string to pass the listener name, but was actually resorting to using a hard coded listener name always. I have now fixed it by replacing it with a boolean which indicates if a listener should or should not be wired in or not.

Copy link
Member Author

Choose a reason for hiding this comment

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

My apologies if it sounded as if I was on an argumentative mode. That was not my intention.

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Review Status

Actionable comments generated: 0

Configuration used: CodeRabbit UI

Commits Files that changed from the base of the PR and between 4c7653d and 94c4d2b.
Files selected for processing (6)
  • CHANGES.txt (1 hunks)
  • testng-core/src/main/java/org/testng/DataProviderHolder.java (4 hunks)
  • testng-core/src/test/java/test/dataprovider/DataProviderTest.java (3 hunks)
  • testng-core/src/test/java/test/dataprovider/issue3045/DataProviderListener.java (1 hunks)
  • testng-core/src/test/java/test/dataprovider/issue3045/DataProviderTestClassSample.java (1 hunks)
  • testng-core/src/test/java/test/dataprovider/issue3045/DataProviderWithoutListenerTestClassSample.java (1 hunks)
Files skipped from review as they are similar to previous changes (6)
  • CHANGES.txt
  • testng-core/src/main/java/org/testng/DataProviderHolder.java
  • testng-core/src/test/java/test/dataprovider/DataProviderTest.java
  • testng-core/src/test/java/test/dataprovider/issue3045/DataProviderListener.java
  • testng-core/src/test/java/test/dataprovider/issue3045/DataProviderTestClassSample.java
  • testng-core/src/test/java/test/dataprovider/issue3045/DataProviderWithoutListenerTestClassSample.java

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Review Status

Actionable comments generated: 0

Configuration used: CodeRabbit UI

Commits Files that changed from the base of the PR and between 4c7653d and c47c9bd.
Files selected for processing (6)
  • CHANGES.txt (1 hunks)
  • testng-core/src/main/java/org/testng/DataProviderHolder.java (4 hunks)
  • testng-core/src/test/java/test/dataprovider/DataProviderTest.java (3 hunks)
  • testng-core/src/test/java/test/dataprovider/issue3045/DataProviderListener.java (1 hunks)
  • testng-core/src/test/java/test/dataprovider/issue3045/DataProviderTestClassSample.java (1 hunks)
  • testng-core/src/test/java/test/dataprovider/issue3045/DataProviderWithoutListenerTestClassSample.java (1 hunks)
Files skipped from review as they are similar to previous changes (6)
  • CHANGES.txt
  • testng-core/src/main/java/org/testng/DataProviderHolder.java
  • testng-core/src/test/java/test/dataprovider/DataProviderTest.java
  • testng-core/src/test/java/test/dataprovider/issue3045/DataProviderListener.java
  • testng-core/src/test/java/test/dataprovider/issue3045/DataProviderTestClassSample.java
  • testng-core/src/test/java/test/dataprovider/issue3045/DataProviderWithoutListenerTestClassSample.java

@krmahadevan krmahadevan merged commit 3b3d67c into testng-team:master Feb 9, 2024
6 of 9 checks passed
@krmahadevan krmahadevan deleted the bugfix/3045 branch February 9, 2024 10:33
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