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

[REFACTOR] 코멘트 내용 글자수 500자 제한 해제 #185

Open
wants to merge 7 commits into
base: develop
Choose a base branch
from

Conversation

rlajm1203
Copy link
Contributor

📌 관련 이슈

#184

✒️ 작업 내용

코멘트 생성시 validateCreate 로, 글자수 500자 초과인지 검증을 하고 있는데, 이 로직을 수정하여 글자수 500자 제한을 없앴습니다.

이전에 글자수 제한이 500자였다는 것을 기록하기 위해서, 로직 삭제하지 않고 로직을 변경하였습니다.

스크린샷 🏞️ (선택)

💬 REVIEWER에게 요구사항 💬

@rlajm1203 rlajm1203 added the 🔧refactor 코드 수정 label Nov 29, 2024
@rlajm1203 rlajm1203 self-assigned this Nov 29, 2024
Copy link

github-actions bot commented Nov 29, 2024

Unit Test Results

0 tests   - 77   0 ✔️  - 76   0s ⏱️ -3s
0 suites  - 30   0 💤  -   1 
0 files    - 30   0 ±  0 

Results for commit aa6e888. ± Comparison against base commit 0dc45fb.

♻️ This comment has been updated with latest results.

Copy link
Member

@Daae-Kim Daae-Kim left a comment

Choose a reason for hiding this comment

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

고생하셨습니다! 👍🏻
ci 통과를 위해 spotless 적용을 해보아요~!

@DisplayName("내용 길이가 500자 이상일 경우 예외가 발생하지 않는다.")
void createTest() {
// given
String length_501_word =
Copy link
Contributor

Choose a reason for hiding this comment

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

Suggested change
String length_501_word =
String length_501_word = new Random().ints(32, 127)
.limit(501)
.mapToObj(i -> String.valueOf((char) i))
.collect(Collectors.joining());
}

이런식으로 랜덤 문자열을 생성해보는 건 어떨까요? 나중에 규칙이 변하더라도 쉽게 변경가능할 것 같아요~!

username: root
password: root
password: gksktodaud1!
Copy link
Contributor

Choose a reason for hiding this comment

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

해당 설정들 변경 이유를 알 수 있을까요?
만약 이 부분이 변경되면 docker-compose 파일도 변경이 되어야 할 것 같습니다.

@@ -4,5 +4,5 @@ spring:
on-profile: local-redis
redis:
host: localhost
port : 16379
port : 6379
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
Contributor Author

Choose a reason for hiding this comment

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

엇 그 파일 로컬에서 테스트 하기 위해서 변경했는데 같이 커밋이 되었나보네요 ㅠ 얼른 수정하겠습니다~

bellmin added 2 commits December 13, 2024 17:47
- application-local-mysql : 접속 포트 번호 및 password
- application-redis : 접속 포트 번호
- 고정 문자열에서 문자열 랜덤 생성으로 수정
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
🔧refactor 코드 수정
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants