gpt4 book ai didi

java - Slf4j 或 Logback : Turn off logging for 1 unit test (or 1 thread)

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:10:46 28 4
gpt4 key购买 nike

我想关闭 1 个单元测试的日志记录(不会失败),因此堆栈跟踪不会显示在日志中。该堆栈跟踪应该存在于生产运行中,因为它是一个故障测试。

生产代码如下所示:

boolean failed = false;
for (int i = 0; i < 10; i++) {
try {
// Possible submits on Executor to run on other thread (not that it matters)
runTask(i);
} catch (RuntimeException e) {
// In the unit test, this pollutes the test log // BAD, MY PROBLEM
// In production, it shows up in the log immediately, before other tasks run // GOOD
logger.warn("Task failed. Stacktrace:", e);
failed = true;
}
}
if (failed) {
// The unit test checks if this exception is thrown,
// (it doesn't pollute the test log)
throw new IllegalStateException("at least 1 failed");
// In the real implementation, this also chains the first exception, to avoid eating the stacktrace
}

我有一个单元测试,它测试如果提交给执行程序的 10 个任务中至少有 1 个失败,执行程序会抛出异常。因为执行器在发生内部异常时不会失败,所以它会在抛出外部异常之前先运行其他任务。因此,当它捕获到内部异常时,它会将其记录下来,并在日志中提供堆栈跟踪。对于 QA,这是一种误导,因为测试日志显示堆栈跟踪,尽管所有测试都成功了。我想摆脱测试日志中的堆栈跟踪 (jira)。

最佳答案

我认为没有针对 slf4j 的解决方案,因为支持的框架可能不支持此功能。

如果您将 slf4j 与 log4j 绑定(bind)一起使用,您可以实现它。

// get the logger you want to suppress
Logger log4j = Logger.getLogger("sub.optimal.package");

// keep the current level
Level previousLogLevel = log4j.getLevel();

// set the level to suppress your stacktrace respectively
log4j.setLevel(Level.WARN);

在下面找到一个如何在方法级别配置记录器的示例。您需要配置不同的记录器,以便在生产环境和测试环境中更改记录级别。

假定以下目录结构和文件

./Main.java
./slf4j-api-1.7.10.jar
./slf4j-log4j12-1.7.10.jar
./log4j-1.2.17.jar
./prod/log4j.properties
./testing/log4j.properties
./bin/

主.java

package sub.optimal;

import java.io.File;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

public class Main {
Logger logger;
Logger loggerSuppressible;

{
logger = LoggerFactory.getLogger(this.getClass());
loggerSuppressible = LoggerFactory.getLogger("loggerSuppressible");
}

public void doSomeFoo() {
logger.info("logging from doSomeFoo");
}

public void doSomeStacktrace() {
try {
new File("..").renameTo(null);
} catch (NullPointerException npe) {
loggerSuppressible.error("something went wrong", npe);
}
}

public static void main(String[] args) {
Main main = new Main();

main.doSomeFoo();
main.doSomeStacktrace();
}
}

./prod/log4j.properties

log4j.rootCategory=info, console
# production setting
log4j.category.loggerSuppressible=info, console
log4j.additivity.loggerSuppressible=false

log4j.appender.console=org.apache.log4j.ConsoleAppender
log4j.appender.console.Threshold=info
log4j.appender.console.layout=org.apache.log4j.PatternLayout
log4j.appender.console.layout.ConversionPattern=%d [%t] %-5p %c %x - %m%n

./testing/log4j.properties

log4j.rootCategory=info, console
# testing setting
log4j.category.loggerSuppressible=fatal, console
log4j.additivity.loggerSuppressible=false

log4j.appender.console=org.apache.log4j.ConsoleAppender
log4j.appender.console.Threshold=info
log4j.appender.console.layout=org.apache.log4j.PatternLayout
log4j.appender.console.layout.ConversionPattern=%d [%t] %-5p %c %x - %m%n

编译

javac -cp ${classpath_logger} -d bin/ Main.java

** 在生产环境中运行**

java -cp bin/:prod/:${classpath_logger} sub.optimal.Main

** 在测试中运行**

java -cp bin/:testing/:${classpath_logger} sub.optimal.Main

产出产出

2015-03-05 14:09:50,707 [main] INFO  sub.optimal.Main  - logging from doSomeFoo
2015-03-05 14:09:50,707 [main] ERROR loggerSuppressible - something went wrong
java.lang.NullPointerException
at java.io.File.renameTo(File.java:1386)
at sub.optimal.Main.doSomeStacktrace(Main.java:22)
at sub.optimal.Main.main(Main.java:32)

输出测试

2015-03-05 14:09:50,847 [main] INFO  sub.optimal.Main  - logging from doSomeFoo

关于java - Slf4j 或 Logback : Turn off logging for 1 unit test (or 1 thread),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28807545/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com