diff options
author | liangke <lokyse@163.com> | 2017-09-26 21:15:04 +0800 |
---|---|---|
committer | liangke <lokyse@163.com> | 2017-09-27 14:01:41 +0800 |
commit | 8bdde5264235b698c7fe3f7bf68660efea6c41bb (patch) | |
tree | 02d29c1d7e8211761e84b74498428cc10e75f9f1 /test/csit/tests/multicloud-vmware/provision/sanity_test_vio.robot | |
parent | 91a31997cf6e691f141bef5860dfb126c64b3aa7 (diff) |
Add csit for multivim-vmware
Change-Id: I3ee2915a672580ffaf8e547fb2b1c7134d0cf597
Issue-Id: MULTICLOUD-49
Signed-off-by: liangke <lokyse@163.com>
Diffstat (limited to 'test/csit/tests/multicloud-vmware/provision/sanity_test_vio.robot')
-rw-r--r-- | test/csit/tests/multicloud-vmware/provision/sanity_test_vio.robot | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/test/csit/tests/multicloud-vmware/provision/sanity_test_vio.robot b/test/csit/tests/multicloud-vmware/provision/sanity_test_vio.robot new file mode 100644 index 000000000..d353f1da0 --- /dev/null +++ b/test/csit/tests/multicloud-vmware/provision/sanity_test_vio.robot @@ -0,0 +1,22 @@ +*** settings *** +Library Collections +Library RequestsLibrary +Library OperatingSystem +Library json + +*** Variables *** +@{return_ok_list}= 200 201 202 +${queryswagger_vio_url} /api/multicloud-vio/v0/swagger.json + + +*** Test Cases *** +VioSwaggerTest + [Documentation] query swagger info rest test + ${headers} Create Dictionary Content-Type=application/json Accept=application/json + Create Session web_session http://${VIO_IP}:9004 headers=${headers} + ${resp}= Get Request web_session ${queryswagger_vio_url} + ${responese_code}= Convert To String ${resp.status_code} + List Should Contain Value ${return_ok_list} ${responese_code} + ${response_json} json.loads ${resp.content} + ${swagger_version}= Convert To String ${response_json['swagger']} + Should Be Equal ${swagger_version} 2.0 |