我想在API Body中为PUT请求发送以下 form-data :
如何使用REST-Assured
执行此操作附件是截图 Form-Data Image
答案 0 :(得分:4)
您需要设置所需的内容类型,即“multipart / form-data”,并将多部分请求规范添加到请求中。 例如
given()
.contentType("multipart/form-data")
.multiPart("file", "filename")
.multiPart("key", "value")
.when()
.put(endpoint);
答案 1 :(得分:1)
大多数时候,我们需要将图像转换为readFileToByteArray。
String file = "/Users/Downloads/file.png";
byte[] fileContent = FileUtils.readFileToByteArray(new File(file));
RestAssured.baseURI = "Enter Base uri";
Response res = given()
.header("Accept", "application/json")
.header("Content-type", "multipart/form-data")
.formParam("token", "08bc73deff88dd3d44bb1bf65b55d4ff")
.multiPart("asset", "image/png", fileContent).when()
.post("api/endpoint");
System.out.println(res.getStatusCode());
System.out.println(res.jsonPath().prettify());
请确保图像的哑剧类型(在示例中指定为“ image / png”)。
答案 2 :(得分:0)
如果要上传文件,请确保包括文件对象。它应该看起来像这样:
given()
.contentType("multipart/form-data")
.multiPart("id", "123")
.multiPart("file", new File("./src/test/resources/test-file.txt"))
.post("api/endpoint")
.then()
...