diff options
author | Gary Wu <gary.i.wu@huawei.com> | 2017-09-13 13:26:08 -0700 |
---|---|---|
committer | Gary Wu <gary.i.wu@huawei.com> | 2017-09-13 13:34:58 -0700 |
commit | efcd3fd1d38a0d544ae9a41e3937a21659ded4d7 (patch) | |
tree | 710a3af46e3ee1562a720a617d09232121a2a85a /test/csit/tests | |
parent | b2a3464bcf1016c5c8a1706146beb85ae3ef1b12 (diff) |
Add SO health check
Change-Id: I1333ff3a19050bfe113e19e2024303306d86e4cd
Issue-ID: INT-200
Signed-off-by: Gary Wu <gary.i.wu@huawei.com>
Diffstat (limited to 'test/csit/tests')
-rw-r--r-- | test/csit/tests/integration/vCPE/__init__.robot | 2 | ||||
-rw-r--r-- | test/csit/tests/integration/vCPE/test1.robot | 10 |
2 files changed, 12 insertions, 0 deletions
diff --git a/test/csit/tests/integration/vCPE/__init__.robot b/test/csit/tests/integration/vCPE/__init__.robot new file mode 100644 index 000000000..b2057b0d1 --- /dev/null +++ b/test/csit/tests/integration/vCPE/__init__.robot @@ -0,0 +1,2 @@ +*** Settings *** +Documentation Integration - vCPE diff --git a/test/csit/tests/integration/vCPE/test1.robot b/test/csit/tests/integration/vCPE/test1.robot new file mode 100644 index 000000000..c9820a4f1 --- /dev/null +++ b/test/csit/tests/integration/vCPE/test1.robot @@ -0,0 +1,10 @@ +*** Settings *** +Library OperatingSystem +Library RequestsLibrary + +*** Test Cases *** +SO ServiceInstance health check + Create Session refrepo http://${SO_IP}:8080 + &{headers}= Create Dictionary Authorization=Basic SW5mcmFQb3J0YWxDbGllbnQ6cGFzc3dvcmQxJA== Content-Type=application/json Accept=application/json + ${resp}= Get Request refrepo /ecomp/mso/infra/orchestrationRequests/v2 headers=${headers} + Should Not Contain ${resp.content} null |