14

我正在使用 Rest Assured 测试 REST api。尝试使用 url 和正文内容中的参数进行 POST 时遇到错误。这在手动测试时可以正常工作。从 url 中删除参数不是一个选项

测试代码:

String endpoint = http://localhost:8080/x/y/z/id?custom=test;
String body = "[{\"boolField\":true,\"intField\":991},
                {\"boolField\":false,\"intField\":998}]";
expect().spec(OK).given().body(body).post(endpoint);

运行时会引发以下错误

You can either send parameters OR body content in the POST, not both!

java.lang.IllegalStateException: You can either send parameters OR body content in the POST, not both!
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
at org.codehaus.groovy.reflection.CachedConstructor.invoke(CachedConstructor.java:77)
at org.codehaus.groovy.runtime.callsite.ConstructorSite$ConstructorSiteNoUnwrapNoCoerce.callConstructor(ConstructorSite.java:102)
at org.codehaus.groovy.runtime.callsite.AbstractCallSite.callConstructor(AbstractCallSite.java:198)
at com.jayway.restassured.internal.RequestSpecificationImpl.sendRequest(RequestSpecificationImpl.groovy:282)
at com.jayway.restassured.internal.RequestSpecificationImpl.this$2$sendRequest(RequestSpecificationImpl.groovy)
at com.jayway.restassured.internal.RequestSpecificationImpl$this$2$sendRequest.callCurrent(Unknown Source)
at com.jayway.restassured.internal.RequestSpecificationImpl.post(RequestSpecificationImpl.groovy:83)
...

为什么 Rest Assured 不允许在 POST 中同时使用参数和正文内容?

4

4 回答 4

35

您需要将参数指定为 queryParameter 而不是“param”或​​“parameter”。POST 的参数将默认为在请求正文中发送的表单参数。

IE

given().
        queryParam("name, "value").
        body(..).
when().
        post(..);
于 2012-08-28T06:26:49.537 回答
0

我对rest-assured不太熟悉,但是您应该能够将这些参数移动到body上。这就是典型的 POST 参数的工作方式。将参数作为请求 URL 的一部分通常仅用于 GET。也许尝试将“custom = test”作为正文的第一行?

于 2012-08-23T23:25:42.673 回答
0

您必须将参数指定为 queryParam。这是示例:

RequestSpecification request=new RequestSpecBuilder().build();
ResponseSpecification response=new ResponseSpecBuilder().build();
@Test
public void test(){
  User user=new User();
  given()
  .spec(request)
  .queryParam(query_param1_name, query_param1_name_value)
  .queryParam(query_param2_name, query_param2_name_value)
  .contentType(ContentType.JSON)
  .body(user)
  .post(API_ENDPOINT)
  .then()
  .statusCode(200).log().all();

}

于 2017-03-28T06:34:00.147 回答
0

在我看来没有通过

.header("Content-Type", "application/json") 

在正文之后,您的呼叫将产生状态码 415

于 2021-10-21T18:25:47.490 回答