如何在 Rest Assured 中处理文本格式的响应?
我们可以使用 Rest Assured 来处理文本格式的响应。为此,我们需要配置 Rest Assured,使其能够获取 text/plain 类型的响应。我们需要使用 registerParser 方法,该方法是 RestAssured 类的一部分。然后将 text/plain 和 Parser.Text 作为参数传递给 registerParser 方法。
我们首先将通过 Postman 在模拟 API URL 上发送 GET 请求,然后观察其响应。
使用 Rest Assured,我们将获取文本格式的响应正文 Tutorialspoint。
示例
代码实现
import org.testng.annotations.Test; import static io.restassured.RestAssured.given; import io.restassured.RestAssured; import io.restassured.parsing.Parser; import io.restassured.response.Response; public class NewTest { @Test public void getResponsePlainTxt() { //base URL RestAssured.baseURI = "https://run.mocky.io/v3"; RestAssured.basePath ="/11ecb510-6bce-4d4f-97fd-87e4b272ca2c"; //to handle plain/text response RestAssured.registerParser("text/plain", Parser.TEXT); //obtain response Response r= given() .when().get(); //obtain response as string String t =r.asString(); System.out.println(t); } }
输出
广告