aboutsummaryrefslogtreecommitdiffstats
path: root/tests/vfc
diff options
context:
space:
mode:
authorfujinhua <fu.jinhua@zte.com.cn>2019-04-04 09:01:32 +0800
committerfujinhua <fu.jinhua@zte.com.cn>2019-04-04 11:05:38 +0800
commitba33cc4b7aae30bc4a3019b45a1a81c7aef256d1 (patch)
tree774ebdec32570c4b986a5f6fb8a8c35bbadda606 /tests/vfc
parent4014d3737c08862eb3054f42c05cb994c30837ed (diff)
Add csit cases for vnflcm
Change-Id: I0eac6c41ea060a019ad79cc755ea121da20ca6ed Issue-ID: INT-1015 Signed-off-by: fujinhua <fu.jinhua@zte.com.cn>
Diffstat (limited to 'tests/vfc')
-rw-r--r--tests/vfc/gvnfm-vnflcm/test.robot12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/vfc/gvnfm-vnflcm/test.robot b/tests/vfc/gvnfm-vnflcm/test.robot
index cf3d12bc..97463ac1 100644
--- a/tests/vfc/gvnfm-vnflcm/test.robot
+++ b/tests/vfc/gvnfm-vnflcm/test.robot
@@ -11,6 +11,7 @@ Library HttpLibrary.HTTP
${queryswagger_url} /api/vnflcm/v1/swagger.json
${create_vnf_url} /api/vnflcm/v1/vnf_instances
${delete_vnf_url} /api/vnflcm/v1/vnf_instances
+${healthcheck_url} /api/vnflcm/v1/health_check
#json files
${create_vnf_json} ${SCRIPTS}/../tests/vfc/gvnfm-vnflcm/jsoninput/create_vnf.json
@@ -29,3 +30,14 @@ VnflcmSwaggerTest
${response_json} json.loads ${resp.content}
${swagger_version}= Convert To String ${response_json['swagger']}
Should Be Equal ${swagger_version} 2.0
+
+VnflcmHealthCheckTest
+ [Documentation] check health for vnflcm by MSB
+ ${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 ${healthcheck_url}
+ ${responese_code}= Convert To String ${resp.status_code}
+ List Should Contain Value ${return_ok_list} ${responese_code}
+ ${response_json} json.loads ${resp.content}
+ ${health_status}= Convert To String ${response_json['status']}
+ Should Be Equal ${health_status} active