aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorGary Wu <gary.i.wu@huawei.com>2018-10-22 19:49:16 +0000
committerGerrit Code Review <gerrit@onap.org>2018-10-22 19:49:16 +0000
commit5d59d1bf48fa2f0fbd433e8b25a207d62ddf8d22 (patch)
tree709a015444eaa3e2d59ab844bdd26ed1089271fd /tests
parentc7abba816ad7d702a9e01e9286e7661cb13fe11f (diff)
parent3e1fff52daaa0c2213864dcde7b1e276c10a72c7 (diff)
Merge "Add CSIT job for azure plugin"
Diffstat (limited to 'tests')
-rw-r--r--tests/multicloud-azure/provision/sanity_test_multicloud.robot22
1 files changed, 22 insertions, 0 deletions
diff --git a/tests/multicloud-azure/provision/sanity_test_multicloud.robot b/tests/multicloud-azure/provision/sanity_test_multicloud.robot
new file mode 100644
index 00000000..7cdd70f0
--- /dev/null
+++ b/tests/multicloud-azure/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_ocata_url} /api/multicloud-azure/v0/swagger.json
+
+
+*** Test Cases ***
+OcataSwaggerTest
+ [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_ocata_url}
+ ${response_code}= Convert To String ${resp.status_code}
+ List Should Contain Value ${return_ok_list} ${response_code}
+ ${response_json} json.loads ${resp.content}
+ ${swagger_version}= Convert To String ${response_json['swagger']}
+ Should Be Equal ${swagger_version} 2.0