播放:2.5.10
Scala:2.11.11
ScalaTest加播放:
"org.scalatestplus.play" %% "scalatestplus-play" % "2.0.1" % Test
如何测试返回Future [Option []]的服务方法?
例如,类似的事情绝对不起作用,它说所有测试都通过了,但事实并非如此。我将期望更改为错误,但仍然“通过”:
class SomeProgressTestExampleSpec extends PlaySpec with OneAppPerSuite {
private val progressService =
app.injector.instanceOf(classOf[ProgressService])
"Retriving progress by user" must
{
"reflect accurate progress" in
{
val progressA : Future[Option[Progress]] = progressService.readByUserId(1)
progressA.map(progressOpt =>
progressOpt
.foreach{
progress =>
progress.soFar mustBe 59
}
)
}
}
}
答案 0 :(得分:1)
问题在于,Future启动的线程是非守护程序线程,因此不会阻止应用程序退出。该测试从未来开始,然后确定它没有更多工作要做,因此在到达代码之前完成测试。解决方案是告诉它等到将来完成。可以使用以下方法非常简单地完成此操作:
val maxTimeToWait: Int = 1000
val result: Option[Progress] = Await.result(progressA, maxTimeToWait)