How do I supply an implicit value for an akka.stream.Materializer when sending a FakeRequest?

岁酱吖の 提交于 2019-12-04 01:58:20
Ramon J Romero y Vigil

You can create an implicit ActorMaterializer within your test class which will use testkit's ActorSystem:

import akka.testkit.TestKit
import akka.actor.ActorSystem

class TestJmlPlay(_system : ActorSystem) extends TestKit(_system) ... {

  implicit val materializer: ActorMaterializer = ActorMaterializer()

  val bbox = ...

You don't need Materializer.

I believe you are calling not the right action.apply method.
You want def apply(request: Request[A]): Future[Result]
To call the right, you need FakeRequest[AnyContent], same parametrized type as action:Action[AnyContent].This type is forced by PlayBodyParser I believe you set for your action.

After that you don't need .run call

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!