31 lines
1.1 KiB
Java
31 lines
1.1 KiB
Java
package com.example.controller;
|
|
|
|
import org.junit.jupiter.api.Test;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest;
|
|
import org.springframework.test.web.servlet.MockMvc;
|
|
|
|
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get;
|
|
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.jsonPath;
|
|
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status;
|
|
|
|
@WebMvcTest(HealthController.class)
|
|
class HealthControllerTest {
|
|
|
|
@Autowired
|
|
private MockMvc mockMvc;
|
|
|
|
@Test
|
|
void health_returnsUpStatus() throws Exception {
|
|
mockMvc.perform(get("/api/health"))
|
|
.andExpect(status().isOk())
|
|
.andExpect(jsonPath("$.status").value("UP"));
|
|
}
|
|
|
|
@Test
|
|
void ping_returnsPong() throws Exception {
|
|
mockMvc.perform(get("/api/ping"))
|
|
.andExpect(status().isOk())
|
|
.andExpect(org.hamcrest.Matchers.content().string("pong"));
|
|
}
|
|
}
|