test(store): 회원 고유번호로 매장 찾기 테스트 구현

This commit is contained in:
bum12ark
2022-03-11 15:43:04 +09:00
parent 04dc8a3d1c
commit 8b017aee39
3 changed files with 78 additions and 4 deletions

View File

@@ -89,9 +89,6 @@ operation::get-categoryList[snippets='curl-request,http-request,http-response,re
operation::put-categoryList[snippets='curl-request,http-request,http-response,request-body,request-fields']
== 매장
=== 매장 검색 조회
operation::api-customer-store-search[snippets='curl-request,http-request,http-response,request-parameters,response-fields']
@@ -99,4 +96,6 @@ operation::api-customer-store-search[snippets='curl-request,http-request,http-re
operation::favoriteStore-get[snippets='curl-request,http-request,http-response,request-headers,request-parameters,response-fields']
=== 매장 조회
operation::store-get[snippets='curl-request,http-request,http-response,path-parameters,response-fields']
=== 매장 조회 (회원 고유번호)
operation::api-get-store-byUserId[snippets='curl-request,http-request,http-response,request-headers,response-fields']

View File

@@ -20,7 +20,7 @@ public class StoreOwnerApiController {
private final StoreService storeService;
@GetMapping("/api/store")
@GetMapping("/owner/store")
public ResponseEntity<Result> getStoreByUserId(@RequestHeader("user-id") String userHeader) {
Long userId = Long.valueOf(userHeader);

View File

@@ -0,0 +1,75 @@
package com.justpickup.storeservice.domain.store.web;
import com.justpickup.storeservice.config.TestConfig;
import com.justpickup.storeservice.domain.store.dto.StoreByUserIdDto;
import com.justpickup.storeservice.domain.store.service.StoreService;
import com.justpickup.storeservice.global.dto.Code;
import org.junit.jupiter.api.DisplayName;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.autoconfigure.restdocs.AutoConfigureRestDocs;
import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest;
import org.springframework.boot.test.mock.mockito.MockBean;
import org.springframework.context.annotation.Import;
import org.springframework.test.web.servlet.MockMvc;
import org.springframework.test.web.servlet.ResultActions;
import static org.junit.jupiter.api.Assertions.*;
import static org.mockito.BDDMockito.given;
import static org.springframework.restdocs.headers.HeaderDocumentation.headerWithName;
import static org.springframework.restdocs.headers.HeaderDocumentation.requestHeaders;
import static org.springframework.restdocs.mockmvc.MockMvcRestDocumentation.document;
import static org.springframework.restdocs.mockmvc.RestDocumentationRequestBuilders.get;
import static org.springframework.restdocs.payload.PayloadDocumentation.fieldWithPath;
import static org.springframework.restdocs.payload.PayloadDocumentation.responseFields;
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;
@WebMvcTest(StoreOwnerApiController.class)
@Import(TestConfig.class)
@AutoConfigureRestDocs(uriHost = "just-pickup.com", uriPort = 8000)
class StoreOwnerApiControllerTest {
private final String url = "/api";
@Autowired
MockMvc mockMvc;
@MockBean
StoreService storeService;
@Test
@DisplayName("[API] [GET] 회원 고유번호로 매장 정보 찾기")
void getStoreByUserId() throws Exception {
// GIVEN
String userHeader = "1";
Long userId = Long.valueOf(userHeader);
StoreByUserIdDto willReturnDto = StoreByUserIdDto.builder().id(10L).name("한강커피").build();
given(storeService.findStoreByUserId(userId)).willReturn(willReturnDto);
// THEN
ResultActions actions = mockMvc.perform(get(url + "/owner/store")
.header("user-id", userHeader)
);
// WHEN
actions.andExpect(status().isOk())
.andExpect(jsonPath("code").value(Code.SUCCESS.name()))
.andExpect(jsonPath("data").exists())
.andDo(print())
.andDo(document("api-get-store-byUserId",
requestHeaders(
headerWithName("user-id").description("로그인한 유저 id")
),
responseFields(
fieldWithPath("code").description("결과 코드 SUCCESS/ERROR"),
fieldWithPath("message").description("메시지"),
fieldWithPath("data.id").description("매장 고유번호"),
fieldWithPath("data.name").description("매장 이름")
)
))
;
}
}