1

我想用一个假服务器测试一个 WS 客户端,就像它在 Play 2.4 文档中解释的那样:https ://www.playframework.com/documentation/2.4.x/ScalaTestingWebServiceClients

但我正在使用 Scaldi 进行 DI,我无法调整 Play 的文档代码以使用 Scaldi。

有人能帮我吗 ?

适应的代码主要是这样的(来自 Play doc):

"GitHubClient" should {
  "get all repositories" in {

    Server.withRouter() {
      case GET(p"/repositories") => Action {
        Results.Ok(Json.arr(Json.obj("full_name" -> "octocat/Hello-World")))
      }
    } { implicit port =>
      WsTestClient.withClient { client =>
        val result = Await.result(
          new GitHubClient(client, "").repositories(), 10.seconds)
        result must_== Seq("octocat/Hello-World")
      }
    }
  }
}
4

2 回答 2

3

可以在此处找到集成测试的一般方法示例:

https://github.com/scaldi/scaldi-play-example/blob/master/test/IntegrationSpec.scala#L22

但它不是直接等价的,因为它使用HttpUnit而不是WSClient. 更精确的等价物是这样的:

import scaldi.play.ScaldiApplicationBuilder._
import scaldi.Injectable._

val fakeRotes = FakeRouterModule {
  case ("GET", "/repositories") => Action {
    Results.Ok(Json.arr(Json.obj("full_name" -> "octocat/Hello-World")))
  }
}

withScaldiInj(modules = fakeRotes :: Nil) { implicit inj ⇒
  val client = inject [WSClient]

  withTestServer(inject [Application]) { port ⇒
    val result = Await.result(
      new GitHubClient(client, s"http://localhost:$port").repositories(), 10.seconds)

    result must_== Seq("octocat/Hello-World")
  }
}

它使用 a WSClient,就像在您的示例中一样。不同之处在于注入ApplicationWSClient测试不依赖于全局状态或工厂。

为了使用这个例子,你还需要这个小的帮助函数,它基于注入的创建一个测试服务器Application

def withTestServer[T](application: Application, config: ServerConfig = ServerConfig(port = Some(0), mode = Mode.Test))(block: Port => T)(implicit provider: ServerProvider): T = {
  val server = provider.createServer(config, application)

  try {
    block(new Port((server.httpPort orElse server.httpsPort).get))
  } finally {
    server.stop()
  }
}

Play 已经提供了一些开箱即用的帮助函数来创建测试服务器,但其中大多数要么重新初始化依赖 Guice 的应用程序。那是因为您需要创建自己的简化版本。这个函数可能是包含在 scaldi-play 中的一个很好的候选者。

于 2016-01-14T18:08:48.803 回答
2

朱尔斯,

迟到的回应,但我自己刚刚经历了这个。以下是我使用 wsUrl 使用 ScalaTest(Play Spec)、测试服务器和 WSTestClient 进行测试的方法。这是玩 2.5.4。项目在这里:reactive-rest-mongo

class UsersSpec extends PlaySpec with Injectable with OneServerPerSuite {

  implicit override lazy val app = new ScaldiApplicationBuilder()
    .build()

  "User APIs" must {

    "not find a user that has not been created" in {
      val response = Await.result(wsUrl("/users/1").get, Duration.Inf)
      response.status mustBe NOT_FOUND
      response.header(CONTENT_TYPE) mustBe None
      response.bodyAsBytes.length mustBe 0
    }
  }
}
于 2016-08-19T15:01:06.043 回答