Как отправить запрос, когда у меня есть параметры в массиве? - PullRequest
0 голосов
/ 15 марта 2019

У меня есть метод post в Postman, который выглядит следующим образом:

{
    "name": "Produkt 1",
    "description": "Opis produktu",
    "price": 2500,
    "tax": 23.0,
    "currency": "PLN",
    "producer": "Marka",
    "quantity": 100,
    "quantity_type": "unit",
    "producer_code": "12345",
    "ean_code": "9638-5074",
    "is_active": 1,
    "category": "lorem-ipsum",
    "variant_group_id": "",
    "attributes": [
        {
            "attribute": "laudantium",
            "value": "1",
            "is_variant": "1"
        },
        {
            "attribute": "brand",
            "value": "Brand Y"
        }
    ]
}

Попробуйте отправить этот метод с помощью Rest Assured, но я все время получаю ответ, что мне нужно отправить атрибуты (Status422).

Вот мой код RestAssured:

response =given()
                .log()
                .params()
                .request()
                .header("Accept","application/json")
                .header("Content-Type", "application/json")
                .queryParam("name",args[0])
                .queryParam("description",args[1])
                .queryParam("price",args[2])
                .queryParam("tax",args[3])
                .queryParam("currency",args[4])
                .queryParam("producer",args[5])
                .queryParam("quantity",args[6])
                .queryParam("quantity_type",args[7])
                .queryParam("producer_code",args[8])
                .queryParam("ean_code",args[9])
                .queryParam("category",args[10])
                .queryParam("variant_group_id",args[11])
                .queryParam("is_active",args[12])
                .queryParams("attributes.attribute[0]","laudantium")
                .queryParam("attributes.value[0]","1")
                .queryParam(".is_variant[0]","1")
                .post(HOST+"/products");

Как отправить действительные параметры атрибутов?Я уверен, что существует проблема с нотацией queryParam ..

1 Ответ

1 голос
/ 15 марта 2019

Я понял это благодаря вам, ребята. Мне пришлось изменить тело метода следующим образом:

    JSONObject childJSON = new JSONObject();
    childJSON.put("attribute", "sit-omnis");
    childJSON.put("value",value);
    childJSON.put("is_variant",is_variant);

    JSONArray array = new JSONArray();
    array.add(childJSON);

    JSONObject requestParams = new JSONObject();
    requestParams.put("name",args[0]);
    requestParams.put("description",args[1]);
    requestParams.put("price",args[2]);
    requestParams.put("tax",args[3]);
    requestParams.put("currency","PLN");
    requestParams.put("producer",args[4]);
    requestParams.put("quantity",args[5]);
    requestParams.put("quantity_type","unit");
    requestParams.put("producer_code",args[6]);
    requestParams.put("ean_code","9638-5074");
    requestParams.put("is_active",isActive);
    requestParams.put("category",args[7]);
    requestParams.put("variant_group_id",args[8]);
    requestParams.put("attributes",array);

    response =given()
            .log()
            .params()
            .request()
            .header("Accept","application/json")
            .header("Content-Type", "application/json")
            .body(requestParams.toJSONString())
            .post(INEGRATOR_HOST+"/products");
    checkStatusAndShowBody(codeStatus);

Сначала я создаю все необходимые параметры в виде JSON, а затем преобразую 3 параметра (сверху) в массив JSON, потому что «атрибуты» параметров - это массив. Чем я просто положил переменную массив, как значение «атрибуты», и это работает.

Мои методы должны быть аутентифицированы HMAC-512, но я пропустил это в этом выпуске, потому что я думаю, что это было не так важно. Во всяком случае, я получил код 200 и хороший ответ. Спасибо ребята!

...