diff options
author | Haibin Huang <haibin.huang@intel.com> | 2019-01-25 11:16:20 +0800 |
---|---|---|
committer | Haibin Huang <haibin.huang@intel.com> | 2019-01-25 11:17:32 +0800 |
commit | b0caf56d3480a3affd72ad0288d7a640b122ecb1 (patch) | |
tree | 952eaf09e9c1a8066c37551a794c77fd39b42898 /tests/multicloud-starlingx/provision/sanity_test_multicloud.robot | |
parent | eb87542dbdaf427039eb6e963ee78bbd07ce551b (diff) |
Add multicloud starlingx plugin support
Change-Id: Id933b9cf742aa1a4b77db4b1bbba81981e373b5f
Issue-ID: MULTICLOUD-428
Signed-off-by: Haibin Huang <haibin.huang@intel.com>
Diffstat (limited to 'tests/multicloud-starlingx/provision/sanity_test_multicloud.robot')
-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 |