-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
test : 사용자가 숨은그림찾기 게임 정보를 조회하는 로직 테스트코드 작성, Clock 객체 모킹하여 LocalDateTime.now()에 주입 (CC-147) #28
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
putdata
approved these changes
Aug 14, 2024
putdata
pushed a commit
that referenced
this pull request
Aug 14, 2024
…me.now()에 주입 (CC-147) (#28) * chore : LocalDateTime.now() 테스트코드 작성을 위한 TimeConfig 빈 등록 (CC-147) * test :TimeConfig, Clock객체를 모킹한 테스트코드 작성 (CC-147) * fix : 필요없는 출력문 제거 (CC-147) * fix : GithubAction 컨테이너의 테스트 환경에서의 UTC 시차 테스트를 위한 코드 (CC-147) * fix : 오타 수정 (CC-148) * fix : 오타 수정 (CC-148) * chore : 스프링부트 어플리케이션 Timezone KST로 설정 (CC-147) * test : 단위테스트 Timezone KST로 설정 (CC-147) * test : 단위테스트 Timezone KST로 설정한 후 LocalDateTime.now 호출로 변경 (CC-147) * test : LocalDateTimeService ci 테스트용 코드 (CC-147) * test : LocalDateTimeService ci 테스트용 코드 (CC-147) * test : Clock.instant에 UTC+9의 시차가 정상적으로 적용되는지 확인하는 테스트코드 작성 (CC-147)
j2noo
added a commit
that referenced
this pull request
Aug 14, 2024
* feat : 선착순 API 기능 일부 구현 (CC-141) * test : 사용자가 숨은그림찾기 게임 정보를 조회하는 로직 테스트코드 작성, Clock 객체 모킹하여 LocalDateTime.now()에 주입 (CC-147) (#28) * chore : LocalDateTime.now() 테스트코드 작성을 위한 TimeConfig 빈 등록 (CC-147) * test :TimeConfig, Clock객체를 모킹한 테스트코드 작성 (CC-147) * fix : 필요없는 출력문 제거 (CC-147) * fix : GithubAction 컨테이너의 테스트 환경에서의 UTC 시차 테스트를 위한 코드 (CC-147) * fix : 오타 수정 (CC-148) * fix : 오타 수정 (CC-148) * chore : 스프링부트 어플리케이션 Timezone KST로 설정 (CC-147) * test : 단위테스트 Timezone KST로 설정 (CC-147) * test : 단위테스트 Timezone KST로 설정한 후 LocalDateTime.now 호출로 변경 (CC-147) * test : LocalDateTimeService ci 테스트용 코드 (CC-147) * test : LocalDateTimeService ci 테스트용 코드 (CC-147) * test : Clock.instant에 UTC+9의 시차가 정상적으로 적용되는지 확인하는 테스트코드 작성 (CC-147) * fix : 빌더 컨벤션 통일, 고정값 상수화 (CC-141) * fix : regist -> register 모두 변경 (CC-141) --------- Co-authored-by: Jinwoo Park <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
📝 작업내용
Clock
빈 등록LocalDateTime.now()
사용시, 스태틱 메서드이므로 테스트코드에서 모킹이 불가능하여 현재 시간을 설정해 줄 수 없는 문제 발생Clock
객체 의존성 주입하여LocalDateTime.now(clock)
Clock
객체 DI를 통해 테스트코드에서clock.instance
모킹 하여 테스트코드 작성할 것💬 침고사항
📖 레퍼런스