使用Log4j时,如何在测试失败时写入日志文件

时间:2014-05-21 19:40:30

标签: java testing exception-handling log4j

我想用Log4j写入 log 文件。

我找到了一个简单的解决方案 - 使用try - catch环绕测试体:

@Test(groups = "GMAIL_PAGE")
public void testAllMailLink() {
    try {
        List<WebElement> allMessages = page.takeAllMessage();
        page.clickInboxLink();
        List<WebElement> inboxMessages = page.takeInboxMessage();
        page.clickDraftLink();
        List<WebElement> draftMessages = page.takeDraftMessage();

        Assert.assertTrue(allMessages.containsAll(inboxMessages),
                "All messages doesn't contains all inbox messages");
        Assert.assertTrue(allMessages.containsAll(draftMessages),
                "All messages doesn't contains all draft messages");
        log.info("test is passed");
    } catch (Exception e) {
        log.error(e);
    }
}

但它有一些缺点 - 这个测试总是通过,即使它失败了。

如果我在我的机器上工作并且能够看到控制台,那就没问题。但是当此测试推送到持续集成服务器时该怎么办?

当测试失败时,是否存在将信息写入日志文件的其他方式?

1 个答案:

答案 0 :(得分:3)

Assert.fail()下面添加log.error(e)

catch (Exception e) {
    log.error(e);
    Assert.fail();
}

顺便说一句,您正在调用使用e.toString()的{​​{3}}。在这种情况下,最好使用描述性消息,然后传递异常以获取相应的堆栈跟踪:

catch (Exception e) {
    log.error("Some descriptive message should go here.", e);
    Assert.fail("Some descriptive message should go here as well.");
}