Skip to content

Commit

Permalink
[feature/Inhabas#241] 프로젝트 게시판 controller 네임 프로젝트 게시판으로 숮어
Browse files Browse the repository at this point in the history
  • Loading branch information
skytin1004 committed Mar 15, 2024
1 parent f1bbf7f commit e33d31c
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 20 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public class ProjectBoardController {
private final ProjectBoardService projectBoardService;
private final BaseBoardRepository baseBoardRepository;

@Operation(summary = "게시판 종류 당 글 개수 조회")
@Operation(summary = "프로젝트 게시판 종류 당 글 개수 조회")
@ApiResponses(
value = {
@ApiResponse(
Expand All @@ -63,7 +63,7 @@ public ResponseEntity<List<BoardCountDto>> getBoardCount() {
return ResponseEntity.ok(baseBoardRepository.countRowsGroupByMenuName(5));
}

@Operation(summary = "게시글 목록 조회")
@Operation(summary = "프로젝트 게시글 목록 조회")
@ApiResponses(
value = {
@ApiResponse(
Expand Down Expand Up @@ -118,7 +118,7 @@ public ResponseEntity<PagedPinnedResponseDto<ProjectBoardDto>> getBoardList(
new PagedPinnedResponseDto<>(pageInfoDto, pinnedDtoList, pagedDtoList));
}

@Operation(summary = "게시글 단일 조회")
@Operation(summary = "프로젝트 게시글 단일 조회")
@GetMapping("/project/{projectBoardType}/{boardId}")
@PreAuthorize(
"@boardSecurityChecker.checkMenuAccess(#projectBoardType.menuId, T(com.inhabas.api.domain.board.usecase.BoardSecurityChecker).READ_BOARD)")
Expand Down Expand Up @@ -155,7 +155,7 @@ public ResponseEntity<ProjectBoardDetailDto> getBoard(
return ResponseEntity.ok(projectBoardService.getPost(memberId, projectBoardType, boardId));
}

@Operation(summary = "게시글 추가")
@Operation(summary = "프로젝트 게시글 추가")
@PostMapping(path = "/project/{projectBoardType}", consumes = MediaType.MULTIPART_FORM_DATA_VALUE)
@PreAuthorize(
"@boardSecurityChecker.checkMenuAccess(#projectBoardType.menuId, T(com.inhabas.api.domain.board.usecase.BoardSecurityChecker).CREATE_BOARD)")
Expand Down Expand Up @@ -206,7 +206,7 @@ public ResponseEntity<Long> addBoard(
return ResponseEntity.created(location).build();
}

@Operation(summary = "게시글 수정")
@Operation(summary = "프로젝트 게시글 수정")
@PostMapping(
value = "/project/{projectBoardType}/{boardId}",
consumes = MediaType.MULTIPART_FORM_DATA_VALUE)
Expand Down Expand Up @@ -251,7 +251,7 @@ public ResponseEntity<Long> updateBoard(
return ResponseEntity.noContent().build();
}

@Operation(summary = "게시글 삭제")
@Operation(summary = "프로젝트 게시글 삭제")
@DeleteMapping("/project/{projectBoardType}/{boardId}")
@ApiResponses({
@ApiResponse(responseCode = "204"),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ private String jsonOf(Object response) throws JsonProcessingException {
return objectMapper.writeValueAsString(response);
}

@DisplayName("프로젝트 게시판 종류 당 글 개수 조회 성공 200")
@DisplayName("프로젝트 프로젝트 게시판 종류 당 글 개수 조회 성공 200")
@Test
void getBoardCount_Success() throws Exception {
// given
Expand All @@ -71,7 +71,7 @@ void getBoardCount_Success() throws Exception {
assertThat(response).contains(jsonOf(dtoList));
}

@DisplayName("게시글 목록 조회 성공 200")
@DisplayName("프로젝트 게시글 목록 조회 성공 200")
@Test
void getBoardList_Success() throws Exception {
// given
Expand Down Expand Up @@ -100,7 +100,7 @@ void getBoardList_Success() throws Exception {
assertThat(response).contains(jsonOf(dtoList));
}

@DisplayName("게시글 목록 조회 데이터가 올바르지 않다면 400")
@DisplayName("프로젝트 게시글 목록 조회 데이터가 올바르지 않다면 400")
@Test
void getBoardList_Invalid_Input() throws Exception {
// when
Expand All @@ -115,7 +115,7 @@ void getBoardList_Invalid_Input() throws Exception {
assertThat(response).contains(INVALID_INPUT_VALUE.getMessage());
}

@DisplayName("게시글 단일 조회 성공 200")
@DisplayName("프로젝트 게시글 단일 조회 성공 200")
@Test
void getBoard() throws Exception {
// given
Expand Down Expand Up @@ -146,7 +146,7 @@ void getBoard() throws Exception {
assertThat(response).contains(jsonOf(projectBoardDetailDto));
}

@DisplayName("게시글 단일 조회 데이터가 올바르지 않다면 400")
@DisplayName("프로젝트 게시글 단일 조회 데이터가 올바르지 않다면 400")
@Test
void getBoard_Invalid_Input() throws Exception {
// when
Expand All @@ -161,7 +161,7 @@ void getBoard_Invalid_Input() throws Exception {
assertThat(response).contains(INVALID_INPUT_VALUE.getMessage());
}

@DisplayName("게시글 단일 조회 데이터가 올바르지 않다면 404")
@DisplayName("프로젝트 게시글 단일 조회 데이터가 올바르지 않다면 404")
@Test
void getBoard_Not_Found() throws Exception {
// given
Expand All @@ -179,7 +179,7 @@ void getBoard_Not_Found() throws Exception {
assertThat(response).contains(NOT_FOUND.getMessage());
}

@DisplayName("게시글 추가 성공 201")
@DisplayName("프로젝트 게시글 추가 성공 201")
@Test
void addBoard() throws Exception {
// given
Expand Down Expand Up @@ -214,7 +214,7 @@ void addBoard() throws Exception {
assertThat(header).contains("/project/alpha/1");
}

@DisplayName("게시글 추가 데이터가 올바르지 않다면 400")
@DisplayName("프로젝트 게시글 추가 데이터가 올바르지 않다면 400")
@Test
void addBoard_Invalid_Input() throws Exception {
// given
Expand Down Expand Up @@ -244,7 +244,7 @@ void addBoard_Invalid_Input() throws Exception {
assertThat(response).contains(INVALID_INPUT_VALUE.getMessage());
}

@DisplayName("게시글 수정 성공 204")
@DisplayName("프로젝트 게시글 수정 성공 204")
@Test
void updateBoard() throws Exception {
// given
Expand Down Expand Up @@ -273,7 +273,7 @@ void updateBoard() throws Exception {
.andExpect(status().isNoContent());
}

@DisplayName("게시글 수정 데이터가 올바르지 않다면 400")
@DisplayName("프로젝트 게시글 수정 데이터가 올바르지 않다면 400")
@Test
void updateBoard_Invalid_Input() throws Exception {
// given
Expand Down Expand Up @@ -305,7 +305,7 @@ void updateBoard_Invalid_Input() throws Exception {
assertThat(response).contains(INVALID_INPUT_VALUE.getMessage());
}

@DisplayName("게시글 수정 데이터가 올바르지 않다면 404")
@DisplayName("프로젝트 게시글 수정 데이터가 올바르지 않다면 404")
@Test
void updateBoard_Not_Found() throws Exception {
// given
Expand Down Expand Up @@ -340,7 +340,7 @@ void updateBoard_Not_Found() throws Exception {
assertThat(response).contains(NOT_FOUND.getMessage());
}

@DisplayName("게시글 삭제 성공 204")
@DisplayName("프로젝트 게시글 삭제 성공 204")
@Test
void deleteBoard() throws Exception {
// given
Expand All @@ -350,7 +350,7 @@ void deleteBoard() throws Exception {
mvc.perform(delete("/project/alpha/1")).andExpect(status().isNoContent());
}

@DisplayName("게시글 삭제 데이터가 올바르지 않다면 400")
@DisplayName("프로젝트 게시글 삭제 데이터가 올바르지 않다면 400")
@Test
void deleteBoard_Invalid_Input() throws Exception {
// given
Expand All @@ -368,7 +368,7 @@ void deleteBoard_Invalid_Input() throws Exception {
assertThat(response).contains(INVALID_INPUT_VALUE.getMessage());
}

@DisplayName("게시글 삭제 데이터가 올바르지 않다면 404")
@DisplayName("프로젝트 게시글 삭제 데이터가 올바르지 않다면 404")
@Test
void deleteBoard_Not_Found() throws Exception {
// given
Expand Down

0 comments on commit e33d31c

Please sign in to comment.