aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorfujinhua <fu.jinhua@zte.com.cn>2019-04-04 16:24:48 +0800
committerfujinhua <fu.jinhua@zte.com.cn>2019-04-04 16:24:48 +0800
commite23e0472ef7d0766bab1e5d3e7b856f50ccc9f17 (patch)
tree86c9018299a5c5c24b76ac12852cad653f9b286e /tests
parentfafc92246143082b662e9dc401d9116076425f82 (diff)
Add csit case for catalog
Change-Id: I4ad523ddc577c5a8c1968f02962588c82c93b18f Issue-ID: VFC-1306 Signed-off-by: fujinhua <fu.jinhua@zte.com.cn>
Diffstat (limited to 'tests')
-rw-r--r--tests/vfc/nfvo-catalog/test.robot12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/vfc/nfvo-catalog/test.robot b/tests/vfc/nfvo-catalog/test.robot
index 99dff9bd..b83bee47 100644
--- a/tests/vfc/nfvo-catalog/test.robot
+++ b/tests/vfc/nfvo-catalog/test.robot
@@ -9,6 +9,7 @@ Library json
${queryswagger_url} /api/catalog/v1/swagger.json
${queryVNFPackage_url} /api/catalog/v1/vnfpackages
${queryNSPackages_url} /api/catalog/v1/nspackages
+${healthcheck_url} /api/catalog/v1/health_check
*** Test Cases ***
GetVNFPackages
@@ -17,3 +18,14 @@ GetVNFPackages
${resp}= Get Request web_session ${queryVNFPackage_url}
${responese_code}= Convert To String ${resp.status_code}
List Should Contain Value ${return_ok_list} ${responese_code}
+
+CatalogHealthCheckTest
+ [Documentation] check health for catalog by MSB
+ ${headers} Create Dictionary Content-Type=application/json Accept=application/json
+ Create Session web_session http://${CATALOG_IP}:8806 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