Ticker

6/random/ticker-posts

@Transactional Servise Mockito ile Mock Servis Enjekte Etme


Merhabalar. Bu yazımızda Java projelerimizde kullandığımız Mockito kütüphanesi ile, @Transactional anotasyonuna sahip bir servise mock servis enjekte edememe probleminden ve çözümünden bahsedeceğiz.
Öncelikle, neden mock (yapay, sahte) servis kullanıldığından bahsedelim. Unit test yazarken testin gerçekten unit olması için test ettiğiniz kod parçasının başka kodlara bağımlılığının olmaması gerekmektedir. Örneğin, sipariş toplam ücretini hesaplayan bir servis düşünelim. Ham ücrete eklenen vergi miktarını başka bir servisten hesaplatıp kullandığını düşünelim. Sipariş ücretini hesaplayan metodu sağlıklı test edebilmek için, vergiyi hesaplayan metoddan hatalı sonuç dönmeyeceğinden emin olmalıyız. Bu nedenle vergi hesaplayan metodun orjinal kodunu çalıştırmadan, doğrudan istediğimiz sonucu dönmesi için vergi servisini "mocklarız".

Mockito çatısını kullanırken bu işlemi @Mock anotasyonu ile yaparız. Test ettiğimiz servisin içindeki bir servise mock sevisimizi enjekte etmek için @InjectMocks anotasyonunu kullanırız. Yalnız, inject edilen servis @Transactional anotasyonuna sahip ise, enjekte işlemi gerçekleşmiyor. Çünkü, transactional servis, java proxy nesneye dönüştürüldüğü için, Mockito enjekte edecek sınıf elemanı bulamıyor. Bu problemi aşmak için, mock servisleri hazırladığımız sırada, ReflectionTestUtils kullanarak manuel olarak servisi enjekte ederek aşabiliriz.

Aşağıdaki kodlarla daha anlaşılır olacaktır.
"admin" kullanıcı adını dönen UserService.
import org.springframework.stereotype.Service;
@Service
public class UserService {
public String getUsername(){
return "admin";
}
}

UserService'den dönen kullanıcı adını customerName olarak dönen CustomerService.
import javax.transaction.Transactional;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
@Service
@Transactional
public class CustomerService {
@Autowired
private UserService userService;
public String getCustomerName(){
return userService.getUsername();
}
}

UserService sınıfının getUserName metodunu mock user name dönmesini istememize rağmen, CustomerService @Transactional olduğundan içindeki UserService mocklanamadığı için test başarısız olmaktadır.
import static org.hamcrest.CoreMatchers.equalTo;
import static org.junit.Assert.assertThat;
import static org.mockito.Mockito.when;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.InjectMocks;
import org.mockito.Mock;
import org.mockito.MockitoAnnotations;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
@RunWith(SpringRunner.class)
@SpringBootTest
public class InjectToTransactionalServiceTest {
private static final String MOCK_USER_NAME = "mockUserName";
@Mock
private UserService userService;
@InjectMocks
@Autowired
private CustomerService customerService;
@Before
public void initialize(){
MockitoAnnotations.initMocks(this);
when(userService.getUsername()).thenReturn(MOCK_USER_NAME);
}
@Test public void
customerServiceShouldReturnMockUsername(){
assertThat(customerService.getCustomerName(),equalTo(MOCK_USER_NAME));
}
}

CustomerService içindeki UserService ReflectionTestUtils ile mocklandığı için, test başarılı sonuçlanmaktadır.
import static org.hamcrest.CoreMatchers.equalTo;
import static org.junit.Assert.assertThat;
import static org.mockito.Mockito.when;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.InjectMocks;
import org.mockito.Mock;
import org.mockito.MockitoAnnotations;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
import org.springframework.test.util.ReflectionTestUtils;
@RunWith(SpringRunner.class)
@SpringBootTest
public class InjectToTransactionalServiceTest {
private static final String MOCK_USER_NAME = "mockUserName";
@Mock
private UserService userService;
@Autowired
private CustomerService customerService;
@Before
public void initialize(){
MockitoAnnotations.initMocks(this);
when(userService.getUsername()).thenReturn(MOCK_USER_NAME);
ReflectionTestUtils.setField(customerService, "userService", userService);
}
@Test public void
customerServiceShouldReturnMockUsername(){
assertThat(customerService.getCustomerName(),equalTo(MOCK_USER_NAME));
}
}

Yorum Gönder

0 Yorumlar