diff options
author | fujinhua <fu.jinhua@zte.com.cn> | 2019-04-05 08:20:53 +0800 |
---|---|---|
committer | fujinhua <fu.jinhua@zte.com.cn> | 2019-04-05 08:21:38 +0800 |
commit | 7aa8cd32c8458cd9a148ca8dad4c26635cab6d8b (patch) | |
tree | 1a98e1291a0b7b37bddd41571ca838e4393fe3e4 /tests/vfc | |
parent | f291cfb4980b54cac2cbab9db4fb171317ba84fd (diff) |
add csit case for nslcm
Change-Id: Iae948c1535e7f9b0cb265cd1e0d973e30168bd5b
Issue-ID: INT-1015
Signed-off-by: fujinhua <fu.jinhua@zte.com.cn>
Diffstat (limited to 'tests/vfc')
-rw-r--r-- | tests/vfc/nfvo-lcm/test.robot | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/tests/vfc/nfvo-lcm/test.robot b/tests/vfc/nfvo-lcm/test.robot index 44d23292..6711cf69 100644 --- a/tests/vfc/nfvo-lcm/test.robot +++ b/tests/vfc/nfvo-lcm/test.robot @@ -9,8 +9,9 @@ Library HttpLibrary.HTTP *** Variables *** @{return_ok_list}= 200 201 202 204 ${queryswagger_url} /api/nslcm/v1/swagger.json -${create_ns_url} /api/nslcm/v1/ns -${delete_ns_url} /api/nslcm/v1/ns +${create_ns_url} /api/nslcm/v1/ns +${delete_ns_url} /api/nslcm/v1/ns +${healthcheck_url} /api/nslcm/v1/health_check #json files ${create_ns_json} ${SCRIPTS}/../tests/vfc/nfvo-lcm/jsoninput/create_ns.json @@ -62,3 +63,14 @@ DeleteNS Test ${resp}= Delete Request web_session ${delete_ns_url}/${nsInstId} ${responese_code}= Convert To String ${resp.status_code} List Should Contain Value ${return_ok_list} ${responese_code} + +LcmHealthCheckTest + [Documentation] check health for nslcm by MSB + ${headers} Create Dictionary Content-Type=application/json Accept=application/json + Create Session web_session http://${MSB_IAG_IP}:80 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 |