Skip to content
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

[feat] 음식 상품 수량 수정 #108

Merged
merged 23 commits into from
Aug 19, 2024

Conversation

kimhyun5u
Copy link
Member

@kimhyun5u kimhyun5u commented Aug 18, 2024

💡 다음 이슈를 해결했어요.

Issue Link


💡 이슈를 처리하면서 추가된 코드가 있어요.

  • UpdateMenuStockService: 메뉴 수량 변경 로직

💡 이런 고민을 했어요.

  • 수량 변경을 매장 오픈과 관계 없이 하면 운영 관점에서 더 복잡해질 것 같다.

✅ 셀프 체크리스트

  • 내 코드를 스스로 검토했습니다.
  • 필요한 테스트를 추가했습니다.
  • 모든 테스트를 통과합니다.
  • 브랜치 전략에 맞는 브랜치에 PR을 올리고 있습니다.
  • 커밋 메세지를 컨벤션에 맞추었습니다.
  • wiki를 수정했습니다.

- MenuRepository.findByIdForUpdate: 비관적 락을 적용한 findById
- MenuRepository.updateStock: 메뉴 수량 변경
- testUpdateMenuStock: 메뉴 수량 업데이트 서비스 구현
- testUpdateMenuStockNotFound: 메뉴를 찾을 수 없는 경우
- testUpdateMenuStockNotEqualsOwner: 메뉴를 소유한 가게의 주인이 아닌 경우
- testUpdateMenuStockStoreNotOpen: 매장이 열려있지 않은 경우
- testUpdateMenuStockInvalid: 메뉴의 재고를 변경할 수 없는 경우
- updateMenuStock: 메뉴의 수량을 변경하는 메소드
- 메뉴 재고 변경 불가 에러, 매장 점주 불일치 에러, 메뉴 수량 변경 시간 불일치 에러 구현
- findByIdForUpdate `@Query` 명시
- 가게가 열려있는 경우 수량 수정이 안되도록 로직 수정
- 가게가 닫혀있을 때가 아닌 열려 있을 때 에러 코드로 변경
- 기존 StoreNotOpenException 이 아닌 가게가 열려 있을 때 발생하는 예외로 변경
- testUpdateMenuStock: 메뉴 재고 업데이트 검증
- testUpdateMenuStockFailWithMenuIdNull: 메뉴 id 가 null 인 경우 검증
- testUpdateMenuStockFailWithStockUnderZero: 변경 요청 재고가 0 미만인 경우 검증
- testUpdateMenuStockFail: 점주 불일치 예외 핸들링 검증
- testUpdateMenuStockFailWithUnauthorized: 인증되지 않은 요청 핸들링 검증
- testUpdateMenuStockFailWithStoreNotOpen: 매장이 열려있는 경우 예외 핸들링 검증
- updateMenuStock: 메뉴 재고 변경 요청 처리 메서드
@kimhyun5u kimhyun5u added the ✨ Feature 기능 개발 label Aug 18, 2024
@kimhyun5u kimhyun5u added this to the 프로토타입 만들기 milestone Aug 18, 2024
@kimhyun5u kimhyun5u self-assigned this Aug 18, 2024
@kimhyun5u kimhyun5u linked an issue Aug 18, 2024 that may be closed by this pull request
- Validate Message 추가
…5u_음식-상품-수량-수정

# Conflicts:
#	src/main/java/camp/woowak/lab/menu/exception/MenuErrorCode.java
@kimhyun5u kimhyun5u marked this pull request as ready for review August 18, 2024 12:43
Copy link
Contributor

@Hyeon-Uk Hyeon-Uk left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

궁금한점과 오류라고 생각하는 부분에 대해 코멘트 달아놨습니다!

- NotUpdatableTimeException 메세지 정확하게 수정
Copy link
Contributor

@Hyeon-Uk Hyeon-Uk left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM ! :)

Copy link
Member

@june-777 june-777 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

궁금한점 코멘트 남겼습니다!

Copy link
Member

@june-777 june-777 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍👍

…5u_음식-상품-수량-수정

# Conflicts:
#	src/main/java/camp/woowak/lab/menu/exception/MenuErrorCode.java
#	src/main/java/camp/woowak/lab/menu/repository/MenuRepository.java
@kimhyun5u kimhyun5u merged commit cc2ebcb into main Aug 19, 2024
1 check passed
@kimhyun5u kimhyun5u deleted the feature/101_kimhyun5u_음식-상품-수량-수정 branch August 19, 2024 14:41
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
✨ Feature 기능 개발
Projects
Status: Done
Development

Successfully merging this pull request may close these issues.

[기능] 음식 상품 수량 수정
3 participants