aboutsummaryrefslogtreecommitdiffstats
path: root/test/csit/tests
diff options
context:
space:
mode:
authorfujinhua <fu.jinhua@zte.com.cn>2017-09-04 19:12:01 +0800
committerfujinhua <fu.jinhua@zte.com.cn>2017-09-04 19:12:01 +0800
commit79b58a988f14ad51fc7bef044e030f5c77880f6d (patch)
tree1c499fb8ff1f7cb1c1e955c4f14d56c2bf1e18d1 /test/csit/tests
parent603b27eec9586eabb2e2d765243a3be0bf15c14c (diff)
Add vfc-nfvo-lcm csit scripts
Change-Id: Id284812087de995453036f1b5aed364f493afebe Issue-Id: INT-133 Signed-off-by: fujinhua <fu.jinhua@zte.com.cn>
Diffstat (limited to 'test/csit/tests')
-rw-r--r--test/csit/tests/vfc/nfvo-lcm/test.robot21
1 files changed, 21 insertions, 0 deletions
diff --git a/test/csit/tests/vfc/nfvo-lcm/test.robot b/test/csit/tests/vfc/nfvo-lcm/test.robot
new file mode 100644
index 000000000..2ace7b484
--- /dev/null
+++ b/test/csit/tests/vfc/nfvo-lcm/test.robot
@@ -0,0 +1,21 @@
+*** settings ***
+Library Collections
+Library RequestsLibrary
+Library OperatingSystem
+Library json
+
+*** Variables ***
+@{return_ok_list}= 200 201 202
+${queryswagger_url} /api/nslcm/v1/swagger.json
+
+*** Test Cases ***
+NslcmSwaggerTest
+ [Documentation] query nslcm swagger info rest test
+ ${headers} Create Dictionary Content-Type=application/json Accept=application/json
+ Create Session web_session http://${MSB_IP} headers=${headers}
+ ${resp}= Get Request web_session ${queryswagger_url}
+ ${responese_code}= Convert To String ${resp.status_code}
+ List Should Contain Value ${return_ok_list} ${responese_code}
+ ${response_json} json.loads ${resp.content}
+ ${swagger_version}= Convert To String ${response_json['swagger']}
+ Should Be Equal ${swagger_version} 2.0