Godaddy API GET все домены и автоматизация печати, печать ноль - PullRequest
0 голосов
/ 15 мая 2018

В настоящее время пытаюсь автоматизировать GET для всех моих доменов Godaddy, используя их API (кстати, я использую IntelliJ ultimate).В настоящее время я получаю ответ, и кажется, что все работает нормально, за исключением того, что когда я пытаюсь распечатать, например, все имена доменов, он просто выводит «Null».Ниже мой код:

public class GoDaddyGET {


    Properties prop = new Properties();


    public void getData() throws IOException {

        FileInputStream fis = new FileInputStream("C:\\Users\\nerdi\\FableMedia\\src\\main\\java\\files\\env.properties");
        prop.load(fis);

        //prop.getProperty("HOST");
    }


    public void Test(){

        // write your code here

        //BaseURL or Host
        RestAssured.baseURI = prop.getProperty("GODADDYHOST");

        Response res = given().
                header("Authorization", prop.getProperty("GODADDYKEY")).log().all().
                header("Content-Type", "application/json").
                header("Accept", "application/json").
                param("includes", "contacts").
                when().
                get(Resources.godaddyGetData()).
                then().assertThat().statusCode(200).
                and().
                contentType(ContentType.JSON).
                and().
                body("array[0].domain",equalTo("SENSITIVE INFORMATION")).
                and().
                body("array[0].domainId",equalTo("SENSITIVE INFORMATION")).
                and().
                header("Server", "SENSITIVE INFORMATION").log().body().

                extract().response();


        JsonPath js = ReusableMethods.rawToJson(res);

        int count = js.get("array.size()");

        for (int i = 0; i < count; i++){
            String name = js.get("array["+i+"].domain");
            System.out.println(name);
        }
        System.out.println(count);

    }
}

И ниже мой вывод терминала:

Request method: GET
Request URI:    https://api.godaddy.com/v1/domains?includes=contacts
Proxy:          <none>
Request params: includes=contacts
Query params:   <none>
Form params:    <none>
Path params:    <none>
Headers:        Authorization=sso-key APIKEY:APISECRET
                Accept=application/json
                Content-Type=application/json; charset=UTF-8
Cookies:        <none>
Multiparts:     <none>
Body:           <none>
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
null
23

===============================================
Default Suite
Total tests run: 1, Failures: 0, Skips: 0
===============================================


Process finished with exit code 0

Я сделал это точно так же, как с Google Maps, где он работает, как и предполагалось.

ОБНОВЛЕНИЕ 1

Ниже приведен фрагмент ответа Json:

[ { "domainId": SENSITIVE INFORMATION, "domain": "SENSITIVE INFORMATION", "status": "ACTIVE", "expires": "2018-08-13T06:37:31Z", "expirationProtected": false, "holdRegistrar": false, "locked": true, "privacy": true, "renewAuto": true, "renewable": true, "transferProtected": false, "createdAt": "2015-08-13T06:37:31Z" }, 

Невозможно вставить всю вещь здесь, потому что она слишком длинная.Однако в основном это еще 22 раза (всего 23), но обв.с разной информацией.

1 Ответ

0 голосов
/ 15 мая 2018

Надеюсь, это сработает.

    DocumentContext js = JsonPath.parse(res);
    JSONArray domains = js.read("$..domain");
    for(int i = 0; i < domains.size(); i++)
        System.out.println(domains.get(i)); 

Возьмите необработанный объект ответа res и создайте DocumentContext

DocumentContext js = JsonPath.parse(res);

Считайте все домены в JSONArray

JSONArray domains = js.read("$..domain");

Затем переберите

for(int i = 0; i < domains.size(); i++)
    System.out.println(domains.get(i));
...