1

こんにちは、郵便配達員経由で API をテストしています。テストを自動化したいので、newman をダウンロードしました。郵便配達員で使用するリクエストがコレクションとしてエクスポートされ、newman 経由で 404 が返されます。明らかな理由で IP アドレスが変更されました。

{
"id": "11f345f7-9f12-58fb-099d-27f11233cee7",
"name": "GC",
"description": "",
"order": [
    "f7fe3f94-0dd2-6dba-05b9-29ae7e571ed9"
],
"folders": [],
"timestamp": 1446559540652,
"owner": "195242",
"remoteLink": "",
"public": false,
"requests": [
    {
        "id": "f7fe3f94-0dd2-6dba-05b9-29ae7e571ed9",
        "headers": "",
        "url": "http://218.24.201.144/cb/mobile/v1/residences/568288d0-71b6-11e5-ad9f-0242ac110908/lastAirQuality/rooms",
        "pathVariables": {},
        "preRequestScript": "",
        "method": "GET",
        "collectionId": "11f345f7-9f12-58fb-099d-27f11233cee7",
        "data": [],
        "dataMode": "params",
        "name": "http://218.24.201.144/cb/mobile/v1/residences/568288d0-71b6-11e5-ad9f-0242ac110908/lastAirQuality/rooms",
        "description": "",
        "descriptionFormat": "html",
        "time": 1446559548262,
        "version": 2,
        "responses": [],
        "tests": "",
        "currentHelper": "normal",
        "helperAttributes": {}
    }
]

}

これは私がnewmanで得た出力です

    $ newman -c GC.json.postman_collection

Iteration 1 of 1
404 218ms http://218.24.201.144/cb/mobile/v1/residences/568288d0-71b6-11e5-ad9f-0242ac110908/lastAirQuality/rooms http://218.24.201.144/cb/mobile/v1/residences/568288d0-71b6-11e5-ad9f-0242ac110908/lastAirQuality/rooms

Summary:

Parent                      Pass Count   FailCount
-------------------------------------------------------------
Collection GC                        0           0

Total

                             0           0
4

4 に答える 4

0

テストセットはありますか?

    var data = JSON.parse(responseBody);
    tests["Pass this case"] = data.id === 11f345f7-9f12-58fb-099d-27f11233cee7;
于 2015-11-07T01:25:47.513 に答える
0

テストする前に、json コレクションを作成Testsし、更新することを忘れないでください。

これをチェック#298

于 2015-11-25T09:12:37.250 に答える