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

프로젝트 저장 유효성 검사 완료 및 테스트 코드 일부 작성 #71

Merged
merged 47 commits into from
Mar 5, 2024

Conversation

Sehee-Lee-01
Copy link
Member

@Sehee-Lee-01 Sehee-Lee-01 commented Feb 27, 2024

🎫 관련 이슈

Fixes #40

✅ 구현 내용

유효성 검사

  • 프로젝트 저장 기능과 관련한 유효성 검사 적용
    • DTO 유효성 검사(에너테이션 이용)
    • 서비스 레이어 유효성 검사(projects.util.validation 안의 xxxValidator 클래스들을 이용하여 검증)

테스트 코드

  • MemberServiceTest: 프로젝트 멤버 저장 테스트
  • ProjectSkillServiceTest: 프로젝트 기술 스택 저장 테스트
  • FileServiceTest: 프로젝트 레이아웃 이미지 저장 테스트

기타 변경사항

  • 프로젝트 기간은 모두 YearMonth로 통일
    • inti sql 파일 변경: 도커 컴포즈 다시 해야합니다!
  • 자주 사용하는 값 상수 처리 및 상수 관리 클래스 구현

추가로 해야하는 것

  • ProjectServiceTest 프로젝트 저장(테스트 코드 중에서 제일 양이 많을 것 ,,같습니다...)
    • 그 외 다른 클래스 세부적인 테스트는 ProjectServiceTest 작성하면서 올리거나 추후 나눠서 올려보도록 하겠습니다..!!
  • 스웨거 적용(요것도,,, 인풋이 많아서...;;;)
  • 에러코드 정의
  • faker.internet().username(); 해결: 가끔 테스트 코드 돌리면 희박하게 실패할 때가 있는데 값이 닉네임 최대 길이를 넘을 때가 있더라구요!

💬 코멘트

  • 여러 이슈로 늦기도하고 프론트엔드분들과 맞추고 개발하다보니 여러모로,,,기간이 좀 걸렸습니다...ㅠㅠ 개발하다보니까 커밋을 나눠서 개발하는 것이 조금 어렵게 되어서 많은 양을 올리게 되었습니다... 정말 정말 죄송합니다,,, 앞으로는 더 쪼개서 올리도록 하겠습니다 ㅠㅠ 전 바보입니다...
    • 참고로 테스트 코드 부분은 반복되는 부분이 많아서 가볍게 보시면 될 것 같아요!ㅠ😭
  • 현재 프로젝트 상세 조회 QueryDSL 적용 및 리팩토링 #70 PR 의 feat/#57-apply-querydsl-in-read-project 브랜치를 머지하여 올립니다!
    • 현재는 코드 가독성(?)을 위해 feat/#57-apply-querydsl-in-read-project 브랜치로 머지하게 해놨지만 승인이 되면 dev로 바꾸고 확인한 후 머지할 예정입니다!

@Sehee-Lee-01 Sehee-Lee-01 added 🚀 더 만들어봤슈 기능 구현 🛠 리팩토링했슈 리팩토링 ✅ 테스트혀봤슈 빌드&테스트가 필요할 때 태그 labels Feb 27, 2024
@Sehee-Lee-01 Sehee-Lee-01 added this to the 🚀 2차 스프린트 milestone Feb 27, 2024
@Sehee-Lee-01 Sehee-Lee-01 self-assigned this Feb 27, 2024
@Sehee-Lee-01 Sehee-Lee-01 changed the title Feat/#27 validate project 프로젝트 저장 유효성 검사 완료 및 테스트 코드 일부 작성 Feb 27, 2024
Copy link
Contributor

@uijin-j uijin-j 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
Contributor

Choose a reason for hiding this comment

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

QueryDSL에서 만들어주는 generated 폴더는 .gitignore에 추가해도 될 것 같긴 하네용!

Copy link
Contributor

Choose a reason for hiding this comment

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

엇 제가 테스트 코드 작성하면서 QClass 관련 파일들 .gitignore에 추가할게요!

@Column(name = "owner_id", columnDefinition = "BIGINT")
private Long ownerId;
@Column(name = "owner_id", columnDefinition = "BIGINT", nullable = false)
private Long ownerId; // TODO: User로 설정하는 것이 좋을까요? 놓는다면 [accessToken id 일치 확인 + 유저 존재 확인(추가 발생)] 해야합니다!
Copy link
Contributor

