9월 26일 주간회의 #1041
Replies: 9 comments 1 reply
-
레벨로그 댓글
|
Beta Was this translation helpful? Give feedback.
-
내 학습로그 뒤로 가기 버그
학습로그 임시 저장 #765
|
Beta Was this translation helpful? Give feedback.
-
로컬에서 flyway가 정상 동작하는지 확인할 수 있도록 docker를 이용해 세팅 |
Beta Was this translation helpful? Give feedback.
-
이미지 삽입 기능진행 상황
|
Beta Was this translation helpful? Give feedback.
-
피그마 정리
프론트엔드 개발 방법 문서화
|
Beta Was this translation helpful? Give feedback.
-
현재 이미지 관련작업 이슈 발생해서 대기중이고 comment작업 UI완료했고 API관련 브라운과 협의 예정입니다.:) |
Beta Was this translation helpful? Give feedback.
-
모니터링 문서화
TODO
|
Beta Was this translation helpful? Give feedback.
-
로드맵 기획 및 UI 작업 |
Beta Was this translation helpful? Give feedback.
-
테스트개선 - 문서화 테스트Document(RestAssured+ @SpringBootTest)사용하는 테스트를 -> NewDocument(Mockmvc)로 바꾸는 작업ex) @Test
void 사용자_프로필을_조회한다() {
//given
given(memberService.findMemberResponseByUsername(any()))
.willReturn(MEMBER_RESPONSE);
//when
ValidatableMockMvcResponse response = given
.accept(MediaType.APPLICATION_JSON_VALUE)
.when().get("/members/{username}/profile", GithubResponses.소롱.getLogin())
.then().log().all();
//then
response.expect(status().isOk());
//docs
response.apply(document("profile/profile"));
}
public static final MissionResponse MISSION_RESPONSE1 =
new MissionResponse(1L, "지하철 노선도 미션", SESSION_RESPONSE);
public static final MemberResponse MEMBER_RESPONSE = new MemberResponse(
1L,
"soulG",
"잉",
CREW,
"https://avatars.githubusercontent.com/u/52682603?v=4"
);
private static final StudylogResponse STUDY_LOG_RESPONSE1 = new StudylogResponse(
1L,
MEMBER_RESPONSE,
LocalDateTime.now(),
LocalDateTime.now(),
SESSION_RESPONSE,
MISSION_RESPONSE1,
"JAVA",
"Spring Data JPA를 학습함.",
List.of(new TagResponse(3L, "java"), new TagResponse(4L, "jpa")),
List.of(),
false,
false,
0,
false,
0
);
|
Beta Was this translation helpful? Give feedback.
-
현재 진행중인 작업에 대해서 공유할 내용이 있으면 코멘트로 공유해주세요~
Beta Was this translation helpful? Give feedback.
All reactions