aboutsummaryrefslogtreecommitdiffstats
path: root/tests/vfc/nfvo-resmanagement/test.robot
diff options
context:
space:
mode:
authordyh <dengyuanhong@chinamobile.com>2020-07-21 11:13:13 +0800
committerdyh <dengyuanhong@chinamobile.com>2020-07-21 11:13:20 +0800
commit4f2dde707f9baed3641b7aec48b7d08f13b025e4 (patch)
tree2a5e13b31164151ceaf0651510cb2a5a454581ed /tests/vfc/nfvo-resmanagement/test.robot
parent11595fa9fe47f03ec0784569f5a01240cc6a9fe5 (diff)
Remove csit related to components which are not in Guilin Release
Issue-ID: VFC-1711 Change-Id: I470ace63ed193dc5806368405e5e72c8479fc0d8 Signed-off-by: dyh <dengyuanhong@chinamobile.com>
Diffstat (limited to 'tests/vfc/nfvo-resmanagement/test.robot')
-rw-r--r--tests/vfc/nfvo-resmanagement/test.robot24
1 files changed, 0 insertions, 24 deletions
diff --git a/tests/vfc/nfvo-resmanagement/test.robot b/tests/vfc/nfvo-resmanagement/test.robot
deleted file mode 100644
index 2f247553..00000000
--- a/tests/vfc/nfvo-resmanagement/test.robot
+++ /dev/null
@@ -1,24 +0,0 @@
-*** settings ***
-Resource ../../common.robot
-Library Collections
-Library RequestsLibrary
-Library simplejson
-Library OperatingSystem
-Library json
-Library HttpLibrary.HTTP
-
-*** Variables ***
-@{return_ok_list}= 200 201 202
-${queryswagger_url} /api/resmgr/v1/swagger.json
-
-*** Test Cases ***
-SwaggerFuncTest
- [Documentation] query swagger info rest test
- ${headers} Create Dictionary Content-Type=application/json Accept=application/json
- Create Session web_session http://${RESMGR_IP}:8480 headers=${headers}
- ${resp}= Get Request web_session ${queryswagger_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 \ No newline at end of file