@Test
@DisplayName("댓글 수정 테스트")
void 댓글_수정_테스트() throws Exception {
//given
mockUserSetup();
String content = "수정댓글";
Long commentId = 1L;
CommentRequestDto requestDto = new CommentRequestDto();
requestDto.setContent(content);
String requestJson = objectMapper.writeValueAsString(requestDto);
CommentResponseDto responseDto = new CommentResponseDto();
responseDto.setAuthor("username");
responseDto.setContent("댓글내용");
String findAuthorAtResponse = "$.author";
String findContentAtResponse = "$.content";
given(commentService.editComment(eq(commentId), any(CommentRequestDto.class),
any(User.class))).willReturn(responseDto);
// when & then
mvc.perform(put("/todos/1/comments/1")
.contentType(new MediaType(MediaType.APPLICATION_JSON, StandardCharsets.UTF_8))
.accept(new MediaType(MediaType.APPLICATION_JSON, StandardCharsets.UTF_8))
.content(requestJson)
.principal(mockPrincipal)
)
.andExpect(status().isOk())
.andExpect(jsonPath(findAuthorAtResponse, is("username")))
.andExpect(jsonPath(findContentAtResponse, is("댓글내용")));
}
어우.. 너무 더러운데...
내가 오늘 짠 테스트 코드다.
given(commentService.editComment(eq(commentId), requestDto, any(User.class))).willReturn(responseDto);
원래는 이런 코드를 짰는데 계속 오류가 나는 것이다.
계속 eq(), any()를 쓰라고 한다.
그래서 any(CommentRequestDto.class)로 바꿨는데 오류가 해결 됐다.
왜 해결 됐을까?
사람 눈에는 같은 객체 아닌가? 생각하는데
컴퓨터는 객체의 주소값으로 비교를 하기 때문에 같은 게 아니라고 판단한다.
그래서 any()를 쓴다고 하는데
any()는 원하는 클래스가 들어오는게 어느것이든 ok이고
any(Dto.class)면 Dto 클래스의 어느 객체가 들어와도 ok이라고 한다.
....
어렵다 테스트 코드 작성...
'TIL' 카테고리의 다른 글
TIL 2023-12-06 jwt 로그인 시 unsuccessfulAuthentication로 계속 빠진다면? (0) | 2023.12.06 |
---|---|
TIL 2023-12-05 Entity에 대한 JPA 테스트는 어떻게 할까? (0) | 2023.12.05 |
TIL 2023-11-30 JUnit5 기본 문법 (0) | 2023.11.30 |
TIL 2023-11-29 단위 테스트 개념 정리 (0) | 2023.11.29 |
TIL 2023-11-28 OAuth 작동 방식 및 이전 배경, CSR SSR (0) | 2023.11.28 |