From ba33cc4b7aae30bc4a3019b45a1a81c7aef256d1 Mon Sep 17 00:00:00 2001 From: fujinhua Date: Thu, 4 Apr 2019 09:01:32 +0800 Subject: Add csit cases for vnflcm Change-Id: I0eac6c41ea060a019ad79cc755ea121da20ca6ed Issue-ID: INT-1015 Signed-off-by: fujinhua --- tests/vfc/gvnfm-vnflcm/test.robot | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'tests') 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 -- cgit 1.2.3-korg