如何编写针对CDI的Junit测试用例?

3

我想为CDI编写测试用例。在我的DAO中,我使用了@inject。有人可以帮我学习如何为CDI编写测试用例吗?我尝试了下面的代码,但它不起作用。请帮帮我。

public class StudentTest {

    StudentService stuService;

    StudentDAO stuDAO;

    StudentVO stuVo;

    @Before
    public void setUp() throws Exception {

        System.out.println("In Setup");

        stuVo=new StudentVO ();

        stuService=new StudentService();

        stuDAO=Mockito.mock(StudentDAO.class);

        stuVo.setStudId("123");

        stuVo.setName("user1");

        Mockito.when(stuDAO.getStudent(stuVo.getStuId())).thenReturn(student);
    }

    @Test
    public void getStudent() throws DataAccessException {

        StudentVO stVO=stuService.getStudent(123);

        Assert.assertEquals("123", stVO.getStuId());
    }
}

我的服务类是

public class StudentService {

    @Inject
    StudentDAO stuDao;

    public StudentVo getStudent(String id){

        return stuDao.getStudent(id);

    }

}

在故障跟踪中,只显示为"java.lang.NullPointerException"。

 at com.stu.StudentService.getStudent(StudentService.java:104)
 at com.stu.junit.POCJunit.getgetStudent(StudentTest.java:21)
 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
 at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
 at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
 at java.lang.reflect.Method.invoke(Method.java:606)
 at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:45)
 at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:15)
 at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:42)
 at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:20)
 at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:28)
 at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:263)...

缩进你的代码。它看起来很难读懂。 - JB Nizet
已经在setUp()方法中把我的Dao模拟成“stuDAO=Mockito.mock(StudentDAO.class);”。 - stackUser44
我不是100%确定,但你难道不必在@Test方法中使用Mockito.when()吗? - Wavemaster
你正在使用什么 DI 容器? - Stefan Birkner
这似乎是Arquillian旨在帮助解决的问题 - http://www.arquillian.org - John Ament
2个回答

5
我通过加入以下代码解决了这个问题。
@Mock
StudentDAO stuDAO;

@InjectMocks
StudentService stuService;

And in setUp() method I have written

MockitoAnnotations.initMocks(this);

你应该在你的类上方放置 @ExtendWith(MockitoExtension.class)。这样,就不需要使用 MockitoAnotations.initMocks 了。 - Nebulosar

0

你从未在服务bean中设置dao mock。没有注入框架存在,因此dao仍然为“null”,测试失败。 你可以直接设置dao mock,因为你使字段包可见,或者使用反射。

我推荐的方法: 看一下http://www.needle4j.org/。它是一个容器无关的测试框架,旨在简化DI测试。

基本规则:每当你注入某些东西时,needle4j都会为你创建一个mock实例。


网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接