如何在 Rest Assured 中将响应转换为 Java 列表?
我们可以在 Rest Assured 中将响应转换为 Java 列表。当我们有 JSON 数组响应时,可以实现这一点。要将 JSON 数组转换为列表,我们需要使用以下方法:as.(List.class)。
JSON 数组响应转换为列表后,我们需要将其转换为 Map,并在键值对中获取响应中的所有值。我们首先通过 Postman 在模拟的 API URL 上发送 GET 请求,并遍历 JSON 响应数组。
示例
代码实现
import java.util.List; import org.testng.annotations.Test; import io.restassured.RestAssured; public class NewTest { @Test public void convertResponsetoList() { //base URL RestAssured.baseURI = "https://run.mocky.io/v3"; //convert JSON Response array to List List<Object> l = RestAssured //GET request on Mock URL .get("/1bb42856-4583-4c18-91ed-b9a6ab19efb4") .as(List.class); //size of List int s = l.size(); System.out.println("List size is: " + s); } }
输出
广告