Skip to content

Commit

Permalink
refactor: 멤버 액션, 지출 액션 관련 API 엔드포인트 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
khabh committed Aug 4, 2024
1 parent b76cf53 commit 07a53d2
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public class BillActionController {

private final BillActionService billActionService;

@PostMapping("/api/events/{eventId}/actions/bills")
@PostMapping("/api/events/{eventId}/bill-actions")
public ResponseEntity<Void> saveAllBillAction(
@PathVariable("eventId") String token,
@RequestBody @Valid BillActionsSaveRequest request
Expand All @@ -30,7 +30,7 @@ public ResponseEntity<Void> saveAllBillAction(
.build();
}

@PutMapping("/api/events/{eventId}/actions/bills/{actionId}")
@PutMapping("/api/events/{eventId}/bill-actions/{actionId}")
public ResponseEntity<Void> updateBillAction(
@PathVariable("eventId") String token,
@PathVariable("actionId") Long actionId,
Expand All @@ -42,7 +42,7 @@ public ResponseEntity<Void> updateBillAction(
.build();
}

@DeleteMapping("/api/events/{eventId}/actions/{actionId}/bills")
@DeleteMapping("/api/events/{eventId}/bill-actions/{actionId}")
public ResponseEntity<Void> deleteBillAction(
@PathVariable("eventId") String token,
@PathVariable("actionId") Long actionId
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public class MemberActionController {

private final MemberActionService memberActionService;

@PostMapping("/api/events/{eventId}/actions/members")
@PostMapping("/api/events/{eventId}/member-actions")
public ResponseEntity<Void> saveMemberAction(
@PathVariable("eventId") String token,
@RequestBody MemberActionsSaveRequest request
Expand Down Expand Up @@ -48,7 +48,7 @@ public ResponseEntity<Void> deleteMember(
return ResponseEntity.ok().build();
}

@DeleteMapping("/api/events/{eventId}/actions/{actionId}/members")
@DeleteMapping("/api/events/{eventId}/member-actions/{actionId}")
public ResponseEntity<Void> deleteMemberAction(
@PathVariable("eventId") String token,
@PathVariable("actionId") Long actionId
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ void saveAllBillAction() throws Exception {
String requestBody = objectMapper.writeValueAsString(request);
String token = "TOKEN";

mockMvc.perform(post("/api/events/{token}/actions/bills", token)
mockMvc.perform(post("/api/events/{token}/bill-actions", token)
.contentType(MediaType.APPLICATION_JSON)
.content(requestBody))
.andDo(print())
Expand All @@ -67,7 +67,7 @@ void saveAllBillAction1() throws Exception {
String requestBody = objectMapper.writeValueAsString(request);
String token = "TOKEN";

mockMvc.perform(post("/api/events/{token}/actions/bills", token)
mockMvc.perform(post("/api/events/{token}/bill-actions", token)
.contentType(MediaType.APPLICATION_JSON)
.content(requestBody))
.andDo(print())
Expand All @@ -82,7 +82,7 @@ void updateBillAction() throws Exception {
String requestBody = objectMapper.writeValueAsString(request);
String token = "TOKEN";

mockMvc.perform(put("/api/events/{token}/actions/bills/{actionId}", token, 1L)
mockMvc.perform(put("/api/events/{token}/bill-actions/{actionId}", token, 1L)
.contentType(MediaType.APPLICATION_JSON)
.content(requestBody))
.andDo(print())
Expand All @@ -94,7 +94,7 @@ void updateBillAction() throws Exception {
void deleteBillAction() throws Exception {
String token = "토다리토큰";

mockMvc.perform(delete("/api/events/{token}/actions/{actionId}/bills", token, 1))
mockMvc.perform(delete("/api/events/{token}/bill-actions/{actionId}", token, 1))
.andDo(print())
.andExpect(status().isOk());
}
Expand All @@ -106,7 +106,7 @@ void deleteBillAction1() throws Exception {
doThrow(new HaengdongException(HaengdongErrorCode.NOT_FOUND_EVENT))
.when(billActionService).deleteBillAction(any(String.class), any(Long.class));

mockMvc.perform(delete("/api/events/{token}/actions/{actionId}/bills", token, 1))
mockMvc.perform(delete("/api/events/{token}/bill-actions/{actionId}", token, 1))
.andDo(print())
.andExpect(status().isBadRequest());
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ void saveMemberActionTest() throws Exception {

String requestBody = objectMapper.writeValueAsString(memberActionsSaveRequest);

mockMvc.perform(post("/api/events/TOKEN/actions/members")
mockMvc.perform(post("/api/events/TOKEN/member-actions")
.contentType(MediaType.APPLICATION_JSON)
.content(requestBody))
.andDo(print())
Expand Down Expand Up @@ -72,7 +72,7 @@ void deleteMemberAction() throws Exception {
String token = "TOKEN";
Long actionId = 2L;

mockMvc.perform(delete("/api/events/{token}/actions/{actionId}/members", token, actionId))
mockMvc.perform(delete("/api/events/{token}/member-actions/{actionId}", token, actionId))
.andDo(print())
.andExpect(status().isOk());
}
Expand Down

0 comments on commit 07a53d2

Please sign in to comment.