Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Play Framework test helpers need implicit `Materializer`

I'm using Play 2.6.x and the test helper for status(result) has the method:
def status(of: Accumulator[ByteString, Result])(implicit timeout: Timeout, mat: Materializer): Int = status(of.run())

Running tests throws when the compiler can't find the implicit value: could not find implicit value for parameter mat: akka.stream.Materializer

What is the Materializer -- I'm assuming it's part of Akka-HTTP

And how can I provide one?

like image 232
tgk Avatar asked Jan 28 '23 23:01

tgk


1 Answers

From akka streams docs:

The Materializer is a factory for stream execution engines, it is the thing that makes streams run [...]

The Materializer is the cornerstone of Akka Streams, on which Akka HTTP is built on. You need one of these to be implicitly resolved to make your test compile.

Presently the ActorMaterializer is the only available implementation of Materializer. It is a Materializer based on Akka actors. This is the reason why, to create one, you need in turn to have an ActorSystem in scope.

The following code is what you need in your test:

import akka.actor.ActorSystem
import akka.stream.ActorMaterializer
implicit val sys = ActorSystem("MyTest")
implicit val mat = ActorMaterializer()
like image 51
Stefano Bonetti Avatar answered Jan 31 '23 13:01

Stefano Bonetti