我正在学习Akka演员模型中的测试方法。我试图从Akka文档中运行一些代码。当我运行以下代码时,会发生令人困惑的错误。我正在使用JDK 1.8.121,macOS和Scala 2.12。
val probe = TestProbe()
val future = probe.ref ? "hello"
probe.expectMsg(0 millis, "hello") // TestActor runs on CallingThreadDispatcher
probe.reply("world")
assert(future.isCompleted && future.value == Some(Success("world")))
我在自己的电脑上设置了测试:
package TestKitDemo
import akka.actor.ActorSystem
import akka.actor.Status.Success
import akka.testkit.{TestKit, TestProbe}
import org.scalatest.{BeforeAndAfterAll, WordSpecLike}
import akka.pattern.ask
import akka.util.Timeout
import scala.concurrent.duration._
import scala.util.Try
class ReplyDemo extends TestKit(ActorSystem("Testsystem")) with WordSpecLike
with BeforeAndAfterAll{
// import system.dispatcher
override protected def afterAll(): Unit = {
shutdown(system)
}
implicit val timeout = Timeout(2 seconds)
"reply" should {
"same" in {
val probe = TestProbe()
val future = probe.ref ? "hello"
probe.expectMsg(0 millis, "hello") // TestActor runs on CallingThreadDispatcher
probe.reply("world")
// error
assert(future.isCompleted && future.value == Some(Success("world")))
// correct
// assert(future.isCompleted && future.value.get == Try("world"))
}
}
}
我使用两种assert
:一种是Akka documentation中的代码,另一种是我使用Try
进行的相等测试。
我知道Try
是什么。据我所知,Try
类型可以是Success
或Failure
。
测试错误如下:
future.isCompleted was true, but Some(Success("world")) did not equal Some(Success(world))
ScalaTestFailureLocation: TestKitDemo.ReplyDemo at (ReplyDemo.scala:44)
Expected :Some(Success(world))
Actual :future.isCompleted was true, but Some(Success("world"))
Some(Success("world"))
不等于Some(Success(world))
。怎么了?它们应该是平等的。
答案 0 :(得分:0)
assert(future.isCompleted && future.value == Some(Success("world")))
上述断言在您的测试中失败的原因是因为您尝试匹配akka.actor.Status.Success
而不是scala.util.Success
。取代
import akka.actor.Status.Success
与
import scala.util.Success
你的考试将通过。