Skip to content

Commit

Permalink
test: zonecode 응답 테스트
Browse files Browse the repository at this point in the history
  • Loading branch information
xGreenNarae committed Nov 4, 2023
1 parent 08f7968 commit a13f441
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 22 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ class AccountTest extends AcceptanceTest {
final EmailValidateDto emailValidateDto = new EmailValidateDto(EMAIL + "1");

result = mvc.perform(post("/account/email")
.contentType(MediaType.APPLICATION_JSON)
.content(om.writeValueAsString(emailValidateDto)));
.contentType(MediaType.APPLICATION_JSON)
.content(om.writeValueAsString(emailValidateDto)));

assertSuccess();
}
Expand All @@ -38,6 +38,7 @@ class AccountTest extends AcceptanceTest {
.email(EMAIL + "1")
.password(PASSWORD)
.name("테스트 보호소")
.zonecode("12345")
.address(
ShelterAddressSignUpDto.builder()
.province(Province.광주)
Expand All @@ -51,8 +52,8 @@ class AccountTest extends AcceptanceTest {


result = mvc.perform(post("/account/shelter")
.contentType(MediaType.APPLICATION_JSON)
.content(om.writeValueAsString(shelterSignUpDto)));
.contentType(MediaType.APPLICATION_JSON)
.content(om.writeValueAsString(shelterSignUpDto)));

assertSuccess();
}
Expand All @@ -76,8 +77,8 @@ class AccountTest extends AcceptanceTest {


result = mvc.perform(post("/account/shelter")
.contentType(MediaType.APPLICATION_JSON)
.content(om.writeValueAsString(shelterSignUpDto)))
.contentType(MediaType.APPLICATION_JSON)
.content(om.writeValueAsString(shelterSignUpDto)))
.andExpect(status().isBadRequest())
.andExpect(jsonPath("$.success").value(false));
}
Expand All @@ -90,8 +91,8 @@ class AccountTest extends AcceptanceTest {
.build();

result = mvc.perform(post("/account/login")
.contentType(MediaType.APPLICATION_JSON)
.content(om.writeValueAsString(accountLoginDto)));
.contentType(MediaType.APPLICATION_JSON)
.content(om.writeValueAsString(accountLoginDto)));

assertSuccess();
result.andExpect(jsonPath("$.response.accountId").value(1))
Expand All @@ -101,8 +102,8 @@ class AccountTest extends AcceptanceTest {

// header authorization field exists
assertThat(result.andReturn()
.getResponse()
.getHeader("Authorization")).isNotNull();
.getResponse()
.getHeader("Authorization")).isNotNull();
}

@Test
Expand All @@ -113,8 +114,8 @@ class AccountTest extends AcceptanceTest {
.build();

result = mvc.perform(post("/account/login")
.contentType(MediaType.APPLICATION_JSON)
.content(om.writeValueAsString(accountLoginDto)))
.contentType(MediaType.APPLICATION_JSON)
.content(om.writeValueAsString(accountLoginDto)))
.andExpect(status().isBadRequest())
.andExpect(jsonPath("$.success").value(false))
.andExpect(jsonPath("$.error.message").value("이메일 또는 비밀번호를 확인해주세요."));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,39 +3,42 @@
import com.daggle.animory.testutil.AcceptanceTest;
import org.junit.jupiter.api.Test;

import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.*;
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get;
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.post;
import static org.springframework.test.web.servlet.result.MockMvcResultHandlers.print;
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.jsonPath;
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status;

class ShelterTest extends AcceptanceTest {

/**
근처 동물 보호소 보기 (지도 페이지)
입력받은 주소(kakao id)들 중 DB에 존재하는 주소(kakao id)들을 찾아서 필터링하여 응답한다.
* 근처 동물 보호소 보기 (지도 페이지)
* 입력받은 주소(kakao id)들 중 DB에 존재하는 주소(kakao id)들을 찾아서 필터링하여 응답한다.
*/
@Test
void 근처_동물_보호소_보기() throws Exception {
mvc.perform(post("/shelter/filter")
.contentType("application/json")
.content("[14569757, 14569758, 14569759]"))
.contentType("application/json")
.content("[14569757, 14569758, 14569759]"))
.andExpect(status().isOk())
.andExpect(jsonPath("$.response").isArray())
.andExpect(jsonPath("$.response[0].kakaoLocationId").value(14569757));
}

/**
보호소 상세 페이지(프로필)
보호소 기본 정보(이름, 주소, 연락처)를 확인할 수 있다.
해당 보호소가 보호중인 동물들을 확인할 수 있다. (유기동물 프로필 리스트 페이지와 동일하게 보여진다)
앱에서 전화걸기를 클릭하면 전화번호가 뜬다.
* 보호소 상세 페이지(프로필)
* 보호소 기본 정보(이름, 주소, 연락처)를 확인할 수 있다.
* 해당 보호소가 보호중인 동물들을 확인할 수 있다. (유기동물 프로필 리스트 페이지와 동일하게 보여진다)
* 앱에서 전화걸기를 클릭하면 전화번호가 뜬다.
*/
@Test
void 보호소_상세_페이지() throws Exception {
mvc.perform(get("/shelter/{shelterId}", 1)
.param("page", "0"))
.param("page", "0"))
.andExpect(status().isOk())
.andExpect(jsonPath("$.response.shelter.name").value("광주광역시동물보호소"))
.andExpect(jsonPath("$.response.shelter.address.province").value("광주"))
.andExpect(jsonPath("$.response.shelter.address.zonecode").isNotEmpty())
.andDo(print());
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ public static Shelter getOne(final Account account) {
.province(Province.광주)
.city("북구")
.roadName("본촌동 378-6")
.zonecode("61486")
.build()
)
.account(account)
Expand Down

0 comments on commit a13f441

Please sign in to comment.