DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports
Events Video Library
Refcards
Trend Reports

Events

View Events Video Library

Related

  • Spring Boot Pet Clinic App: A Performance Study
  • How to Activate New User Accounts by Email
  • Implementing iOS Accessibility: A Developer's Practical Guide
  • Introduction to Data-Driven Testing With JUnit 5: A Guide to Efficient and Scalable Testing

Trending

  • Feature Flag Debt: Performance Impact in Enterprise Applications
  • LLM-Powered Deep Parsing for Industrial Inventory Search
  • OpenAPI From Code With Spring and Java: A Recipe for Your CI
  • Lambda-Driven API Design: Building Composable Node.js Endpoints With Functional Primitives
  1. DZone
  2. Testing, Deployment, and Maintenance
  3. Testing, Tools, and Frameworks
  4. Spring-Based Apps: Migrating to JUnit 5

Spring-Based Apps: Migrating to JUnit 5

With JUnit 5 newly available, we take a look at how migrating your JUnit 4 tests to JUnit 5 might go as well as a couple of pitfalls to avoid.

By 
Biju Kunjummen user avatar
Biju Kunjummen
·
Jan. 08, 18 · Tutorial
Likes (4)
Comment
Save
Tweet
Share
28.3K Views

Join the DZone community and get the full member experience.

Join For Free

This is a quick write-up on migrating a Gradle-based Spring Boot app from JUnit 4 to the shiny new Junit 5. JUnit 4 tests continue to work with Junit 5 Test Engine abstraction, which provides support for tests written in different programming models. In this instance, JUnit 5 supports a Vintage Test Engine with the ability to run JUnit 4 tests.

Here is a sample project with JUnit 5 integrations already in place along with sample tests in JUnit 4 and JUnit 5.

Sample JUnit 4 Candidate Test

As a candidate project, I have a Spring Boot 2 app with tests written in Kotlin using JUnit 4 as the testing framework. This is how a sample test looks with all dependencies explicitly called out. It uses JUnit4's @RunWith annotation to load up the Spring Context:

import org.assertj.core.api.Assertions.assertThat
import org.junit.Test
import org.junit.runner.RunWith
import org.springframework.beans.factory.annotation.Autowired
import org.springframework.boot.test.autoconfigure.web.reactive.WebFluxTest
import org.springframework.test.context.junit4.SpringRunner
import org.springframework.test.web.reactive.server.WebTestClient
import java.nio.charset.StandardCharsets

@RunWith(SpringRunner::class)
@WebFluxTest(controllers = arrayOf(RouteConfig::class))
class SampleJunit4Test {

    @Autowired
    lateinit var webTestClient: WebTestClient

    @Test
    fun `get of hello URI should return Hello World!`() {
        webTestClient.get()
                .uri("/hello")
                .exchange()
                .expectStatus().isOk
                .expectBody()
                .consumeWith({ m ->
                    assertThat(String(m.responseBodyContent, StandardCharsets.UTF_8)).isEqualTo("Hello World!")
                })

    }

}


The JUnit 4 dependencies are pulled in transitively via the "spring-boot-starter-test" module:

testCompile('org.springframework.boot:spring-boot-starter-test')


Junit 5 Migration

The first step is to pull in the JUnit 5 dependencies along with the Gradle plugin, which enables running the tests.

Plugin:

buildscript {
    dependencies {
        ....
        classpath 'org.junit.platform:junit-platform-gradle-plugin:1.0.2'
    }
}
apply plugin: 'org.junit.platform.gradle.plugin'


Dependencies:

testCompile("org.junit.jupiter:junit-jupiter-api")
testRuntime("org.junit.jupiter:junit-jupiter-engine")
testRuntime("org.junit.vintage:junit-vintage-engine:4.12.2")


With these changes in place, all the JUnit 4 tests will continue to run both in the IDE and when the Gradle build is executed. At that point, the tests can be slowly migrated over.

The test I had shown before looks like this with JUnit 5 Jupiter, which provides the programming model for the tests:

import org.junit.jupiter.api.Assertions.assertEquals
import org.junit.jupiter.api.Test
import org.junit.jupiter.api.extension.ExtendWith
import org.springframework.beans.factory.annotation.Autowired
import org.springframework.boot.test.autoconfigure.web.reactive.WebFluxTest
import org.springframework.test.context.junit.jupiter.SpringExtension
import org.springframework.test.web.reactive.server.WebTestClient
import java.nio.charset.StandardCharsets

@ExtendWith(SpringExtension::class)
@WebFluxTest(controllers = arrayOf(RouteConfig::class))
class SampleJunit5Test {

    @Autowired
    lateinit var webTestClient: WebTestClient

    @Test
    fun `get of hello URI should return Hello World!`() {
        webTestClient.get()
                .uri("/hello")
                .exchange()
                .expectStatus().isOk
                .expectBody()
                .consumeWith({ m ->
                    assertEquals("Hello World!", String(m.responseBodyContent, StandardCharsets.UTF_8))
                })
    }

}


Note that now, instead of using JUnit 4 the @RunWith annotation, I am using the @ExtendWith annotation and providing SpringExtension as a parameter. It is responsible for loading up the Spring Context like before. The rest of the Spring annotations will continue to work with JUnit 5. This way, tests can be slowly moved over from JUnit 4 to JUnit 5.

Caveats

Not everything is smooth though. There are a few issues in migrating from JUnit 4 to JUnit 5. The biggest of them is likely the support for JUnit's @Rule and @ClassRule annotations. The JUnit 5 documentation does go into the details of how that can be mitigated.

JUnit app Spring Framework Testing

Published at DZone with permission of Biju Kunjummen. See the original article here.

Opinions expressed by DZone contributors are their own.

Related

  • Spring Boot Pet Clinic App: A Performance Study
  • How to Activate New User Accounts by Email
  • Implementing iOS Accessibility: A Developer's Practical Guide
  • Introduction to Data-Driven Testing With JUnit 5: A Guide to Efficient and Scalable Testing

Partner Resources

×

Comments

The likes didn't load as expected. Please refresh the page and try again.

  • RSS
  • X
  • Facebook

ABOUT US

  • About DZone
  • Support and feedback
  • Community research

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Core Program
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 3343 Perimeter Hill Drive
  • Suite 215
  • Nashville, TN 37211
  • [email protected]

Let's be friends:

  • RSS
  • X
  • Facebook