-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathHelloControllerTest.kt
55 lines (48 loc) · 1.75 KB
/
HelloControllerTest.kt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
package com.example.demo
import org.junit.jupiter.api.BeforeEach
import org.junit.jupiter.api.Test
import org.springframework.beans.factory.annotation.Autowired
import org.springframework.boot.test.autoconfigure.web.reactive.WebFluxTest
import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest
import org.springframework.context.annotation.Import
import org.springframework.http.MediaType
import org.springframework.http.codec.json.Jackson2JsonDecoder
import org.springframework.http.codec.json.Jackson2JsonEncoder
import org.springframework.test.web.reactive.server.WebTestClient
import org.springframework.test.web.servlet.MockMvc
import org.springframework.test.web.servlet.client.MockMvcWebTestClient
import org.springframework.test.web.servlet.get
@WebMvcTest(controllers = [HelloController::class])
class HelloControllerTest {
@Autowired
lateinit var mockMvc: MockMvc
lateinit var client: WebTestClient
@BeforeEach
fun setup() {
client = MockMvcWebTestClient.bindTo(mockMvc)
.codecs {
it.customCodecs().register(Jackson2JsonEncoder())
it.customCodecs().register(Jackson2JsonDecoder())
}
.build()
}
@Test
fun `test hello endpoint`() {
client.get()
.uri("/hello")
.exchange()
.expectStatus().isOk
.expectBodyList(Color::class.java).hasSize(3)
}
@Test
fun `test hello endpoint with MockMvc`() {
mockMvc.get("/hello") {
accept = MediaType.APPLICATION_JSON
}.andExpect {
status { isOk() }
jsonPath("$[0]") { value("RED") }
jsonPath("$[1]") { value("GREEN") }
jsonPath("$[2]") { value("BLUE") }
}
}
}