-
Notifications
You must be signed in to change notification settings - Fork 1
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
구매자 회원가입 #16
Merged
The head ref may contain hidden characters: "feature/4_kimhyun5u_\uAD6C\uB9E4\uC790_\uD68C\uC6D0\uAC00\uC785"
Merged
구매자 회원가입 #16
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
- NoOpPasswordEncoder: 아무런 기능을 제공하지 않는 PasswordEncoder
- DuplicateException: unique 제약조건에 부합하지 않을 때 발생하는 예외 - InvalidCreationException: 기타 제약조건에 부합하지 않는 경우 발생하는 예외
- 구매자 회원가입에 필요해 미리 구현
- 구매자 회원가입 테스트 구현 - 정상 회원가입 테스트 - 중복 이메일 회원가입 불가 테스트
- 이름, 이메일, 비밀번호, 전화번호 필드 추가 - 필드 검증 메서드 추가
- 구매자 영속화를 위한 Repository 인터페이스 구현
- SignUpCustomerService.signUp 파라미터 구현
- 구매자 회원가입 구현
`+` AuthController: "/auth" 컨텍스트 처리 `+` ApiResponse: 공통 응답처리를 위한 모델 `+` ErrorCode: 공통 예외처리를 위한 코드 `+` SignUpVendorRequest: POST /auth/vendor 요청을 받는 dto
- 구매자 회원가입 요청 DTO 생성
- 구매자 회원가입 API 구현
- 구매자 회원가입 API 클래스명 변경
- 구매자 제약조건 테스트(점주 제약조건 참조함)
전화번호를 검증하기 위한 어노테이션 및 커스텀 Validator 구현
`~` show-sql: 실행되는 sql 조회 `~` generate-ddl: 테스트시 테이블 자동 생성 `~` ddl-auto: 어플리케이션 생성시 생성, 종료시 삭제 `~` open-in-view: 의도하지 않은 조회 쿼리 발생 방지
- 구매자 API RequestBody 제약조건 테스트
- 이름 길이 1~50 - 이메일 - 비밀번호 8~20 - 전화번호
- Repository 의존성 제거
- 반복되는 생성 추상화
- given, when, then 추가
- 파라미터 검증 시 항상 잘못된 전화번호 형식이 들어가는 오류 수정
- 중복 이메일 회원가입 시 롤백 테스트 작성
- RuntimeException 을 사용해 @transactional 내의 예상하지 못한 RuntimeException이 발생해도 트랜잭션이 롤백되도록 수정
- email 필드에 @notblank 추가 - 이메일이 "" 이어도 통과되는 문제 수정
- 중복 이메일 에러 처리 정책 변경으로 인한 테스트 코드 수정
…4_kimhyun5u_구매자_회원가입 # Conflicts: # src/main/java/camp/woowak/lab/common/exception/ErrorCode.java # src/main/java/camp/woowak/lab/common/exception/HttpStatusException.java
- ErrorCode 삭제 후 CustomerErrorCode 적용
- CustomerController -> CustomerApiController
- camp.woowak.lab.web.dto.request.customer 밑으로 이동
- BadRequestException(ErrorCode, String) 생성자 추가
- 서버에 남기고 싶은 로그는 직접 입력하도록 수정 - 에러코드에 있는 메시지는 클라이언트를 위한 것
- InvalidCreationException(ErrorCode, String) 생성자 추가
- SignUp API 응답의 Response DTO 추가
- 유틸리티 클래스에 private 생성자 추가
…매자_회원가입 # Conflicts: # src/main/java/camp/woowak/lab/customer/domain/Customer.java # src/main/java/camp/woowak/lab/payaccount/repository/PayAccountRepository.java # src/main/java/camp/woowak/lab/web/authentication/NoOpPasswordEncoder.java # src/main/java/camp/woowak/lab/web/authentication/PasswordEncoder.java # src/main/java/camp/woowak/lab/web/authentication/config/AuthenticationConfig.java # src/test/java/camp/woowak/lab/payaccount/domain/TestPayAccount.java
Dr-KoKo
approved these changes
Aug 13, 2024
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
잘 봤습니다. LGTM!
Hyeon-Uk
reviewed
Aug 13, 2024
src/main/java/camp/woowak/lab/customer/domain/CustomerValidator.java
Outdated
Show resolved
Hide resolved
src/main/java/camp/woowak/lab/customer/service/SignUpCustomerService.java
Show resolved
Hide resolved
june-777
approved these changes
Aug 13, 2024
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
고생많으셨습니다 👍
src/main/java/camp/woowak/lab/customer/service/SignUpCustomerService.java
Show resolved
Hide resolved
- Validation 실패 시 메시지 명시
- Validate 시 에서 필요한 값을 Validator 의 field 로 추출
- Validation 실패 시 메시지 명시
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.
💡 다음 이슈를 해결했어요.
Issue Link - #4
💡 이슈를 처리하면서 추가된 코드가 있어요.
Customer
SignUpCustomerService
@Transactional
걸어 주었습니다.CustomerController
💡 이런 고민을 했어요.
Exception vs RuntimeException
@Transactional
로 묶으면 예기치 못한 RuntimeException 도 롤백할 수 있도록 CustomException을 RuntimeException 을 상속하도록함✅ 셀프 체크리스트