Skip to content

Commit

Permalink
FIX (#19)
Browse files Browse the repository at this point in the history
* Test: 테스트용 application.yml 파일 추가

* Feat: Dockerfile 작성

* Refactor: AI 요구사항에 맞게 코드 수정

* Fix: H2 관련 설정 삭제

* Refactor: 식당 ID를 반환하도록 추가

* Refactor: AI 요구사항에 맞춰 수정

* Refactor: AI 요구사항에 맞도록 수정

* Test: 테스트 코드 수정

* Refactor: 회원 상세정보 필드 추가

* Refactor: 테스트 환경 간 모든 요청 허용

* Feat: 에러 발생 시 CORS 설정 추가

* Refactor: 회원 상세 정보 입력 로직 수정

* Refactor: CORS 설정 추가

* Fix: CORS 설정 전으로 롤백 + CORS 정상 작동을 위해 모든 응답은 200을 기반으로 설정

* Test: 테스트 코드 수정
  • Loading branch information
pjh5365 authored Nov 19, 2024
1 parent 02d5a40 commit 8876f6b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ void joinFailTest() throws Exception {
.with(csrf())
.contentType(MediaType.APPLICATION_JSON)
.content(gson.toJson(request)))
.andExpect(status().isBadRequest())
.andExpect(status().isOk())
.andExpect(content().contentType(MediaType.APPLICATION_JSON))
.andExpect(jsonPath("$.success").value(false))
.andExpect(jsonPath("$.message").value("요청에 실패했습니다."))
Expand Down Expand Up @@ -196,7 +196,7 @@ void addDetailFailTest() throws Exception {
.with(csrf())
.contentType(MediaType.APPLICATION_JSON)
.content(gson.toJson(request)))
.andExpect(status().isBadRequest())
.andExpect(status().isOk())
.andExpect(content().contentType(MediaType.APPLICATION_JSON))
.andExpect(jsonPath("$.success").value(false))
.andExpect(jsonPath("$.message").value("요청에 실패했습니다."))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ void findDetailFail() throws Exception {

// When
mockMvc.perform(get("/api/restaurants/{id}", 10L))
.andExpect(status().isBadRequest())
.andExpect(status().isOk())
.andExpect(content().contentType(MediaType.APPLICATION_JSON))
.andExpect(jsonPath("$.success").value(false))
.andExpect(jsonPath("$.message").value("요청에 실패했습니다."))
Expand Down

0 comments on commit 8876f6b

Please sign in to comment.