aboutsummaryrefslogtreecommitdiffstats
path: root/tests/modeling-etsicatalog
diff options
context:
space:
mode:
authordyh <dengyuanhong@chinamobile.com>2019-09-10 15:42:45 +0800
committerdyh <dengyuanhong@chinamobile.com>2019-09-12 11:25:14 +0800
commit04c1c7302c28b0c2201e8fdfb2b1140091df344f (patch)
tree456be99c8284c48183b9527c0f5a78e01027f8df /tests/modeling-etsicatalog
parent9d5fb225cbc57680ca80b54e5f2501f55b4acb46 (diff)
update csit test for modeling/etsicatalog project
Change-Id: If69c17fb0e7664ae6f24af284833daa46ed32b82 Issue-ID: MODELING-220 Signed-off-by: dyh <dengyuanhong@chinamobile.com>
Diffstat (limited to 'tests/modeling-etsicatalog')
-rw-r--r--tests/modeling-etsicatalog/test.robot31
1 files changed, 31 insertions, 0 deletions
diff --git a/tests/modeling-etsicatalog/test.robot b/tests/modeling-etsicatalog/test.robot
new file mode 100644
index 00000000..26277404
--- /dev/null
+++ b/tests/modeling-etsicatalog/test.robot
@@ -0,0 +1,31 @@
+*** settings ***
+Library Collections
+Library RequestsLibrary
+Library OperatingSystem
+Library json
+
+*** Variables ***
+@{return_ok_list}= 200 201 202
+${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
+ ${headers} Create Dictionary Content-Type=application/json Accept=application/json
+ Create Session web_session http://${EtsiCatalog_IP}:8806 headers=${headers}
+ ${resp}= Get Request web_session ${queryVNFPackage_url}
+ ${responese_code}= Convert To String ${resp.status_code}
+ List Should Contain Value ${return_ok_list} ${responese_code}
+
+HealthCheckTest
+ [Documentation] check health for catalog by MSB
+ ${headers} Create Dictionary Content-Type=application/json Accept=application/json
+ Create Session web_session http://${EtsiCatalog_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