单元测试:在定义模拟行为后调用@PostConstruct

我有两个类:

public MyService {
    @Autowired
    private MyDao myDao;     
    private List<Items> list; 

    @PostConstruct
    private void init(){
         list = myDao.getItems(); 
    }
}

现在我想参与单元测试,所以我将嘲笑行为。MyServiceMyDao

XML:

<bean class = "com.package.MyService"> 
<bean  class="org.mockito.Mockito" factory-method="mock"> 
     <constructor-arg value="com.package.MyDao"/>
</bean>

<util:list id="responseItems" value-type="com.package.Item">
    <ref bean="item1"/>
    <ref bean="item2"/>
</util:list>

单元测试:

@ContextConfiguration("/test-context.xml")
@RunWith(SpringJUnit4ClassRunner.class)
public class MyServiceTest {

    @Autowired 
    MyService myService

    @Autowired 
    MyDao myDao;

    @Resource
    @Qualifier("responseItems")
    private List<Item> responseItems; 

    @Before
    public void setupTests() {
        reset(myDao); 
        when(myDao.getItems()).thenReturn(responseItems); 
    }
}

这样做的问题是,在定义模拟行为之前,它@PostConstruct bean被创造出来。MyService

如何在 XML 中定义模拟行为或延迟到单元测试设置之后?@PostConstruct


答案 1

在我的项目中,我也有同样的要求。我需要使用@PostConstructor设置字符串,我不想运行Spring上下文,换句话说,我想要简单的模拟。我的要求如下:

public class MyService {

@Autowired
private SomeBean bean;

private String status;

@PostConstruct
private void init() {
    status = someBean.getStatus();
} 

}

溶液:

public class MyServiceTest(){

@InjectMocks
private MyService target;

@Mock
private SomeBean mockBean;

@Before
public void setUp() throws NoSuchMethodException,  InvocationTargetException, IllegalAccessException {

    MockitoAnnotations.initMocks(this);

    when(mockBean.getStatus()).thenReturn("http://test");

    //call post-constructor
    Method postConstruct =  MyService.class.getDeclaredMethod("init",null); // methodName,parameters
    postConstruct.setAccessible(true);
    postConstruct.invoke(target);
  }

}

答案 2

MyDao听起来像是一个外部系统的抽象。通常,不应在方法中调用外部系统。相反,让 中的另一个方法调用您。@PostConstructgetItems()MyService

Mockito注射将在春季开始后进行,此时模拟器并不像您所看到的那样起作用。您不能延迟 .要解决此问题并自动运行加载,请执行并调用 。@PostConstructMyServiceSmartLifecyclegetItems()start()


推荐