4

我正在使用 PowerMockito 在我的测试中模拟一个私有方法。

validator = spy(new CommentValidator(form, request));
PowerMockito.when(
        validator,
        method(CommentValidator.class, "isCaptchaValid",
        HttpServletRequest.class))
    .withArguments(Mockito.any())
    .thenReturn(true);

当我运行测试时,我在方法的第二行得到java.lang.reflect.InvocationTargetException了 a ,它看起来像这样:NullPointerExceptionisCaptchaValid

private boolean isCaptchaValid(HttpServletRequest request) {
    Captcha captcha =
        (Captcha) request.getSession().getAttribute("attribute");
    if (captcha == null) {
        log.debug(String.format("O valor do captcha da sessão esta nulo. IP: [%s]",
            IPUtil.getReaderIp(request)));
        return false;
    }
    if (captcha.isInputValid(
            request.getParameter("captcha").toString().toUpperCase())) {
        return true;
    }
    return false;
}

public final Boolean isInputValid(String pInput) {

    if (getPuzzle() == null) {
        if (LOGGER.isDebugEnabled()) {
            LOGGER.debug("puzzle is null and invalid. Will return Boolean.FALSE");
        }
        return Boolean.FALSE;
    }

    Boolean returnValue = verifyInput(pInput);
    if (LOGGER.isDebugEnabled()) {
        LOGGER.debug("Validation of puzzle: " + returnValue);
    }
    disposePuzzle();

    return returnValue;
}

如果我在嘲笑它的行为,为什么要考虑该方法的实现?有没有办法避免这种情况?我需要模拟它的原因是因为我无法提供Captcha对象。

4

1 回答 1

2

问题解决了

通过调用

PowerMockito.when(
        validator,
        method(CommentValidator.class, "isCaptchaValid",
        HttpServletRequest.class))
    .withArguments(Mockito.any())
    .thenReturn(true);

首先,该方法本身经过验证PowerMockito,因此NPE很可能被找到。

为了避免这种情况,您需要颠倒该逻辑。

doReturn(true).when(validator, "isCaptchaValid", any(HttpServletRequest.class));

PowerMockito忽略了方法的主体并立即返回你想要的。

于 2015-06-16T14:14:05.597 回答