gpt4 book ai didi

java - 如何从 org.springframework.test.web.servlet.ResultActions 中提取显式内容

转载 作者:行者123 更新时间:2023-11-30 03:07:07 25 4
gpt4 key购买 nike

我正在通过样本 from here 编写测试。该测试旨在检查 root 的用户名是否等于数据库中的用户名,如下所示:

import static org.junit.Assert.*;
import static org.hamcrest.Matchers.hasSize;
import static org.hamcrest.Matchers.is;
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get;
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.post;
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.*;
import static org.springframework.test.web.servlet.setup.MockMvcBuilders.webAppContextSetup;

...

@Test
public void rootUserPresent() throws Exception {

ResultActions result = mockMvc.perform(get("/user/root"));

result
.andExpect(status().isOk())
.andExpect(content().contentType(contentType))
.andExpect(jsonPath("$.screenName", is(userRepository.getRootUser().getScreenName())))
;

}

首先我编写了这个测试,它导致了 ClassNotFound 异常

java.lang.NoClassDefFoundError: com/jayway/jsonpath/InvalidPathException

所以,我认为系统希望向我报告错误的路径,但找不到异常的类。所以,我包括了com.jayway.jsonpath:json-path-assert:1.1.0依赖性。之后测试才开始通过。

所以,我开始怀疑,测试结果是错误的阳性。

我的问题是:如何使用我这里拥有的相同工具显式提取 JSON 值,并从字面上检查它的值?

PS

JSON 结果如下:

{
id: 1,
roles: [
{
name: "USER"
},
{
name: "ADMIN"
}
],
firstName: null,
lastName: null,
screenName: "root",
}

最佳答案

我做了这样的事情:

// wrapper to extract result from the response
AssignmentResult result = new AssignmentResult();

// perform request
mockMvc.perform(
get("/myApiEndpoint")
.contentType(MediaType.APPLICATION_JSON)
.accept(MediaType.APPLICATION_JSON)
)
.andExpect(status().isOk())
.andExpect(jsonPath("$object.parent.id", is(parent.getId())))
.andDo(assignTo("$object.id", result)); // (**)

Integer objectIdFromResult = (Integer)result.getValue(); // (++)

assignTo 是我编写的自定义 ResultHandler:

/**
* Spring ResultHandler for MVC testing, allows the assignment of a JSON path to a variable.
*/
public class AssignmentResultHandler implements ResultHandler {

private final JsonPath jsonPath;
private final AssignmentResult assignmentResult;

public static ResultHandler assignTo(String jsonPath, AssignmentResult assignmentResult) {
return new AssignmentResultHandler(JsonPath.compile(jsonPath), assignmentResult);
}

protected AssignmentResultHandler(JsonPath jsonPath, AssignmentResult assignmentResult) {
this.jsonPath = jsonPath;
this.assignmentResult = assignmentResult;
}

@Override
public void handle(MvcResult result) throws Exception {
String resultString = result.getResponse().getContentAsString();
assignmentResult.setValue(jsonPath.read(resultString));
}
}

创建新的 AssignmentResultHandler 时,您传入一个 AssignmentResult 包装器 (**)。当 AssignmentResultHandler 被触发(handle 运行)时,它设置AssignmentResult 的值。请求完成后,您可以从那里解开值 (++)。

这是AssignmentResult 包装器:

public class AssignmentResult {
private Object value;

/**
* Set the result value
* @param value result value
*/
protected void setValue(Object value) {
this.value = value;
}

/**
* Returns the result value
* @return the result value
*/
public Object getValue() {
return this.value;
}
}

关于java - 如何从 org.springframework.test.web.servlet.ResultActions 中提取显式内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34479906/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com