@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, 요청 본문, 요청 해더 등을 설정 가능

 

 

 

 

Spring Boot 2.2.x 버전부터는 junit5가 기본으로 설정되어있음

해당 프로젝트에서는 junit4를 사용하기 위해 변경

 

 

1. build.gradle -> dependencies 안에 아래 코드 넣기

testImplementation("org.junit.vintage:junit-vintage-engine") {
    exclude group: "org.hamcrest", module: "hamcrest-core"
}

 

2.Reload

코딩 중 html 수정 후 매번 서버 재시작이 번거러움

spring-boot-devtools 라이브러리 사용한다면 재시작 없이 변경 사항을 바로 확인 가능

spring-boot-devtools 라이브러리를 추가하면, html 파일을 컴파일만 해주면 서버 재시작 없이 View 파일 변경이 가능

 

[수정]

1. build.gradle -> dependencies -> spring-boot-devtools 라이브러리 추가

 

 

아래 코드 추가

implementation 'org.springframework.boot:spring-boot-devtools'

 

2. Gradle reload 필수

 

3. html 수정 후 인텔리J 컴파일

 - 인텔리J 컴파일 방법: 메뉴 build -> Recompile

 

4. 테스트

 

 

 

[오류]

Spring Boot 프로젝트 생성 후 바로 run 할 경우 아래와 같은 오류 발생 및 무한 로딩

 

[해결방안]

1. 가급적 JDK 11을 설치 및 진행

2. Settings -> Gradle 들어가기

다음 이미지를 참고해서 해당 부분을 IntelliJ IDEA로 변경

2. 다시 실행

 

 

+ Recent posts