diff options
author | liangke <lokyse@163.com> | 2018-03-29 17:55:04 +0800 |
---|---|---|
committer | liangke <lokyse@163.com> | 2018-03-29 17:55:21 +0800 |
commit | a2e5a7009b13e915f47d10186956fdde24c66957 (patch) | |
tree | ae7d5da7876dbe02d1bfd94f83676acd1021bde5 /test | |
parent | 67cdbd58a746c94122764c96ac2e68b7b3a69d67 (diff) |
Add csit for vio-logging
Change-Id: Icab8a071b94e29a437ab85340f6329f2085cdac9
Issue-ID: MULTICLOUD-152
Signed-off-by: liangke <lokyse@163.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/csit/plans/multicloud-vmware/functionality1/testplan.txt | 1 | ||||
-rw-r--r-- | test/csit/tests/multicloud-vmware/samples/sanity-sample.robot | 25 |
2 files changed, 26 insertions, 0 deletions
diff --git a/test/csit/plans/multicloud-vmware/functionality1/testplan.txt b/test/csit/plans/multicloud-vmware/functionality1/testplan.txt index 2f5ad1b6f..a6179d925 100644 --- a/test/csit/plans/multicloud-vmware/functionality1/testplan.txt +++ b/test/csit/plans/multicloud-vmware/functionality1/testplan.txt @@ -7,3 +7,4 @@ multicloud-vmware/provision/sanity_test_neutron.robot multicloud-vmware/nova/sanity-flavor.robot multicloud-vmware/nova/sanity-host.robot multicloud-vmware/nova/sanity-server.robot +multicloud-vmware/samples/sanity-sample.robot diff --git a/test/csit/tests/multicloud-vmware/samples/sanity-sample.robot b/test/csit/tests/multicloud-vmware/samples/sanity-sample.robot new file mode 100644 index 000000000..fcb784b27 --- /dev/null +++ b/test/csit/tests/multicloud-vmware/samples/sanity-sample.robot @@ -0,0 +1,25 @@ +*** settings *** +Library Collections +Library RequestsLibrary +Library OperatingSystem +Library json + +*** Variables *** +@{return_ok_list}= 200 201 202 +${querysample_vio_url} /samples + +*** Test Cases *** +VioSwaggerTest + [Documentation] query swagger info rest test + ${headers} Create Dictionary Content-Type=application/json X-TRANSACTIONID=123456 Accept=application/json + Create Session web_session http://${VIO_IP}:9004 headers=${headers} + ${resp}= Get Request web_session ${querysample_vio_url} + ${responese_code}= Convert To String ${resp.status_code} + List Should Contain Value ${return_ok_list} ${responese_code} + # verify logging output + ${response_json} json.loads ${resp.content} + ${logs}= Convert To String ${response_json['logs']} + Log To Console ${logs} + Should Contain ${logs} 123456 + Should Contain ${logs} multicloud-vio + Should Contain ${logs} vio.samples.views
\ No newline at end of file |