@WebMvcTest 이란
- Spring Boot 테스트 어노테이션
- Sptring MVC 웹 계층의 테스트에 사용됨
- 서비스 계층, 데이터 액세스 계층, 외부 시스템과의 통신 등 다른 계층의 로직을 테스트하는 것이 아닌, 웹 계층의 로직만으로 테스트하려는 경우 사용
MockMvc 란
- HTTP 요청을 디스패처 서블릿에 전송하고 결과를 받아 테스트하는 데 사용됨
- API의 테스트 수행
- Spring MVC 구성요소를 사용하여 동작
- MockMvc 주입받아 사용할때 @WebMvcTest 어노테이션을 쓰지 않으면 "this.mockMvc" is null 오류 발생함
Cannot invoke "org.springframework.test.web.servlet.MockMvc.perform(org.springframework.test.web.servlet.RequestBuilder)" because "this.mockMvc" is null
java.lang.NullPointerException: Cannot invoke "org.springframework.test.web.servlet.MockMvc.perform(org.springframework.test.web.servlet.RequestBuilder)" because "this.mockMvc" is null
예제
@WebMvcTest
class PostControllerTest {
@Autowired
private MockMvc mockMvc;
@Test
@DisplayName("/posts 요청시 Hello world를 출력한다.")
void test() throws Exception {
//expection
mockMvc.perform(get("/posts"))
.andExpect(status().isOk()) // 통신이 정상일때
.andExpect(content().string("Hello World"))
.andDo(print()); // 요청한 로그 보기 위해
}
}
MockMvc.perform 메서드
- MockHttpServletRequestBuilder 객체를 인자로 받음
MockHttpServletRequestBuilder 객체는 API 호출을 나타내며, HTTP 메서드, URL, 요청 본문, 요청 해더 등을 설정 가능
'SpringBoot > 공부' 카테고리의 다른 글
[SpringBoot]junit5에서 junit4로 변경 (0) | 2023.12.18 |
---|---|
[SpringBoot] spring-boot-devtools 라이브러리 사용 방법 (0) | 2023.12.14 |
[SpringBoot] 프로젝트 생성 시 run 오류 (0) | 2023.12.13 |
[SpringBoot] Bean 등록 2 가지 (@Component, @Bean) (0) | 2023.12.12 |
build.gradle dependencies 추가할 경우 주의 사항 (2) | 2023.12.06 |