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] 점주 주문 리스트 조회 #94

Merged
merged 27 commits into from
Aug 18, 2024

Conversation

kimhyun5u
Copy link
Member

@kimhyun5u kimhyun5u commented Aug 16, 2024

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

Issue Link - #85

  • 점주 주문 리스트 조회

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

  • 구현: RetrieveOrderListService, RetrieveOrderListCommand, OrderDTO
  • 수정: OrderApiController

💡 이런 고민을 했어요.

  • 추후에 페이지네이션 필터를 생각하면 DAO 로 설계했어야되나?
  • 관계가 많아지니까 테스트 더미 만드는게 어렵다. 모두 Mock 으로 사용해야하나?

✅ 셀프 체크리스트

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

- OrderRepositoryTest.testFindAllByOwner: 점주가 관리하고 있는 모든 점포의 주문 조회
- OrderRepositoryTest.testFindAllByOwnerFailWithUnauthorized: 점주가 관리하고 있는 모든 점포의 주문 조회 실패
- OrderRepositoryTest.testFindByStore: 특정 매장 주문 조회
- OrderRepositoryTest.testFindByStoreFailWithUnauthorized: 특정 매장 주문 조회 실패 - 권한 없음
- OrderRepository.findAllByOwner: 점주가 관리하는 모든 점포의 주문 조회
- OrderRepository.findByStore: 특정 점포의 주문 조회
- RetrieveOrderListService.retrieveOrderListOfVendorStores: 점주가 관리하는 모든 점포의 주문 조회
- RetrieveOrderListService.retrieveOrderListOfStore: 특정 점포의 주문 조회
- RetrieveOrderListServiceTest.testRetrieveOrderList: 점주 주문 리스트 조회 테스트 - 성공
- RetrieveOrderListServiceTest.testRetrieveOrderListOfStore: 점주 특정 매장 주문 리스트 조회 테스트 - 성공
- RetrieveOrderListServiceTest.testRetrieveOrderListOfStoreFailByNotFoundStore: 점주 특정 매장 주문 리스트 조회 테스트 - 실패(매장이 존재하지 않음)
- RetrieveOrderListServiceTest.testRetrieveOrderListOfStoreFailByNotEqualsOwner: 점주 특정 매장 주문 리스트 조회 테스트 - 실패(매장의 주인이 아님)
- OrderApiControllerTest.testRetrieveOrderList: 점주 주문 리스트 조회 테스트 - 성공
- OrderApiControllerTest.testRetrieveOrderListByStore: 점주 매장 주문 리스트 조회 테스트 - 성공
- OrderApiControllerTest.testRetrieveOrderListByStoreFail:점주 매장 주문 리스트 조회 테스트 - 실패(매장이 존재하지 않음)
- OrderApiControllerTest.testRetrieveOrderListByStoreFailWithUnauthorized: 점주 매장 주문 리스트 조회 테스트 - 실패(매장의 주인이 아님)
- OrderApiController.retrieveOrderList: 점주가 관리하는 모든 점포의 주문 조회 요청 처리
- OrderApiController.retrieveOrderListByStore: 특점 점포의 주문 조회 요청 처리
- 주문 리스트 조회 응답
- 주문 예외 핸들러 구현
- OrderExceptionHandler.handleNotEqualsOwnerException: NotEqualsOwnerException 처리
- OrderExceptionHandler.handleNotFoundStoreException: NotFoundStoreException 처리
- 사용하지 않는 코드 제거
@kimhyun5u kimhyun5u added the ✨ Feature 기능 개발 label Aug 16, 2024
@kimhyun5u kimhyun5u added this to the 프로토타입 만들기 milestone Aug 16, 2024
@kimhyun5u kimhyun5u self-assigned this Aug 16, 2024
@kimhyun5u kimhyun5u linked an issue Aug 16, 2024 that may be closed by this pull request
- 주문 조회 시 반환할 DTO 구현
- OrderDTO.RequesterDTO, OrderDTO.OrderItemDTO, OrderDTO.StoreDTO 를 내부에 두어 필요한 내용만 노출 시킬 수 있도록 함
- DTO 변환 시 내부 내용 조회가 필요해 `@Getter` 추가
- DTO 변환 시 내부 내용 조회가 필요해 getter 추가
- OrderDTO 생성 후 데이터 검증 테스트 추가
- VendorFixture.createTestVendor: 간단히 TestVendor 를 생성하는 메소드
- 테스트에 사용할 TestOrderDTO 구현
- 반복되는 TestStore 생성 코드를 추상화
- DTO 생성을 위해 StoreAddress 필드를 조회할 수 있도록 변경
- 반환값을 OrderDTO 로 수정
- requestID(customer_id) 와 StoreID 추가
@kimhyun5u kimhyun5u marked this pull request as ready for review August 18, 2024 05:38
@kimhyun5u kimhyun5u requested a review from Dr-KoKo August 18, 2024 05:38
@kimhyun5u kimhyun5u requested review from june-777, Hyeon-Uk and Dr-KoKo and removed request for Dr-KoKo August 18, 2024 05:38
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.

확인 완료입니다 🙂

…u_점주-주문-리스트-조회

# Conflicts:
#	src/main/java/camp/woowak/lab/order/domain/vo/OrderItem.java
-  OrderItem price 타입 변경으로 인한 변경
-  OrderItem price 타입 변경으로 인한 변경
@kimhyun5u kimhyun5u merged commit 3d4fd5c into main Aug 18, 2024
1 check passed
@kimhyun5u kimhyun5u deleted the feature/85_kimhyun5u_점주-주문-리스트-조회 branch August 18, 2024 10:43
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