aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfujinhua <fu.jinhua@zte.com.cn>2019-04-18 19:29:04 +0800
committerfujinhua <fu.jinhua@zte.com.cn>2019-04-18 19:29:04 +0800
commit898e2cb62a58a6c8fe851bb6c41e9ae61ac9ace0 (patch)
treeb3ca55774e6bd0ddede96d5a9c481bb29d0068d9
parentb66da2b3b8519866973badc4e19f1ae717e77d1f (diff)
Add csit case for nslcm
Change-Id: Ia9bd66419d0e8cf9e54894e5bc9fea40ab07d4aa Issue-ID: INT-1015 Signed-off-by: fujinhua <fu.jinhua@zte.com.cn>
-rw-r--r--tests/vfc/nfvo-lcm/test.robot9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/vfc/nfvo-lcm/test.robot b/tests/vfc/nfvo-lcm/test.robot
index 6711cf69..833e24bb 100644
--- a/tests/vfc/nfvo-lcm/test.robot
+++ b/tests/vfc/nfvo-lcm/test.robot
@@ -11,6 +11,7 @@ Library HttpLibrary.HTTP
${queryswagger_url} /api/nslcm/v1/swagger.json
${create_ns_url} /api/nslcm/v1/ns
${delete_ns_url} /api/nslcm/v1/ns
+${get_ns_url} /api/nslcm/v1/ns
${healthcheck_url} /api/nslcm/v1/health_check
#json files
@@ -74,3 +75,11 @@ LcmHealthCheckTest
${response_json} json.loads ${resp.content}
${health_status}= Convert To String ${response_json['status']}
Should Be Equal ${health_status} active
+
+LcmGetNsTest
+ [Documentation] get ns instances 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 ${get_ns_url}
+ ${responese_code}= Convert To String ${resp.status_code}
+ List Should Contain Value ${return_ok_list} ${responese_code}