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

JupiterTestEngine crashes if JUnit 4 is on the classpath but Hamcrest is not #2004

Closed
2 tasks done
sbrannen opened this issue Sep 7, 2019 · 0 comments
Closed
2 tasks done

Comments

@sbrannen
Copy link
Member

sbrannen commented Sep 7, 2019

Overview

While migrating the Spring Framework test suite from JUnit 4 and Hamcrest to JUnit Jupiter and AssertJ, entire projects in Spring's test suite started reporting zero tests after removing the dependency on Hamcrest even though the tests no longer used Hamcrest. Adding Hamcrest back as a test runtime dependency allowed the tests to execute again.

Analysis

Thanks to some investigative work by @marcphilipp, we came to the following conclusion.

The JupiterTestEngine fails with a NoClassDefFoundError if JUnit 4 is on the classpath but Hamcrest is not. The underlying reason is that OpenTest4JAndJUnit4AwareThrowableCollector has a static initialization block that checks if the org.junit.internal.AssumptionViolatedException class can be loaded. However, since AssumptionViolatedException has a direct dependency on org.hamcrest.Matcher, a NoClassDefFoundError is thrown when attempting to load AssumptionViolatedException.

Deliverables

  • Refactor OpenTest4JAndJUnit4AwareThrowableCollector so that a failed attempt to detect the presence of AssumptionViolatedException in the classpath does not crash the entire JupiterTestEngine.
  • Document in the Release Notes.
@sbrannen sbrannen added this to the 5.5.2 milestone Sep 7, 2019
@sbrannen sbrannen self-assigned this Sep 7, 2019
@sbrannen sbrannen mentioned this issue Sep 7, 2019
3 tasks
sbrannen added a commit that referenced this issue Sep 7, 2019
Prior to this commit, the JupiterTestEngine would crash without
executing any tests if JUnit 4 was on the classpath but Hamcrest was
not.

This commit fixes this bug by ensuring that initialization of the
OpenTest4JAndJUnit4AwareThrowableCollector class no longer fails if the
org.junit.internal.AssumptionViolatedException class cannot be loaded
from the classpath -- for example, due to a missing Hamcrest dependency.

Fixes #2004
sbrannen added a commit that referenced this issue Sep 7, 2019
sbrannen added a commit that referenced this issue Sep 7, 2019
sbrannen added a commit that referenced this issue Sep 8, 2019
This commit improves diagnostics by logging the cause of a failure to
load the AssumptionViolatedException class in
OpenTest4JAndJUnit4AwareThrowableCollector.

Issue: #2004
sbrannen added a commit that referenced this issue Sep 8, 2019
This commit improves diagnostics by logging the cause of a failure to
load the AssumptionViolatedException class in
OpenTest4JAndJUnit4AwareThrowableCollector.

Issue: #2004
sbrannen added a commit that referenced this issue Sep 8, 2019
This has been moved to 5.5.2.

Issue: #2004
sbrannen added a commit to spring-projects/spring-framework that referenced this issue Sep 9, 2019
This commit also removes the testRuntime dependency on Hamcrest which
was a workaround for junit-team/junit5#2004.

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

No branches or pull requests

1 participant