From efcd3fd1d38a0d544ae9a41e3937a21659ded4d7 Mon Sep 17 00:00:00 2001 From: Gary Wu Date: Wed, 13 Sep 2017 13:26:08 -0700 Subject: Add SO health check Change-Id: I1333ff3a19050bfe113e19e2024303306d86e4cd Issue-ID: INT-200 Signed-off-by: Gary Wu --- test/csit/tests/integration/vCPE/__init__.robot | 2 ++ test/csit/tests/integration/vCPE/test1.robot | 10 ++++++++++ 2 files changed, 12 insertions(+) create mode 100644 test/csit/tests/integration/vCPE/__init__.robot create mode 100644 test/csit/tests/integration/vCPE/test1.robot (limited to 'test/csit/tests') 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 -- cgit 1.2.3-korg