aboutsummaryrefslogtreecommitdiffstats
path: root/tests/vfc
diff options
context:
space:
mode:
authorfujinhua <fu.jinhua@zte.com.cn>2019-04-04 12:10:57 +0800
committerfujinhua <fu.jinhua@zte.com.cn>2019-04-04 12:10:57 +0800
commit8ba19f301c61074ebfa34022a60cc5a3d0b2294b (patch)
tree86477aa7fff8342f4784aad2acf68357d5ce60c5 /tests/vfc
parentba33cc4b7aae30bc4a3019b45a1a81c7aef256d1 (diff)
Add csit for vnfres
Change-Id: I8ebae183ac6baa3a4c4d05ea9b1c67bd5c011eb3 Issue-ID: VFC-1306 Signed-off-by: fujinhua <fu.jinhua@zte.com.cn>
Diffstat (limited to 'tests/vfc')
-rw-r--r--tests/vfc/gvnfm-vnfres/test.robot12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/vfc/gvnfm-vnfres/test.robot b/tests/vfc/gvnfm-vnfres/test.robot
index fb87435b..6498de11 100644
--- a/tests/vfc/gvnfm-vnfres/test.robot
+++ b/tests/vfc/gvnfm-vnfres/test.robot
@@ -7,6 +7,7 @@ Library json
*** Variables ***
@{return_ok_list}= 200 201 202
${queryswagger_url} /api/vnfres/v1/swagger.json
+${healthcheck_url} /api/vnfres/v1/health_check
*** Test Cases ***
VnfresSwaggerTest
@@ -19,3 +20,14 @@ VnfresSwaggerTest
${response_json} json.loads ${resp.content}
${swagger_version}= Convert To String ${response_json['swagger']}
Should Be Equal ${swagger_version} 2.0
+
+VnfResHealthCheckTest
+ [Documentation] check health for vnfres by MSB
+ ${headers} Create Dictionary Content-Type=application/json Accept=application/json
+ Create Session web_session http://${VNFRES_IP}:8802 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