/ / Spray-Test gzip декодиране - скала, спрей, spray-json, спрей-клиент, спрей-тест

Спрей-тест gzip декодиране - скала, спрей, spray-json, спрей-клиент, спрей-тест

Опитвам се да пиша за спрей

class FullTestKitExampleSpec extends Specification with Specs2RouteTest with UserController with HttpService {
def actorRefFactory = system

"The service" should {

"return a greeting for GET requests to the root path" in {
Get("/user") ~> `Accept-Encoding`(gzip) ~> userRoute ~> check {
val responsex = response
responseAs[String] must contain("Test1")
}
}
}
}

Следвам рутера

trait UserController extends HttpService with Json4sSupport with CORSSupport{
override implicit def json4sFormats: Formats = DefaultFormats

val userRoute = {
cors {
compressResponse(Gzip) {
path("user") {
get {
complete {
"Test1"
}
} ~
post {
entity(as[UserRegister]) { person =>
complete {
println(person.name)
person.name
}
}
}
}
}
}
}
}

Използвам GZIP компресия за отговор, но

Не може да бъде отменен отговор за тип "java.lang.String" за responseAs твърдение: MalformedContent (неизвестен символа Близо:, Някои (org.json4s.ParserUtil $ ParseException: неизвестен символа Близо до: ))

Как да настроите GZIP HttpResponse на String?

Отговори:

5 за отговор № 1

Включете a decode(Gzip) във вашия тръбопровод:

import spray.httpx.encoding.Gzip
import spray.httpx.ResponseTransformation

class MySprayRouteSpec extends FlatSpec
with ShouldMatchers
with ResponseTransformation
with ScalatestRouteTest
{
Get("/") ~> mapHttpResponse(decode(Gzip))(userRoute) ~> check{
response.status should equal(OK)
}
}