我需要在Rest Assured帖子中发送视频文件和JSON对象。

结构如下:



所以我确实喜欢以下

代码:

given()
                        .header("Accept", "application/json")
                        .header(auth)
                        .config(rConfig)
                        .body(body)
                        .multiPart("sample[video_file]", new File("path"), "video/mp4")
                        .formParam("sample[name]", "Video Upload")
                        .formParam("sample[kind]", "upload")
                        .log().all().
                        expect()
                        .statusCode(expectedStatusCode)
                        .post(url);

我在Rest Assured中使用multipart时无法使用application/JSON。我以参数形式将值明确地硬编码,并以多部分的形式发送媒体文件,现在它可以正常工作了。

如何在单个内部对象中发送所有表单参数数据。

最佳答案

您可以使用RequestSpecBuilder做到这一点。它支持所有请求参数,您可以轻松创建多部分请求。

示例代码取自https://github.com/rest-assured/rest-assured/wiki/Usage

RequestSpecBuilder builder = new RequestSpecBuilder();
builder.addParam("parameter1", "parameterValue");
builder.addHeader("header1", "headerValue");
RequestSpecification requestSpec = builder.build();

given().
        spec(requestSpec).
        param("parameter2", "paramValue").
when().
        get("/something").
then().
        body("x.y.z", equalTo("something"));

09-11 20:28