aboutsummaryrefslogtreecommitdiffstats
path: root/test/csit/tests/multicloud-vmware/provision/sanity_test_vio.robot
diff options
context:
space:
mode:
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.robot22
1 files changed, 0 insertions, 22 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
deleted file mode 100644
index d353f1da0..000000000
--- a/test/csit/tests/multicloud-vmware/provision/sanity_test_vio.robot
+++ /dev/null
@@ -1,22 +0,0 @@
-*** 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