Move CSIT to integration/csit repo
[integration/csit.git] / tests / multicloud-vmware / provision / sanity_test_vio.robot
diff --git a/tests/multicloud-vmware/provision/sanity_test_vio.robot b/tests/multicloud-vmware/provision/sanity_test_vio.robot
new file mode 100644 (file)
index 0000000..d353f1d
--- /dev/null
@@ -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