diff options
author | Gary Wu <gary.i.wu@huawei.com> | 2019-01-31 05:40:23 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-01-31 05:40:23 +0000 |
commit | 046f6921d596b954da5f37b2a05e0a2f32f7fd4b (patch) | |
tree | a52c01606ec715111b29d5bc819f4caec81e57ae /tests | |
parent | c2ab2dc8d886ce2369c012ce0e3ef3c214a9662a (diff) | |
parent | b0caf56d3480a3affd72ad0288d7a640b122ecb1 (diff) |
Merge "Add multicloud starlingx plugin support"
Diffstat (limited to 'tests')
-rw-r--r-- | tests/multicloud-starlingx/provision/sanity_test_multicloud.robot | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/tests/multicloud-starlingx/provision/sanity_test_multicloud.robot b/tests/multicloud-starlingx/provision/sanity_test_multicloud.robot new file mode 100644 index 00000000..ba70776e --- /dev/null +++ b/tests/multicloud-starlingx/provision/sanity_test_multicloud.robot @@ -0,0 +1,22 @@ +*** settings *** +Library Collections +Library RequestsLibrary +Library OperatingSystem +Library json + +*** Variables *** +@{return_ok_list}= 200 201 202 +${queryswagger_starlingx_url} /api/multicloud-starlingx/v0/swagger.json + + +*** Test Cases *** +TitaniumCloudSwaggerTest + [Documentation] query swagger info rest test + ${headers} Create Dictionary Content-Type=application/json Accept=application/json + Create Session web_session http://${SERVICE_IP}:${SERVICE_PORT} headers=${headers} + ${resp}= Get Request web_session ${queryswagger_starlingx_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 |