| ObjectMapper로 Json으로 파싱
- 방법
(1) 테스트 클래스 안에 @Autowired로 test-container의 ObjectMapper를 주입한다.
(2) 테스트 메소드 안에 contentType과 content를 지정한다.
contentType에 MediaType.APPLICATION_JSON을 지정하고,
content에 object -> json형식의 string으로 반환하는 objectMapper의 writeValueAsString(Object value)를 쓴다.
@Autowired
ObjectMapper objectMapper;
@Test
void createXX() throws Exception {
// given 생략
// then
mockMvc.perform(post("/path")
.contentType(MediaType.APPLICATION_JSON)
.content(objectMapper.writeValueAsString(
new CreateXX.Request(1L, 1234L)
))
);
}
(3) 경로 확인하기
// 객체
jsonPath("$.userId").value(1L)
// 배열
jsonPath("$[0].userId").value(1L)
jsonPath("$[1].userId").value(2L)
jsonPath("$[2].userId").value(3L)
- Json-Path 작성 방법 상세
https://github.com/json-path/JsonPath
[ 참고 및 출처 ]
부트캠프 강의 내용
'Framework > 스프링 라이브러리' 카테고리의 다른 글
[스프링 시큐러티] JWT 토큰 + 스프링 시큐러티 (0) | 2022.11.18 |
---|---|
[Scheduler] 스케줄러 사용하기 (feat. 쓰레드, 쓰레드풀) (0) | 2022.11.11 |
[스프링 시큐러티] 스프링 시큐러티 자료 모음 (수정중) (0) | 2022.10.29 |
[TEST] TDD 방식에 대한 자료 모음 (수정중) (0) | 2022.10.28 |
[JSON 파싱] ObjectMapper, Simple-json (0) | 2022.10.24 |