我有以下测试:
"fail if date is wrongly formatted" in {
val endpoint = s"/api/prof?date=wrongdate"
Get(endpoint) ~> check {
status shouldBe StatusCodes.BadRequest
val resp = responseAs[String]
resp shouldBe "could not be parsed"
}
}
但是,测试失败并显示以下内容:
Could not unmarshal response to type 'java.lang.String' for `responseAs` assertion: akka.http.scaladsl.unmarshalling.Unmarshaller$UnsupportedContentTypeException: Unsupported Content-Type [Some(text/plain; charset=UTF-8)], supported: application/json
Response was: HttpResponse(400 Bad Request,List(),HttpEntity.Strict(text/plain; charset=UTF-8,106 bytes total),HttpProtocol(HTTP/1.1))
如何将响应正文作为字符串获取?