fix(auth): 관리자 신규 암호 6자 미만 입력 차단 - #148
Merged
eGovFrameSupport merged 1 commit intoSep 14, 2026
Merged
Conversation
13 tasks
wizlife
marked this pull request as ready for review
September 12, 2026 02:29
eGovFrameSupport
approved these changes
Sep 14, 2026
Contributor
|
표준프레임워크에 대한 지속적인 참여에 |
This file contains hidden or 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
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.
수정 사유 Reason for modification
관리자 암호 변경 화면은 6자 미만의 신규 암호도 전송하지만 로그인 화면은 같은 길이의 입력을 차단하고 있었습니다. 로그인 기준에 맞지 않는 암호 변경 요청을 보내기 전에 사용자에게 안내하도록 수정했습니다.
수정된 소스 내용 Modified source
관련 백엔드 변경: eGovFramework/egovframe-template-simple-backend#214
JUnit 테스트 JUnit tests
Node.js 22에서 Vitest 전체 62개 테스트, 제품 빌드와 변경 파일 ESLint 검사가 통과했습니다.
실제 백엔드를 연결한 React·Chrome 화면 자동 검증으로 5자 입력 시 안내 및 요청 미전송, 정확히 6자로 변경 후 재로그인 성공을 확인했습니다. 기존 암호로는 로그인이 실패했습니다.
테스트 브라우저 Test Browser
테스트 스크린샷 또는 캡처 영상 Test screenshots or captured video
암호를 정확히 6자로 변경하고 로그아웃한 뒤 새 암호로 재로그인한 메인 화면입니다. 입력 검증 경고 화면의 캡처는 없으며, 요청 차단은 컴포넌트 테스트와 실제 Chrome 검증으로 확인했습니다.