如何确保在运行测试时不会发出真正的 http 请求。
我很难找到这方面的文档。
这仅在 Play 2.3.x 中可用,但可以使用 MockWS 客户端:https ://github.com/leanovate/play-mockws
val ws = MockWS {
case (GET, "http://dns/url") => Action { Ok("http response") }
}
await(ws.url("http://dns/url").get()).body == "http response"
WS.url 是静态的。所以需要使用powermock来测试静态方法。