Add csit cases for vnflcm 61/84161/2
authorfujinhua <fu.jinhua@zte.com.cn>
Thu, 4 Apr 2019 01:01:32 +0000 (09:01 +0800)
committerfujinhua <fu.jinhua@zte.com.cn>
Thu, 4 Apr 2019 03:05:38 +0000 (11:05 +0800)
Change-Id: I0eac6c41ea060a019ad79cc755ea121da20ca6ed
Issue-ID: INT-1015
Signed-off-by: fujinhua <fu.jinhua@zte.com.cn>
plans/vfc-gvnfm-vnflcm/sanity-check/teardown.sh
tests/vfc/gvnfm-vnflcm/test.robot

index aebb252..8d50350 100755 (executable)
 # limitations under the License.
 #
 
+# print log for vfc-vnflcm
+docker cp vfc-vnflcm:/service/vfc/gvnfm/vnflcm/lcm/logs/runtime_lcm.log ./
+cat runtime_lcm.log
+
 # This script is sourced by run-csit.sh after Robot test completion.
 kill-instance.sh msb_internal_apigateway
 kill-instance.sh msb_discovery
index cf3d12b..97463ac 100644 (file)
@@ -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