rest-Assured-解析json错误-需使用预定义的解析器解析
Posted 木木荣要
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了rest-Assured-解析json错误-需使用预定义的解析器解析相关的知识,希望对你有一定的参考价值。
报错信息:
java.lang.IllegalStateException: Expected response body to be verified as JSON, html or XML but content-type ‘text/plain‘ is not supported out of the box.
Try registering a custom parser using:
RestAssured.registerParser("text/plain", <parser type>);
解决方案:
1.使用预定义解析器:RestAssured.registerParser("text/plain", Parser.JSON);
public static void registerParser(String contentType, Parser parser)
使用预定义的解析器注册要解析的自定义内容类型。例如,您希望使用XML解析器解析内容类型应用程序/自定义,以便能够使用XML点符号来验证响应:
get(“/ x”)。then()。assertThat()。body(“document.child”,equalsTo(“something”))..由于默认情况下,由于应用程序/自定义未被注册为由XML解析器处理,因此您需要在发出请求之前明确地告诉REST Assured使用此解析器:
RestAssured.registerParser(“application / custom,Parser.XML”);
- 参数:
contentType
- 要注册的内容类型parser
- 验证响应时使用的解析器。
以上是关于rest-Assured-解析json错误-需使用预定义的解析器解析的主要内容,如果未能解决你的问题,请参考以下文章
rest-assured之Schema validation(包括JSON Schema validation及Xml Schema validation)
rest-assured的对象映射(Object Mapping)
导入 io.restassured.RestAssured 无法解析