测试 – 在gradle测试期间显示标准输出和错误测试仅适用于测试失败

我有一个在travis-ci上运行的大型测试套件,它有一个文本输出.我想以一种只为失败的测试,标准输出和标准错误流显示的方式配置gradle.对于已正确执行的所有其他测试,不应发生这种情况,以免控制台受到噪音污染.

我知道如何启用或禁用标准输出/错误日志记录,但我不确定如何使这个依赖于测试结果.

最佳答案 这可以使用以下gradle配置进行存档

project.test {
  def outputCache = new LinkedList<String>()

  beforeTest { TestDescriptor td -> outputCache.clear() }    // clear everything right before the test starts

  onOutput { TestDescriptor td, TestOutputEvent toe ->       // when output is coming put it in the cache
    outputCache.add(toe.getMessage())
    while (outputCache.size() > 1000) outputCache.remove() // if we have more than 1000 lines -> drop first
  }

  /** after test -> decide what to print */
  afterTest { TestDescriptor td, TestResult tr ->
    if (tr.resultType == TestResult.ResultType.FAILURE && outputCache.size() > 0) {
        println()
        println(" Output of ${td.className}.${td.name}:")
        outputCache.each { print(" > $it") }
    }
  }
}

Git回购:https://github.com/calliduslynx/gradle-log-on-failure

原文在此处找到:https://discuss.gradle.org/t/show-stderr-for-failed-tests/8463/7

点赞