Scala测试模拟隐含参数?

时间:2013-05-12 12:30:28

标签: unit-testing scala testing scalatest spray

当涉及隐式参数时,我在尝试理解如何在Scala中编写测试时遇到了一些困难。

我的代码和测试有以下(简短版本):

实施(Scala 2.10,Spray和Akka):

import spray.httpx.SprayJsonSupport._
import com.acme.ResultJsonFormat._

case class PerRequestIndexingActor(ctx: RequestContext) extends Actor with ActorLogging {
  def receive = LoggingReceive {
    case AddToIndexRequestCompleted(result) =>
      ctx.complete(result)
      context.stop(self)
  }
}


object ResultJsonFormat extends DefaultJsonProtocol {
  implicit val resultFormat = jsonFormat2(Result)
}

case class Result(code: Int, message: String)

测试(使用ScalaTest和Mockito):

"Per Request Indexing Actor" should {
    "send the HTTP Response when AddToIndexRequestCompleted message is received" in {
      val request = mock[RequestContext]
      val result = mock[Result]

      val perRequestIndexingActor = TestActorRef(Props(new PerRequestIndexingActor(request)))
      perRequestIndexingActor ! AddToIndexRequestCompleted(result)

      verify(request).complete(result)
    }
  }

这一行verify(request).complete(result)使用隐式Marshaller将Result转换为JSON。

我可以通过添加implicit val marshaller: Marshaller[Result] = mock[Marshaller[Result]]将一个编组器放入范围,但是当我运行测试时,会使用另一个Marshaller实例,因此验证失败。

即使将模拟Marshaller明确传递给complete也会失败。

那么,任何人都可以建议如何为隐式参数创建一个模拟对象,并确保该实例是使用的实例吗?

1 个答案:

答案 0 :(得分:5)

这是一个完美的情况,使用Mockito的Matcher为marshaller arg。你不应该嘲笑隐式编组。您真正想要做的就是验证调用了completeresult与您的预期匹配,还有一些编组实例。首先,如果您还没有这样做,请将Mockito匹配器带入范围,并进行如下导入:

import org.mockito.Matchers._

然后,如果你想在结果上进行参考匹配,你可以这样验证:

verify(request).complete(same(result))(any[classOf[Marshaller[Result]]])

或者,如果你想在结果上匹配等于你可以这样做:

verify(request).complete(eq(result))(any(classOf[Marshaller[Result]]))

匹配器的技巧是,一旦你使用一个arg,你必须将它们用于所有args,这就是为什么我们也必须使用result