-
Notifications
You must be signed in to change notification settings - Fork 0
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
Test/chat stomp : 채팅 STOMP 테스트 코드 작성 #249
Open
KooSuYeon
wants to merge
9
commits into
dev
Choose a base branch
from
test/chat-stomp
base: dev
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
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
KooSuYeon
force-pushed
the
test/chat-stomp
branch
2 times, most recently
from
September 26, 2024 03:41
17d0d00
to
79ab7db
Compare
|
|
- SecurityWebSockConfig: - SecurityConfig로 보호되지 않았던 /pub, /sub 보안 잠그기 - WebSockConfig: - 채팅 발행하기에 앞서 Client에서 보내준 Authorization 값 STOMP Session에 포함시키기 위한 Interceptor 주입
- WebSocketInterceptor: - CONNCECT -> SEND 모두 authorization을 받아 JWTFilter의 doFilterChain 메서드가 하는 일을 수행함 - 자격증명이 마친다면 StompHeaderAccessor로 회원 이메일을 전달함
- Member Profile Img 코드 정리
- StompHandlerAdapter 클래스의 메서드 이용해 연결 정보 표시 - Connect 구현 -> 예시 : Connected: {version=[1.2], heart-beat=[0,0]} - Timeout은 60Sec - session의 Connect 성공 후에는 disconnect - build.gradle 에서는 JVM 메모리 부족 이슈로 MemberControllerTest와 동일하게 제외
- 채팅 테스트를 하기 위해서는 채팅방, 멤버의 데이터가 사전에 있어야 함 -> @WithMockUser 같은 어노테이션을 이용하려 했으나 실패 - 어차피 사전 데이터란 앞서 생성해놓은 더미데이터인 import.sql과 같은 쓰임새를 가질 것이라 판단해 test 디렉토리 하위에도 import.sql을 가져와 데이터 초기화를 진행하기로 결정함 - import.sql에 schema 코드도 존재하였는데 이는 DDL (Liquibase)로 초기화하고 테스트 profile에서는 H2에서 DDL을 자동으로 만들어주도록 되어 있기 때문에 schema 코드는 삭제해줌
- 확장적으로 웹소켓 채팅 테스트 코드를 작성했음 - 앞선 ~2 커핏까지 중복된 부분 (모듈화) : - 1. 가상의 WebStompClient를 만드는 코드인 getStompClient 메서드로 모듈화 - 2. testConnectWebSocket() : - WebSocket에 세션이 2초 안에 CONNECT되는지 확인 된 후 연결된 SESSION의 ID를 확인할 수 있음 - 3. testSubscribeWebSocket(): - WebSocket이 연결된 후 채팅을 받기 위해 채팅방 구독을 진행하는 메서드임 - 싱글 채팅방으로 생성된 유저 두 명이 각자의 세션으로 웹소켓 구독을 진행하기까지의 시나리오임 - 가장 먼저 STOMP CONNECT를 진행하는데 ChatService의 sendMessage에서는 sessionAccessor과 옳지 않은 접근의 경우 Session 연결을 끊어버려야 하기 때문에 StompHeaders를 StompSession을 생성할 때 연결해 기억해둠 - 그 후 채팅을 받기 위한 채팅방 구독을 진행함 - * STOMP session 연결 Timelimit은 60s - * 채팅방 헤더 정보를 갖고 올 때의 Timelimit 은 10s - 4. testChatWebSocketAndGetChatroomChats() : - 구독을 진행한 채팅방으로 ChatService의 sendMessage() 메서드를 테스트 - 해당 메서드를 실행한 후 저장되는 chats들을 ChatroomService의 getChats() 메서드로 테스트 해보는 메서드임 - 채팅을 보내기 위한 header 사전 설정 : - 1. 연결된 StompSession을 id 연결해줌 - 2. Destination 설정
- 사전 작업 (SetUp) / 공통 사항 : - JWT 생성 후 StompHeader에 넣기 - Client 측에 해당 Session에 Header 적용해 수정 - 웹소켓 연결 / 구독 / 채팅 전송 Authorization / 채팅 전송 테스트 통과 - 채팅 전송 Authorization 테스트 : - CONNECT된 Authorization이 SEND까지 연결되는지 확인하기 위한 목적 - 연결되지 않는다면 Exception을 일으켜야 함 -> 일으키지 않음 확인 - 채팅 전송 테스트 : - 실제 코드에서는 Session이 유지되기 때문에 이미 Authorization이 검증된 유저를 SimpMessageHeaderAccessor에 주입해 ChatService의 sendMessage를 테스트함
KooSuYeon
force-pushed
the
test/chat-stomp
branch
from
September 27, 2024 12:46
12fd75d
to
be8d714
Compare
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.
개요