最好的方法是验证 json-schema 匹配。
首先,您需要将此依赖项添加到您的 pom.xml
<!-- https://mvnrepository.com/artifact/io.rest-assured/json-schema-validator -->
<dependency>
<groupId>io.rest-assured</groupId>
<artifactId>json-schema-validator</artifactId>
<version>3.3.0</version>
<scope>test</scope>
</dependency>
然后你需要创建一个文件 json-schema-your-name.json ,其结构如下:
{
"type": "object",
"properties": {
"data": {
"type": "array",
"items": {
"type": "object",
"properties": {
"flow_id": {
"type": "string",
"minLength": 36,
"maxLength": 36
},
"flow_org_id": {
"type": "string"
}
},
"required": [ "flow_id", "flow_org_id" ]
}
}
}
}
有一堆基于 json 生成模式的服务 - 例如 -这个
模式文件准备好后,您需要以字符串格式提供文件的路径 - 例如 -
private static final String GET_SUBSCRIPTION_JSON_SCHEMA_PATH =
"json/schemas/GetSubscriptionByIdSchema.json";
并调用matchesJsonSchemaInClasspath("your/path/to/json-schema")
方法进行断言。
升级版:
所以流程基本上是这样的:
- 您在项目目录中的某处有一个模式文件(并且知道它的路径)
- 您在某些测试方法中达到了终点
- 您将收到的响应与架构文件匹配
实际上,它将如下所示:
@Test
public void someTestMethod() {
Response responseToValidate = // here you should assign and store returned response
responseToValidate
.assertThat()
.statusCode(200)
.body("json.path.to.needed.key", equalTo("123"))
.body(matchesJsonSchemaInClasspath("path/to/your/schema/in/string/format")); }