0

我的 JSF 应用程序的 wirint 测试用例有一些问题。所以我想测试我的注销方法:

            FacesContext context = EasyMock.createMock(FacesContext.class);
            String userName = "testUserName";
            HttpSession session = EasyMock.createMock(HttpSession.class);
            ExternalContext ext = EasyMock.createMock(ExternalContext.class);
            EasyMock.expect(ext.getSession(true)).andReturn(session);
            EasyMock.expect(context.getExternalContext()).andReturn(ext).times(2);
            context.getExternalContext().invalidateSession();
            EasyMock.expectLastCall().once();           

            EasyMock.replay(context);
            EasyMock.replay(ext);
            EasyMock.replay(session);

            loginForm = new LoginForm();
            loginForm.setUserName(userName);
            String expected = "login";
            String actual = loginForm.logout();
            context.release();

            Assert.assertEquals(expected, actual);
            EasyMock.verify(context);
            EasyMock.verify(ext);
            EasyMock.verify(session);

我的注销方法是:

    public String logout() {
        FacesContext.getCurrentInstance().getExternalContext().invalidateSession();
        return "/authentication/login.xhtml?faces-redirect=true";
    }

我的问题是我在这里遇到了一个空指针异常: EasyMock.expectLastCall().once() 如何正确测试它?我想这与模拟有关,但我找不到解决方案,在这种情况下我怎么能正确模拟 FacesContext

4

2 回答 2

2

为了完成上述工作,您可以使用例如PowerMock,它是一个允许您扩展模拟库(如EasyMock)并具有额外功能的框架。在这种情况下,它允许您模拟FacesContext.

如果您使用的是 Maven,请使用以下链接检查所需的依赖项设置。

使用这两个注释来注释您的 JUnit 测试类。第一个注释告诉 JUnit 使用PowerMockRunner. 第二个注释告诉PowerMock准备模拟FacesContext类。

@RunWith(PowerMockRunner.class)
@PrepareForTest({ FacesContext.class })
public class LoginFormTest {

现在继续FacesContext使用PowerMock进行模拟,就像对其他类所做的那样。唯一的区别是这次你在类replay()verify()不是实例上执行。

@Test
public void testLogout() {

    // mock all static methods of FacesContext
    PowerMock.mockStatic(FacesContext.class);

    FacesContext context = EasyMock.createMock(FacesContext.class);
    ExternalContext ext = EasyMock.createMock(ExternalContext.class);

    EasyMock.expect(FacesContext.getCurrentInstance()).andReturn(context);
    EasyMock.expect(context.getExternalContext()).andReturn(ext);

    ext.invalidateSession();
    // expect the call to the invalidateSession() method
    EasyMock.expectLastCall();
    context.release();

    // replay the class (not the instance)
    PowerMock.replay(FacesContext.class);
    EasyMock.replay(context);
    EasyMock.replay(ext);

    String userName = "testUserName";
    LoginForm loginForm = new LoginForm();
    loginForm.setUserName(userName);

    String expected = "/authentication/login.xhtml?faces-redirect=true";
    String actual = loginForm.logout();
    context.release();

    Assert.assertEquals(expected, actual);

    // verify the class (not the instance)
    PowerMock.verify(FacesContext.class);
    EasyMock.verify(context);
    EasyMock.verify(ext);
}

我创建了一篇博文,更详细地解释了上述代码示例。

于 2014-11-09T14:16:27.940 回答
0

这个:

FacesContext context = EasyMock.createMock(FacesContext.class);

不改变返回值(在被测试的类中):

FacesContext.getCurrentInstance()

您需要使用模拟的 FacesContext扩展FacesContext然后调用受保护的方法。setCurrentInstance

于 2014-03-26T15:16:33.873 回答