在一个阿卡内嵌入多个测试
我第一次使用akka-http--我通常选择的web框架是http4s--而且我很难获得我通常编写端点单元测试的方式,以便与akka-http-testkit提供的路由测试一起工作。
通常,我使用ScalaTest(FreeSpec风格)来设置端点调用,然后对响应运行多个单独的测试。 对于akka-http-testkit,这看起来像:
import akka.http.scaladsl.model.StatusCodes
import akka.http.scaladsl.server.Directives._
import akka.http.scaladsl.server.Route
import akka.http.scaladsl.testkit.ScalatestRouteTest
import org.scalatest.{FreeSpec, Matchers}
final class Test extends FreeSpec with ScalatestRouteTest with Matchers {
val route: Route = path("hello") {
get {
complete("world")
}
}
"A GET request to the hello endpoint" - {
Get("/hello") ~> route ~> check {
"should return status 200" in {
status should be(StatusCodes.OK)
}
"should return a response body of 'world'" in {
responseAs[String] should be("world")
}
//more tests go here
}
}
}
这与错误
java.lang.RuntimeException: This value is only available inside of a `check` construct!
问题在于check
块内部的嵌套测试 - 出于某种原因,像status
和responseAs
这样的值只能在该块内的顶层使用。 我可以通过将我感兴趣的值保存到局部变量顶层来避免这种错误,但是如果例如响应解析失败,那么这很尴尬,并且能够使测试框架崩溃。
有没有办法解决这个问题,而不是将所有的断言都放入单个测试中,或者对每个测试都提出新的请求?
链接地址: http://www.djcxy.com/p/65693.html