Skip to content

Commit

Permalink
[Fix] 기대평이 거꾸로 조회되는 문제 해결 2 (#198)
Browse files Browse the repository at this point in the history
* [Infra] CI/CD test (#42)

* infra: 빌드 테스트 yml 작성

* infra: DB 정보 추가

* infra: ssh-agent 버전 변경

* infra: known_hosts 추가

* infra: db port 변경

* infra: database test 설정 변경

* infra: DB 환경변수 설정 및 application.yml 생성

* infra: application.yml 동적 생성 스크립트 수정

* infra: 레디스 설정 추가

* infra: redis test 추가

* infra: redis 버전 변경

* infra: redis cli 설치

* infra: application.yml 위치 및 내용 확인

* infra: Github Actions 환경변수에 REDIS_HOST, REDIS_PORT 추가

* infra: 환경변수 확인 추가

* infra: zip file 만들기 추가, AWS credentials 추가

* infra: 환경변수 이름 변경

- ARN -> AWS_ARN

* infra: s3 bucket에 업로드 추가

* infra: code deploy 추가

* infra: code deploy 수정

* infra: code deploy 수정

* infra: appspec.yml 작성

* infra: application.yml 생성 경로 변경

* infra: application.yml 확인 스크립트 삭제

* infra: application.yml 생성 스크립트 수정

* infra: application-prod.yml 추가

* infra: appspec.yml 수정, 배포를 위한 sh파일 추가

* infra: deploy.yml 이름 변경

- test_deploy -> deploy

* infra: body = null 설정

* infra: develop에 머지되었을 때만 발동하도록 수정

* feat: draw_rank column 이름 수정

* Infra: environment 삭제

* [Infra] CI CD test 3 (#45)

* infra: 빌드 테스트 yml 작성

* infra: DB 정보 추가

* infra: ssh-agent 버전 변경

* infra: known_hosts 추가

* infra: db port 변경

* infra: database test 설정 변경

* infra: DB 환경변수 설정 및 application.yml 생성

* infra: application.yml 동적 생성 스크립트 수정

* infra: 레디스 설정 추가

* infra: redis test 추가

* infra: redis 버전 변경

* infra: redis cli 설치

* infra: application.yml 위치 및 내용 확인

* infra: Github Actions 환경변수에 REDIS_HOST, REDIS_PORT 추가

* infra: 환경변수 확인 추가

* infra: zip file 만들기 추가, AWS credentials 추가

* infra: 환경변수 이름 변경

- ARN -> AWS_ARN

* infra: s3 bucket에 업로드 추가

* infra: code deploy 추가

* infra: code deploy 수정

* infra: code deploy 수정

* infra: appspec.yml 작성

* infra: application.yml 생성 경로 변경

* infra: application.yml 확인 스크립트 삭제

* infra: application.yml 생성 스크립트 수정

* infra: application-prod.yml 추가

* infra: appspec.yml 수정, 배포를 위한 sh파일 추가

* infra: deploy.yml 이름 변경

- test_deploy -> deploy

* infra: body = null 설정

* infra: develop에 머지되었을 때만 발동하도록 수정

* feat: draw_rank column 이름 수정

* Infra: environment 삭제

* Infra: environment 삭제

* config: jwt 속성을 yml에 설정

* rebase: 원본 develop 브랜치와 병합

* doc: jacoco 파일 생성

* feat: EventLockException 처리 메서드 구현

* fix: url 변경

* refactor: 변수명 변경

* feat: 중복 응모에 대한 처리 구현

* fix: 변수 바인딩 수정

* feat: post 요청에 대한 처리 구현

* feat: swagger 파리미터 안보이도록 설정

* rebase: 원본 repo develop 브랜치와 rebase

* feat: 정적 텍스트 상수 추가

* chore: jacoco 삭제

* fix: reverse 메서드 수행 코드 제거

* chore: import문 제거

* fix: repository 메서드 변경

* fix: repository 메서드 변경

* test: 메서드 변경

---------

Co-authored-by: DrRivaski <[email protected]>
Co-authored-by: hyeokson <[email protected]>
  • Loading branch information
3 people authored Aug 22, 2024
1 parent 1b10d21 commit 46ca1c4
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ void testGetComments() {
List<Comment> comments = createComments();

Page<Comment> page = new PageImpl<>(comments, PageRequest.of(0, SCROLL_SIZE + 1), comments.size());
when(commentRepository.findAllByIdLessThanEqualOrderByIdDesc(anyInt(), any(PageRequest.class)))
when(commentRepository.findAllByIdLessThanOrderByIdDesc(anyInt(), any(PageRequest.class)))
.thenReturn(page);

// When
Expand All @@ -55,19 +55,19 @@ void testGetComments() {
// 첫 번째 기대평
CommentsResponseDto.CommentResponse firstCommentResponse = response.getComments().get(0);
assertThat(firstCommentResponse).isNotNull();
assertThat(firstCommentResponse.getIsMine()).isFalse();
assertThat(firstCommentResponse.getNickName()).isEqualTo("user2");
assertThat(firstCommentResponse.getIsMine()).isTrue();
assertThat(firstCommentResponse.getNickName()).isEqualTo("user1(나)");
assertThat(firstCommentResponse.getCommentType()).isEqualTo(1);

// 두 번째 기대평
CommentsResponseDto.CommentResponse secondCommentResponse = response.getComments().get(1);
assertThat(secondCommentResponse).isNotNull();
assertThat(secondCommentResponse.getIsMine()).isTrue();
assertThat(secondCommentResponse.getNickName()).isEqualTo("user1" + CommentNickname.MY_NICKNAME_SUFFIX);
assertThat(secondCommentResponse.getIsMine()).isFalse();
assertThat(secondCommentResponse.getNickName()).isEqualTo("user2");
assertThat(secondCommentResponse.getCommentType()).isEqualTo(1);

verify(commentRepository, times(1))
.findAllByIdLessThanEqualOrderByIdDesc(eq(cursor), any(PageRequest.class));
.findAllByIdLessThanOrderByIdDesc(eq(cursor), any(PageRequest.class));
}

@Test
Expand Down

0 comments on commit 46ca1c4

Please sign in to comment.