@Mock 이란?

Spring에서는 실제 객체를 만들기엔 비용과 시간이 많이 들거나 의존성이 복잡하여 제대로 구현하기 어려운 경우 사용하는 Annotation이다.

@Mock은 테스트할 때 필요한 실제 객체와 동일한 모의 객체를 만들어 테스트의 효율성을 높인다.
실제 객체를 생성하지 않고도 테스트할 수 있도록 지원하는 Mockito 프레임워크의 기능 중 하나이다.

@Mock 사용 예제

아래 예제는 Spring SecurityContextHolder의 User 정보를 Mocking하는 예제이다.

@Mock  
private SecurityContext securityContext;  
  
@Mock  
private Authentication authentication;

@Before  
public void setUp() {  
    // 초기화 모킹 객체  
    MockitoAnnotations.openMocks(this);  
  
    RpaUserDetails rpaUserDetails = new RpaUserDetails.Builder()  
            .userName("홍길동")  
            .build();  
  
    // SecurityContext에 대한 모킹 설정  
    when(authentication.getDetails()).thenReturn(rpaUserDetails);  
    when(securityContext.getAuthentication()).thenReturn(authentication);  
    SecurityContextHolder.setContext(securityContext);  
}

openMocks() 메서드

openMocks()는 Mockito 3.4.0 버전부터 도입된 Mock 초기화 메서드로, 현재 클래스의 Mock 객체를 주입하고 테스트 클래스의 필드에 할당한다.

@BeforeEach
void setup() {
    MockitoAnnotations.openMocks(this);
}

@Mock vs @MockBean 차이점

어노테이션 주요 기능 적용 대상
@Mock Mockito를 사용한 단순 Mock 객체 생성 단위 테스트
@MockBean Spring 컨텍스트 내에서 Mock 객체를 빈으로 등록 통합 테스트

@Mock의 장점과 단점

✅ 장점

  • 실제 객체를 생성하지 않고도 테스트 가능
  • 의존성이 복잡한 객체를 쉽게 모킹 가능
  • 단위 테스트를 빠르게 실행할 수 있음

❌ 단점

  • Mock 객체는 실제 동작을 수행하지 않으므로 실제 환경과 차이가 있을 수 있음
  • Mock 설정을 잘못하면 테스트 결과가 왜곡될 가능성이 있음

연결문서

댓글남기기