如何在使用硒对RestAssured发布以下要求(How to Post the below req

2019-10-30 03:52发布

如何发布硒使用RestAssured下面的请求。

请求如下:

{
  "ShipmentID": "",
 "ShipmentNumber": "123455-6", 
 "Comments": "",
 "LineIDs": [
    {
  "ShipmentDID": "",  
  "AssetNum": "759585",
  "FileC": "",
  "SerialN": "",
  "LineID": "5",
  "Status": "Accept",
  "TransferCancelComment": ""
}

下面是我用的代码,但不知道应该怎么继续为“LineID的”,因为它有几个在它的属性。

@Test
 public void TransferIn() {

  RestAssured.baseURI="testurl.rest.com";
  RequestSpecification httpRequest = RestAssured.given();
  JSONObject requestparams=new JSONObject();
  try {
      requestparams.put("ShipmentID", "");
      requestparams.put("ShipmentNumber", "123455-6");
      requestparams.put("Comments", "");
      requestparams.put("LineIDs", "");

  }

Answer 1:

希望下面的代码将解决你的问题。

    @Test
    public void TransferIn() {
        RestAssured.baseURI="testurl.rest.com";
        RequestSpecification httpRequest = RestAssured.given();
        JSONObject requestparams = new JSONObject();
        JSONArray lineIdsArray = new JSONArray();
        JSONObject lineIdObject = new JSONObject();
        try {
            requestparams.put("ShipmentID", "");
            requestparams.put("ShipmentNumber", "123455-6");
            requestparams.put("Comments", "");

            lineIdObject.put("ShipmentDID", "");
            lineIdObject.put("AssetNum", "759585");
            lineIdObject.put("FileC", "");
            lineIdObject.put("SerialN", "");
            lineIdObject.put("LineID", "5");
            lineIdObject.put("Status", "Accept");
            lineIdObject.put("TransferCancelComment", "");
            lineIdsArray.put(lineIdObject);

            requestparams.put("LineIDs", lineIdsArray);
        } catch (JSONException e) {

        }
        System.out.println(requestparams);
}


Answer 2:

一个更好的办法可能是,从一个POJO /模型文件构建JSON,然后传递到测试。 由此,有意向的明确分离,并在未来,如果你想验证类型的任何回应,你可以简单地反序列化,并得到使用POJO的干将值。



Answer 3:

例如,如果你的JSON是

{
  "name":"Mohan",
  "age":21
}

你的POJO看起来像下面:

import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;

public class Example {

@SerializedName("name")
@Expose
private String name;
@SerializedName("age")
@Expose
private Integer age;

public String getName() {
return name;
}

public void setName(String name) {
this.name = name;
}

public Integer getAge() {
return age;
}

public void setAge(Integer age) {
this.age = age;
}

}

我使用从谷歌GSON这是序列化和反序列化库。 使用POJO构建您的有效载荷和传递作为参数传递给你的测试方法。 这将使你的代码的可读性,可维护性,可扩展....

这背后的想法是测试的目的不应该被污染,就会有不同的实体的责任明确分开。



文章来源: How to Post the below request using RestAssured in selenium