Here is a sample project with JUnit 5 integrations already in place along with sample tests in Junit 4 and Junit 5 - https://github.com/bijukunjummen/boot2-with-junit5-sample
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 the 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 "spring-boot-starter-test" module:
testCompile('org.springframework.boot:spring-boot-starter-test')
Junit 5 migration
The first step to do is to pull in the Junit 5 dependencies along with 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 IDE and when the Gradle build is executed and at this point, the tests itself can be slowly migrated over.
The test which 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 @RunWith annotation, I am using the @ExtendWith annotation and providing SpringExtension as a parameter which is responsible for loading up the Spring Context like before. 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.
No comments:
Post a Comment