在Test中迭代所有Play Framework路由

时间:2015-05-05 06:40:08

标签: java routes integration-testing playframework-2.3

有没有办法在routes文件中迭代所有描述的服务?需要URL和HTTP方法。

我需要此功能才能运行某些集成测试。

我正在使用Play for Java。

1 个答案:

答案 0 :(得分:3)

不容易。我不久前设法破解了它(没有scala专有技术)。我会发布那些可能有用的代码。

public static List<String[]> parseRoutes() {
    scala.Option<play.core.Router.Routes> option = Play.application().getWrappedApplication().routes();
    if (option.isDefined()) {
        play.core.Router.Routes routes = option.get();
        scala.collection.Seq<scala.Tuple3<String, String, String>> doc = routes.documentation();
        scala.collection.Iterator<scala.Tuple3<String, String, String>> it = doc.iterator();

        List<String[]> listOfRoutes = new ArrayList<String[]>();

        while(it.hasNext()) {
            scala.Tuple3<String, String, String> tuple = it.next();
            //tuple._1() is the method and tuple._2() the url... tuple._3() is the controller name
            String[] route = {tuple._1(), tuple._2()};
            listOfRoutes.add(route);
            Logger.debug("route -> " + Arrays.toString(route));  
        }
        return listOfRoutes;
    }
    return null;
}

不要担心.iterator()显示The method iterator() is ambiguous for the type Seq<Tuple3<String,String,String>>。它在游戏中编译得很好。