使用Play 2.2.3框架,假设我的路线文件中有这样的路线:
GET /event controllers.Event.events
我如何以编程方式获取“/ event”知道我想要达到的方法,在本例中为“controllers.Authentication.authenticate”?
我需要它用于测试目的,因为我希望有更好的测试等待不是路由本身,而是真正调用的控制器方法。所以也许还有另一个解决方案,而不是像现在这样以这种方式测试路线:
//Login with good password and login
val Some(loginResult) = route(FakeRequest(POST, "/login").withFormUrlEncodedBody(
("email", email)
, ("password", password)))
status(loginResult)(10.seconds) mustBe 303
redirectLocation(loginResult).get mustBe "/event"
答案 0 :(得分:25)
以这种方式构建反向路线:
[full package name].routes.[controller].[method]
在你的例子中:
controllers.routes.Authentication.authenticate
controllers.routes.Events.events
但是说你打破了controllers.auth
和controllers.content
之后的包裹,那么它们会是:
controllers.auth.routes.Authentication.authenticate
controllers.content.routes.Events.events
反向路由返回Call
,其中包含HTTP方法和URI。在测试中,您可以使用FakeRequest
构建Call
:
FakeRequest(controllers.routes.Authentication.authenticate)
您还可以使用它来测试重定向URI:
val call: Call = controllers.routes.Events.events
redirectLocation(loginResult) must beSome(call.url)