aboutsummaryrefslogtreecommitdiffstats
path: root/test/csit/tests/vfc/gvnfm-vnflcm/test.robot
diff options
context:
space:
mode:
Diffstat (limited to 'test/csit/tests/vfc/gvnfm-vnflcm/test.robot')
-rw-r--r--test/csit/tests/vfc/gvnfm-vnflcm/test.robot13
1 files changed, 10 insertions, 3 deletions
diff --git a/test/csit/tests/vfc/gvnfm-vnflcm/test.robot b/test/csit/tests/vfc/gvnfm-vnflcm/test.robot
index 817be51bd..47ff25f53 100644
--- a/test/csit/tests/vfc/gvnfm-vnflcm/test.robot
+++ b/test/csit/tests/vfc/gvnfm-vnflcm/test.robot
@@ -9,6 +9,13 @@ Library json
${queryswagger_url} /api/vnflcm/v1/swagger.json
*** Test Cases ***
-NslcmSwaggerTest
- [Documentation] query nslcm swagger info rest test
- Should Be Equal 2.0 2.0
+VnflcmSwaggerTest
+ [Documentation] query swagger info vnflcm
+ ${headers} Create Dictionary Content-Type=application/json Accept=application/json
+ Create Session web_session http://${VNFLCM_IP}:8801 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