Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- EnableAutoConfiguration
- 외부설정
- WebApplication Type
- 브루트포스
- @Profile
- JPA
- Spring Security
- Application Event
- JsonSerializer
- HATEOAS
- 알고리즘
- Application Runner
- webjar
- 스프링부트
- AuthenticationPrincipal
- 백트래킹
- @ConfigurationProperties
- HttpMessageConverters
- Application Argument
- OAuth2
- 다익스트라
- 정적 리소스
- cors
- 리소스 서버
- 백준
- 백기선
- rest api
- 스프링 부트
- application.properties
- 리소스핸들러
Archives
- Today
- Total
아카이브
[스프링 기반 REST API 개발] 테스트 코드 리팩토링 본문
여러 컨트롤러 간의 중복 코드 제거하기
- 클래스 상속을 사용하는 방법
- @Ingore 어노테이션으로 테스트로 간주되지 않도록 설정
중복 코드를 모아둔 BaseControllerTest class를 만들고 extends 하여 사용하기 하기
// 중복 어노테이션
@SpringBootTest
@AutoConfigureMockMvc
@AutoConfigureRestDocs
@Import(RestDocsConfiguration.class) // bean import
@ActiveProfiles("test")
@Ignore // test로 간주되지 않도록
public class BaseControllerTest {
// 중복 의존성 주입
@Autowired
protected MockMvc mockMvc;
@Autowired
protected ObjectMapper objectMapper;
@Autowired
protected ModelMapper modelMapper;
}
EventControllerTest와 IndexControllerTest는 extends BaseControllerTest
public class EventControllerTest extends BaseControllerTest {
}
public class IndexControllerTest extends BaseControllerTest {
}
'Spring > 스프링 기반 REST API 개발' 카테고리의 다른 글
[스프링 기반 REST API 개발] Account에 스프링 시큐리티 적용하기 (0) | 2021.01.09 |
---|---|
[스프링 기반 REST API 개발] Account 도메인 추가 (0) | 2021.01.09 |
[스프링 기반 REST API 개발] 이벤트 수정 API 구현하기 (0) | 2021.01.09 |
[스프링 기반 REST API 개발] 이벤트 조회 API 구현하기 (0) | 2021.01.09 |
[스프링 기반 REST API 개발] 이벤트 목록 조회 API 구현 (0) | 2021.01.09 |