diff options
author | Yuli Shlosberg <ys9693@att.com> | 2017-09-20 12:00:32 +0300 |
---|---|---|
committer | Yuli Shlosberg <ys9693@att.com> | 2017-09-20 12:05:26 +0300 |
commit | 939bee0976930048c97b5e3f6e3d07597a8937ae (patch) | |
tree | 26e59761493581f674e5b98857d305caa4e2cdd1 /test/csit/tests/sdc/healthCheck | |
parent | ed5c639bb88e96adabb6c74e5bdbe2ed5a78f266 (diff) |
add csit healthchek test
Change-Id: I20c5016dc80be59e5a4b7b081e2fdd8c7983dd39
Issue-Id: SDC-357
Signed-off-by: Yuli Shlosberg <ys9693@att.com>
Diffstat (limited to 'test/csit/tests/sdc/healthCheck')
-rw-r--r-- | test/csit/tests/sdc/healthCheck/__init__.robot | 2 | ||||
-rw-r--r-- | test/csit/tests/sdc/healthCheck/test1.robot | 16 |
2 files changed, 18 insertions, 0 deletions
diff --git a/test/csit/tests/sdc/healthCheck/__init__.robot b/test/csit/tests/sdc/healthCheck/__init__.robot new file mode 100644 index 000000000..8ee10d5f6 --- /dev/null +++ b/test/csit/tests/sdc/healthCheck/__init__.robot @@ -0,0 +1,2 @@ +*** Settings *** +Documentation Sdc - HealthCheck diff --git a/test/csit/tests/sdc/healthCheck/test1.robot b/test/csit/tests/sdc/healthCheck/test1.robot new file mode 100644 index 000000000..6d4dc242d --- /dev/null +++ b/test/csit/tests/sdc/healthCheck/test1.robot @@ -0,0 +1,16 @@ +*** Settings *** +Library Collections +Library OperatingSystem +Library RequestsLibrary +Library json + +*** Test Cases *** +Get Requests health check ok + [Tags] get + CreateSession sdc-be http://localhost:8080 + ${headers}= Create Dictionary Accept=application/json Content-Type=application/json + ${resp}= Get Request sdc-be /sdc2/rest/healthCheck headers=&{headers} + Should Be Equal As Strings ${resp.status_code} 200 + @{ITEMS}= Copy List ${resp.json()['componentsInfo']} + : FOR ${ELEMENT} IN @{ITEMS} + \ Log ${ELEMENT['healthCheckComponent']} ${ELEMENT['healthCheckStatus']} |