diff options
author | fujinhua <fu.jinhua@zte.com.cn> | 2017-09-08 09:26:34 +0800 |
---|---|---|
committer | fujinhua <fu.jinhua@zte.com.cn> | 2017-09-08 12:56:56 +0800 |
commit | 8fea9bb6edc9c8c1d34be19138cc26daf7d19acf (patch) | |
tree | e0352ed559e64f1e4fe05cee0e0f0796ad6982ec /test/csit/tests | |
parent | 28aeabbdf601a4a359876623df33a920dee820a2 (diff) |
Fix csit setup.sh of vfc-nfvo-lcm
Fix MSB start scripts
Add -v /var/lib/mysql to docker run command
Resume NslcmSwaggerTest
Change-Id: Ifd915d07952e19652a29d04cce09a9ae0295fd14
Issue-Id: INT-184
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.robot | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/test/csit/tests/vfc/nfvo-lcm/test.robot b/test/csit/tests/vfc/nfvo-lcm/test.robot index 907558f0c..d0a5b7cd7 100644 --- a/test/csit/tests/vfc/nfvo-lcm/test.robot +++ b/test/csit/tests/vfc/nfvo-lcm/test.robot @@ -10,5 +10,12 @@ ${queryswagger_url} /api/nslcm/v1/swagger.json *** Test Cases *** NslcmSwaggerTest - [Documentation] query nslcm swagger info rest test - Should Be Equal 2.0 2.0 + [Documentation] query swagger info nslcm + ${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 ${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 |