Choose a reason for hiding this comment

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

전 개인적으로 저희가 ORM을 사용하고 있기 때문에 객체를 사용하는 것이 좋을 것 같다곤 생각합니당..! 객체지향 vs 효율(복잡성) 차이일 것 같긴합니당!

Copy link
Contributor

Choose a reason for hiding this comment

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

저는 개인적으로 ownerId라는 컬럼이 프론트단에서 프로젝트의 유저인지 확인하는 용도로만 쓰이기 때문에 User 객체보다는 ownerId를 그대로 유지하는 것이 좋다고 생각해요..! 혹시 프로젝트 게시글 작성자에 대한 추가 정보가 요구되는 일이 있을까요?

Copy link
Member Author

Choose a reason for hiding this comment

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

추가 정보를 요구하는 일은 없습니다!
생각해보니 로그인을 하면 보통 유저가 삭제된 상태는 아닐테니 우선 요 부분은 효율성을 위해서 Id로 남겨두고 나중에 필요하면 유저로 바꾸는 것으로 하겠습니당! 다들 감사합니다ㅠㅠㅠ

Comment on lines +29 to +31
public static void validateFellowMemberUser(User user) {
Assert.notNull(user, "회원인 멤버의 유저 Id를 입력해주세요.");
}
Copy link
Contributor

Choose a reason for hiding this comment

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

회원인 경우 닉네임(비회원인 경우 받는 닉네임)도 함께 요청이 오면 그 닉네임은 그냥 무시되는 걸까요?

Copy link
Member Author

Choose a reason for hiding this comment

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

넵 맞습니다! 혹시 저희 갑자기 어렴풋이 기억나는데 회원 멤버도 이름 커스텀으로 넣을 수 있게 하도록 했나요!

Copy link
Contributor

@yenzip yenzip 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
Contributor

Choose a reason for hiding this comment

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

엇 제가 테스트 코드 작성하면서 QClass 관련 파일들 .gitignore에 추가할게요!

@Column(name = "owner_id", columnDefinition = "BIGINT")
private Long ownerId;
@Column(name = "owner_id", columnDefinition = "BIGINT", nullable = false)
private Long ownerId; // TODO: User로 설정하는 것이 좋을까요? 놓는다면 [accessToken id 일치 확인 + 유저 존재 확인(추가 발생)] 해야합니다!
Copy link
Contributor

Choose a reason for hiding this comment

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

저는 개인적으로 ownerId라는 컬럼이 프론트단에서 프로젝트의 유저인지 확인하는 용도로만 쓰이기 때문에 User 객체보다는 ownerId를 그대로 유지하는 것이 좋다고 생각해요..! 혹시 프로젝트 게시글 작성자에 대한 추가 정보가 요구되는 일이 있을까요?

Comment on lines +15 to +30
public static MemberSummary from(Member member) {
User user = member.getUser();
UserSummary userSummary = (user == null)
? UserSummary.from(member.getNickname())
: UserSummary.from(user);
return MemberSummary.from(member, userSummary);
}

public static MemberSummary from(Member member, UserSummary userSummary) {
return MemberSummary.builder()
.id(member.getId())
.role(member.getRole())
.userSummary(userSummary)
.build();
}

Copy link
Contributor

Choose a reason for hiding this comment

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

from 메서드가 QueryDSL 적용으로 필요없어서.. 관련 dev 브랜치 pull 받아와주실 수 있으신가요?

Copy link
Member Author

Choose a reason for hiding this comment

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

pull 했는데 프로젝트 저장 후에 저장된 맴버 객체 내려줄 때 필요해서 남겨두었습니다! 추후 리팩토링 때 반영해보겠습니다!

@Sehee-Lee-01 Sehee-Lee-01 merged commit 717a137 into dev Mar 5, 2024
@Sehee-Lee-01 Sehee-Lee-01 deleted the feat/#27-validate-project branch March 5, 2024 04:08
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
✅ 테스트혀봤슈 빌드&테스트가 필요할 때 태그 🚀 더 만들어봤슈 기능 구현 🛠 리팩토링했슈 리팩토링
Projects
None yet
3 participants