ActiveWeb:测试JSON响应属性和值

时间:2018-09-26 15:22:48

标签: activeweb

测试JSON响应的首选方法是什么,尤其是其中存在的属性和值?控制器的正确类型是:IntegrationSpecControllerSpecAppIntegrationSpec?我在相应的Testing section中找不到正确的响应。谢谢。

1 个答案:

答案 0 :(得分:1)

在这个示例项目中有一个很好的例子: https://github.com/javalite/activeweb-rest/blob/27687e26f5476734b867d01f38b2575c6de3f3c9/src/test/java/app/controllers/PeopleControllerSpec.java#L57

public void shouldCreateNewPeopleWithAddresses(){

        String json = Util.readResource("/people.json");
        request().content(json.getBytes()).contentType("application/json").post("create"); // <--- need to call "create" according to REST routing

        Map response = JsonHelper.toMap(responseContent());

        the(response.get("code")).shouldBeEqual(200);
        the(response.get("message")).shouldBeEqual("successfully created people and addresses");
}

基本上,您会得到一个responseContent()作为String,然后您可以使用它进行任何操作。规格的超类无关。