-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
331 additions
and
240 deletions.
There are no files selected for viewing
Empty file.
392 changes: 155 additions & 237 deletions
392
...java/com/splanet/splanet/previewplan/controller/PreviewPlanControllerIntegrationTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,237 +1,155 @@ | ||
//package com.splanet.splanet.previewplan.controller; | ||
// | ||
//import com.fasterxml.jackson.databind.ObjectMapper; | ||
//import com.jayway.jsonpath.JsonPath; | ||
//import com.splanet.splanet.jwt.JwtTokenProvider; | ||
//import com.splanet.splanet.previewplan.dto.PlanCardRequestDto; | ||
//import com.splanet.splanet.previewplan.dto.PlanCardResponseDto; | ||
//import com.splanet.splanet.previewplan.service.PreviewPlanService; | ||
//import com.splanet.splanet.user.entity.User; | ||
//import com.splanet.splanet.user.repository.UserRepository; | ||
//import org.junit.jupiter.api.BeforeEach; | ||
//import org.junit.jupiter.api.Test; | ||
//import org.springframework.beans.factory.annotation.Autowired; | ||
//import org.springframework.boot.test.autoconfigure.web.servlet.AutoConfigureMockMvc; | ||
//import org.springframework.boot.test.context.SpringBootTest; | ||
//import org.springframework.boot.test.mock.mockito.MockBean; | ||
//import org.springframework.data.redis.core.RedisTemplate; | ||
//import org.springframework.http.MediaType; | ||
//import org.springframework.security.test.context.support.WithMockUser; | ||
//import org.springframework.test.web.servlet.MockMvc; | ||
//import org.springframework.test.web.servlet.MvcResult; | ||
//import org.springframework.transaction.annotation.Transactional; | ||
// | ||
//import java.time.LocalDateTime; | ||
//import java.time.ZoneId; | ||
// | ||
//import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.*; | ||
//import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.jsonPath; | ||
//import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status; | ||
// | ||
//@SpringBootTest | ||
//@AutoConfigureMockMvc | ||
//@Transactional | ||
//class PreviewPlanControllerIntegrationTest { | ||
// | ||
// @Autowired | ||
// private MockMvc mockMvc; | ||
// | ||
// @Autowired | ||
// private ObjectMapper objectMapper; | ||
// | ||
// @Autowired | ||
// private PreviewPlanService previewPlanService; | ||
// | ||
// @Autowired | ||
// private JwtTokenProvider jwtTokenProvider; | ||
// | ||
// @Autowired | ||
// private UserRepository userRepository; | ||
// | ||
// @MockBean | ||
// private RedisTemplate<String, Object> redisTemplate; | ||
// | ||
// private String accessToken; | ||
// private Long userId; | ||
// | ||
// @BeforeEach | ||
// void setUp() { | ||
// // 테스트용 유저 생성 | ||
// User user = User.builder() | ||
// .nickname("testuser") | ||
// .profileImage("testimage.png") | ||
// .build(); | ||
// userRepository.save(user); | ||
// userId = user.getId(); | ||
// | ||
// // JWT 토큰 생성 | ||
// accessToken = "Bearer " + jwtTokenProvider.createAccessToken(userId); | ||
// } | ||
// | ||
// @Test | ||
// @WithMockUser | ||
// void 플랜카드_생성_성공() throws Exception { | ||
// LocalDateTime now = LocalDateTime.now(); | ||
// PlanCardRequestDto planCardRequestDto = new PlanCardRequestDto( | ||
// "테스트 플랜 카드", | ||
// "플랜 카드 설명", | ||
// now.toString(), | ||
// now.plusHours(2).toString() | ||
// ); | ||
// | ||
// long startTimestamp = now.atZone(ZoneId.systemDefault()).toEpochSecond(); | ||
// long endTimestamp = now.plusHours(2).atZone(ZoneId.systemDefault()).toEpochSecond(); | ||
// | ||
// PlanCardResponseDto planCardResponseDto = new PlanCardResponseDto( | ||
// "device-123", | ||
// "group-456", | ||
// "ed0525be", | ||
// "테스트 플랜 카드", | ||
// "플랜 카드 설명", | ||
// startTimestamp, | ||
// endTimestamp | ||
// ); | ||
// | ||
// mockMvc.perform(post("/api/preview-plan/card") | ||
// .param("deviceId", "device-123") | ||
// .param("groupId", "group-456") | ||
// .header("Authorization", accessToken) | ||
// .contentType(MediaType.APPLICATION_JSON) | ||
// .content(objectMapper.writeValueAsString(planCardRequestDto))) | ||
// .andExpect(status().isOk()) | ||
// .andExpect(jsonPath("$.deviceId").value(planCardResponseDto.deviceId())) | ||
// .andExpect(jsonPath("$.groupId").value(planCardResponseDto.groupId())) | ||
// .andExpect(jsonPath("$.title").value(planCardResponseDto.title())) | ||
// .andExpect(jsonPath("$.description").value(planCardResponseDto.description())) | ||
// .andExpect(jsonPath("$.startTimestamp").value(startTimestamp)) | ||
// .andExpect(jsonPath("$.endTimestamp").value(endTimestamp)); | ||
// } | ||
// | ||
// @Test | ||
// @WithMockUser | ||
// void 플랜카드_조회_성공() throws Exception { | ||
// // 현재 시간 설정 | ||
// LocalDateTime now = LocalDateTime.now(); | ||
// PlanCardRequestDto planCardRequestDto = new PlanCardRequestDto( | ||
// "테스트 플랜 카드", | ||
// "플랜 카드 설명", | ||
// now.toString(), | ||
// now.plusHours(2).toString() | ||
// ); | ||
// | ||
// long startTimestamp = now.atZone(ZoneId.systemDefault()).toEpochSecond(); | ||
// long endTimestamp = now.plusHours(2).atZone(ZoneId.systemDefault()).toEpochSecond(); | ||
// | ||
// MvcResult result = mockMvc.perform(post("/api/preview-plan/card") | ||
// .param("deviceId", "device-123") | ||
// .param("groupId", "group-456") | ||
// .header("Authorization", accessToken) | ||
// .contentType(MediaType.APPLICATION_JSON) | ||
// .content(objectMapper.writeValueAsString(planCardRequestDto))) | ||
// .andExpect(status().isOk()) | ||
// .andReturn(); | ||
// | ||
// String cardId = JsonPath.read(result.getResponse().getContentAsString(), "$.cardId"); | ||
// | ||
// PlanCardResponseDto planCardResponseDto = new PlanCardResponseDto( | ||
// "device-123", | ||
// "group-456", | ||
// cardId, | ||
// "테스트 플랜 카드", | ||
// "플랜 카드 설명", | ||
// startTimestamp, | ||
// endTimestamp | ||
// ); | ||
// | ||
// mockMvc.perform(get("/api/preview-plan/card/{deviceId}/{groupId}/{cardId}", "device-123", "group-456", cardId)) | ||
// .andExpect(status().isOk()) | ||
// .andExpect(jsonPath("$.deviceId").value(planCardResponseDto.deviceId())) | ||
// .andExpect(jsonPath("$.groupId").value(planCardResponseDto.groupId())) | ||
// .andExpect(jsonPath("$.title").value(planCardResponseDto.title())) | ||
// .andExpect(jsonPath("$.description").value(planCardResponseDto.description())) | ||
// .andExpect(jsonPath("$.startTimestamp").value(startTimestamp)) | ||
// .andExpect(jsonPath("$.endTimestamp").value(endTimestamp)); | ||
// } | ||
// | ||
// @Test | ||
// @WithMockUser | ||
// void 플랜카드_수정_성공() throws Exception { | ||
// LocalDateTime now = LocalDateTime.now(); | ||
// PlanCardRequestDto planCardRequestDto = new PlanCardRequestDto( | ||
// "테스트 플랜 카드", | ||
// "플랜 카드 설명", | ||
// now.toString(), | ||
// now.plusHours(2).toString() | ||
// ); | ||
// | ||
// long startTimestamp = now.atZone(ZoneId.systemDefault()).toEpochSecond(); | ||
// long endTimestamp = now.plusHours(2).atZone(ZoneId.systemDefault()).toEpochSecond(); | ||
// | ||
// MvcResult result = mockMvc.perform(post("/api/preview-plan/card") | ||
// .param("deviceId", "device-123") | ||
// .param("groupId", "group-456") | ||
// .header("Authorization", accessToken) | ||
// .contentType(MediaType.APPLICATION_JSON) | ||
// .content(objectMapper.writeValueAsString(planCardRequestDto))) | ||
// .andExpect(status().isOk()) | ||
// .andReturn(); | ||
// | ||
// String cardId = JsonPath.read(result.getResponse().getContentAsString(), "$.cardId"); | ||
// | ||
// PlanCardRequestDto updatedPlanCardRequestDto = new PlanCardRequestDto( | ||
// "수정된 플랜 카드", | ||
// "수정된 플랜 카드 설명", | ||
// now.plusHours(1).toString(), | ||
// now.plusHours(3).toString() | ||
// ); | ||
// | ||
// long updatedStartTimestamp = now.plusHours(1).atZone(ZoneId.systemDefault()).toEpochSecond(); | ||
// long updatedEndTimestamp = now.plusHours(3).atZone(ZoneId.systemDefault()).toEpochSecond(); | ||
// | ||
// mockMvc.perform(put("/api/preview-plan/card/{deviceId}/{groupId}/{cardId}", "device-123", "group-456", cardId) | ||
// .header("Authorization", accessToken) | ||
// .contentType(MediaType.APPLICATION_JSON) | ||
// .content(objectMapper.writeValueAsString(updatedPlanCardRequestDto))) | ||
// .andExpect(status().isOk()) | ||
// .andExpect(jsonPath("$.deviceId").value("device-123")) | ||
// .andExpect(jsonPath("$.groupId").value("group-456")) | ||
// .andExpect(jsonPath("$.title").value(updatedPlanCardRequestDto.title())) | ||
// .andExpect(jsonPath("$.description").value(updatedPlanCardRequestDto.description())) | ||
// .andExpect(jsonPath("$.startTimestamp").value(updatedStartTimestamp)) | ||
// .andExpect(jsonPath("$.endTimestamp").value(updatedEndTimestamp)); | ||
// } | ||
// | ||
// @Test | ||
// @WithMockUser | ||
// void 플랜카드_삭제_성공() throws Exception { | ||
// LocalDateTime now = LocalDateTime.now(); | ||
// PlanCardRequestDto planCardRequestDto = new PlanCardRequestDto( | ||
// "테스트 플랜 카드", | ||
// "플랜 카드 설명", | ||
// now.toString(), | ||
// now.plusHours(2).toString() | ||
// ); | ||
// | ||
// long startTimestamp = now.atZone(ZoneId.systemDefault()).toEpochSecond(); | ||
// long endTimestamp = now.plusHours(2).atZone(ZoneId.systemDefault()).toEpochSecond(); | ||
// | ||
// MvcResult result = mockMvc.perform(post("/api/preview-plan/card") | ||
// .param("deviceId", "device-123") | ||
// .param("groupId", "group-456") | ||
// .header("Authorization", accessToken) | ||
// .contentType(MediaType.APPLICATION_JSON) | ||
// .content(objectMapper.writeValueAsString(planCardRequestDto))) | ||
// .andExpect(status().isOk()) | ||
// .andReturn(); | ||
// | ||
// String cardId = JsonPath.read(result.getResponse().getContentAsString(), "$.cardId"); | ||
// | ||
// mockMvc.perform(delete("/api/preview-plan/card/{deviceId}/{groupId}/{cardId}", "device-123", "group-456", cardId) | ||
// .header("Authorization", accessToken)) | ||
// .andExpect(status().isOk()); | ||
// | ||
// mockMvc.perform(get("/api/preview-plan/card/{deviceId}/{groupId}/{cardId}", "device-123", "group-456", cardId)) | ||
// .andExpect(status().isNotFound()) | ||
// .andExpect(jsonPath("$.message").value("플랜이 존재하지 않습니다.")); | ||
// } | ||
//} | ||
package com.splanet.splanet.previewplan.controller; | ||
|
||
import com.fasterxml.jackson.databind.ObjectMapper; | ||
import com.splanet.splanet.previewplan.dto.PlanCardRequestDto; | ||
import com.splanet.splanet.previewplan.entity.PlanCard; | ||
import com.splanet.splanet.previewplan.repository.PlanCardRepository; | ||
import com.splanet.splanet.previewplan.repository.PlanGroupRepository; | ||
import org.junit.jupiter.api.BeforeEach; | ||
import org.junit.jupiter.api.Test; | ||
import org.springframework.beans.factory.annotation.Autowired; | ||
import org.springframework.boot.test.autoconfigure.web.servlet.AutoConfigureMockMvc; | ||
import org.springframework.boot.test.context.SpringBootTest; | ||
import org.springframework.data.redis.core.RedisTemplate; | ||
import org.springframework.http.MediaType; | ||
import org.springframework.test.web.servlet.MockMvc; | ||
import org.springframework.transaction.annotation.Transactional; | ||
|
||
import static org.junit.jupiter.api.Assertions.assertFalse; | ||
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.*; | ||
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.jsonPath; | ||
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status; | ||
|
||
@SpringBootTest | ||
@AutoConfigureMockMvc | ||
@Transactional | ||
class PreviewPlanControllerIntegrationTest { | ||
|
||
@Autowired | ||
private MockMvc mockMvc; | ||
|
||
@Autowired | ||
private RedisTemplate<String, Object> redisTemplate; | ||
|
||
@Autowired | ||
private PlanCardRepository planCardRepository; | ||
|
||
@Autowired | ||
private PlanGroupRepository planGroupRepository; | ||
|
||
private static final String BASE_URL = "/api/preview-plan"; | ||
|
||
@BeforeEach | ||
void setup() { | ||
redisTemplate.getConnectionFactory().getConnection().flushAll(); | ||
} | ||
|
||
// 테스트에 필요한 샘플 데이터 저장 메서드 | ||
private void saveSamplePlanCard(String deviceId, String groupId, String cardId) { | ||
PlanCard planCard = PlanCard.builder() | ||
.customKey(deviceId + ":" + groupId + ":" + cardId) | ||
.deviceId(deviceId) | ||
.groupId(groupId) | ||
.cardId(cardId) | ||
.title("Sample Title") | ||
.description("Sample Description") | ||
.startDate("2024-01-01") | ||
.endDate("2024-12-31") | ||
.expiration(3600L) | ||
.build(); | ||
planCardRepository.save(planCard); | ||
} | ||
|
||
@Test | ||
void 플랜카드_생성_성공() throws Exception { | ||
PlanCardRequestDto requestDto = new PlanCardRequestDto("Title", "Description", "2024-01-01", "2024-12-31"); | ||
|
||
mockMvc.perform(post(BASE_URL + "/card") | ||
.param("deviceId", "testDevice") | ||
.param("groupId", "testGroup") | ||
.contentType(MediaType.APPLICATION_JSON) | ||
.content(new ObjectMapper().writeValueAsString(requestDto))) | ||
.andExpect(status().isOk()) | ||
.andExpect(jsonPath("$.title").value("Title")) | ||
.andExpect(jsonPath("$.description").value("Description")); | ||
} | ||
|
||
@Test | ||
void 플랜카드_조회_성공() throws Exception { | ||
String deviceId = "testDevice"; | ||
String groupId = "testGroup"; | ||
String cardId = "testCard"; | ||
saveSamplePlanCard(deviceId, groupId, cardId); | ||
|
||
mockMvc.perform(get(BASE_URL + "/card/{deviceId}/{groupId}/{cardId}", deviceId, groupId, cardId)) | ||
.andExpect(status().isOk()) | ||
.andExpect(jsonPath("$.title").value("Sample Title")); | ||
} | ||
|
||
@Test | ||
void 플랜카드_수정_성공() throws Exception { | ||
String deviceId = "testDevice"; | ||
String groupId = "testGroup"; | ||
String cardId = "testCard"; | ||
saveSamplePlanCard(deviceId, groupId, cardId); | ||
|
||
PlanCardRequestDto updateRequest = new PlanCardRequestDto("Updated Title", "Updated Description", "2024-01-01", "2024-12-31"); | ||
|
||
mockMvc.perform(put(BASE_URL + "/card/{deviceId}/{groupId}/{cardId}", deviceId, groupId, cardId) | ||
.contentType(MediaType.APPLICATION_JSON) | ||
.content(new ObjectMapper().writeValueAsString(updateRequest))) | ||
.andExpect(status().isOk()) | ||
.andExpect(jsonPath("$.title").value("Updated Title")) | ||
.andExpect(jsonPath("$.description").value("Updated Description")); | ||
} | ||
|
||
@Test | ||
void 플랜카드_삭제_성공() throws Exception { | ||
String deviceId = "testDevice"; | ||
String groupId = "testGroup"; | ||
String cardId = "testCard"; | ||
saveSamplePlanCard(deviceId, groupId, cardId); | ||
|
||
mockMvc.perform(delete(BASE_URL + "/card/{deviceId}/{groupId}/{cardId}", deviceId, groupId, cardId)) | ||
.andExpect(status().isOk()); | ||
|
||
assertFalse(planCardRepository.findById(deviceId + ":" + groupId + ":" + cardId).isPresent()); | ||
} | ||
|
||
@Test | ||
void 플랜카드_조회_실패_존재하지_않는_카드() throws Exception { | ||
String deviceId = "testDevice"; | ||
String groupId = "testGroup"; | ||
String nonExistentCardId = "nonExistentCard"; | ||
|
||
mockMvc.perform(get(BASE_URL + "/card/{deviceId}/{groupId}/{cardId}", deviceId, groupId, nonExistentCardId)) | ||
.andExpect(status().isNotFound()) | ||
.andExpect(jsonPath("$.message").value("플랜이 존재하지 않습니다.")); | ||
} | ||
|
||
@Test | ||
void 플랜카드_수정_실패_존재하지_않는_카드() throws Exception { | ||
String deviceId = "testDevice"; | ||
String groupId = "testGroup"; | ||
String nonExistentCardId = "nonExistentCard"; | ||
|
||
PlanCardRequestDto updateRequest = new PlanCardRequestDto("Updated Title", "Updated Description", "2024-01-01", "2024-12-31"); | ||
|
||
mockMvc.perform(put(BASE_URL + "/card/{deviceId}/{groupId}/{cardId}", deviceId, groupId, nonExistentCardId) | ||
.contentType(MediaType.APPLICATION_JSON) | ||
.content(new ObjectMapper().writeValueAsString(updateRequest))) | ||
.andExpect(status().isNotFound()) | ||
.andExpect(jsonPath("$.message").value("플랜이 존재하지 않습니다.")); | ||
} | ||
|
||
@Test | ||
void 플랜카드_삭제_실패_존재하지_않는_카드() throws Exception { | ||
String deviceId = "testDevice"; | ||
String groupId = "testGroup"; | ||
String nonExistentCardId = "nonExistentCard"; | ||
|
||
mockMvc.perform(delete(BASE_URL + "/card/{deviceId}/{groupId}/{cardId}", deviceId, groupId, nonExistentCardId)) | ||
.andExpect(status().isNotFound()) | ||
.andExpect(jsonPath("$.message").value("플랜이 존재하지 않습니다.")); | ||
} | ||
} |
Oops, something went wrong.