使用 sbt 和 testng 时,如何获得测试中引发的异常的完整堆栈跟踪?

发布于 2024-12-02 04:12:57 字数 184 浏览 2 评论 0原文

堆栈跟踪被截断 - 例如它们以 [info] ... 结尾

使用 last 或更改 traceLevel 没有帮助 - 它只是打印sbt 包装器的完整堆栈跟踪。

这是使用 testng 进行测试(我也相信使用 scalatest 和 sl4j)

The stacktraces are truncated - e.g. they end with [info] ...

Using last or changing traceLevel doesn't help - it simply prints the complete stacktrace of the sbt wrapper.

This is testing with testng (also I believe using scalatest and sl4j)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

坏尐絯℡ 2024-12-09 04:12:57

使用此处文档中找到的提示:(

引用)

您可以通过四种方式配置使用 sbt 运行时显示的输出:1) 关闭颜色,2) 显示短堆栈跟踪,3) 完整堆栈跟踪,以及 4) 显示所有内容的持续时间。为此,您必须将 -o 参数传递给 ScalaTest,并在 -o 之后放置以下任意组合:

  • D - 显示持续时间
  • S - 显示短堆栈跟踪
  • F - 显示完整堆栈跟踪
  • W - 无颜色

例如,“-oDF”将显示完整的堆栈跟踪和持续时间(每次测试所花费的时间)。

要将参数从 sbt 传递到 ScalaTest,您可以全局添加测试选项,如下所示:

Test 中的 testOptions += Tests.Argument("-oD")

有关引用的其余部分,请参阅网站)

您可以使用以下 sbt 命令在测试中启用完整堆栈跟踪:

> set testOptions in YourProjectName += Tests.Argument("-oF")

根据 Sasha 的评论,这可以每次测试运行也可以从命令行完成,如下所示。

sbt test -- -oF

Using hints found in the documentation here:

(quoted)

You can configure the output shown when running with sbt in four ways: 1) turn off color, 2) show short stack traces, 3) full stack traces, and 4) show durations for everything. To do so you must pass a -o argument to ScalaTest, and after the -o, place any combination of:

  • D - show durations
  • S - show short stack traces
  • F - show full stack traces
  • W - without color

For example, "-oDF" would show full stack traces and durations (the amount of time spent in each test).

To pass arguments from sbt to ScalaTest you can either add test options globally, like this:

testOptions in Test += Tests.Argument("-oD")

(See the website for the rest of the quote)

You can use the following sbt command to enable full stack traces in tests:

> set testOptions in YourProjectName += Tests.Argument("-oF")

Per Sasha's comment, this can also be done from the command line per test run as shown below.

sbt test -- -oF
等待圉鍢 2024-12-09 04:12:57

作为让 SBT 打印完整堆栈跟踪的替代方法,您可以在测试运行程序周围放置一个 try-catch 块吗?例如,来自 REPL:

scala> try { throw new Exception } catch { case e => e }
res1: java.lang.Throwable = java.lang.Exception

scala> res1.printStackTrace
java.lang.Exception
    at $line2.$read$iw$iw$.liftedTree1$1(<console>:8)
    at $line2.$read$iw$iw$.<init>(<console>:8)
    at $line2.$read$iw$iw$.<clinit>(<console>)
    ...

As an alternative to getting SBT to print the full stack trace, could you put a try-catch block around your test runner? For example, from the REPL:

scala> try { throw new Exception } catch { case e => e }
res1: java.lang.Throwable = java.lang.Exception

scala> res1.printStackTrace
java.lang.Exception
    at $line2.$read$iw$iw$.liftedTree1$1(<console>:8)
    at $line2.$read$iw$iw$.<init>(<console>:8)
    at $line2.$read$iw$iw$.<clinit>(<console>)
    ...
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文