我有两个班级:
public MyService
{
@Autowired
private MyDao myDao;
private List<Items> list;
@PostConstruct
private void init(){
list = myDao.getItems();
}
}
现在我想在单元测试中涉及MyService
,所以我会模仿行为MyDao
。
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);
}
}
这个问题是创建了MyService
bean,并且在定义了模拟行为之前调用了它的@PostConstruct bean。
如何在XML中定义模拟行为,或者在单元测试设置之后延迟@PostConstruct
?
答案 0 :(得分:7)
我的项目中有同样的要求。我需要使用@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);
}
}
答案 1 :(得分:1)
MyDao听起来像是外部系统的抽象。通常不应在@PostConstruct
方法中调用外部系统。而是通过getItems()
中的其他方法调用MyService
。
Mockito注射将在春季开始后进行,此时模拟器不能正常工作。你不能推迟@PostConstruct
。要胜过此并自动运行加载,MyService
实施SmartLifecycle
并在getItems()
中调用start()
。