diff options
author | Yuli Shlosberg <ys9693@att.com> | 2018-04-10 10:30:39 +0300 |
---|---|---|
committer | Yuli Shlosberg <ys9693@att.com> | 2018-04-10 10:57:09 +0300 |
commit | c53afab603870754b4b08f09b54f3c23d3a279fa (patch) | |
tree | 09abb199139c8289230a10d105ecdbe51b518003 /test/csit/tests/sdc | |
parent | f5b6edf04f07ff98c41a0d25e5639e8844d9377c (diff) |
Add new uiSanity test
Change-Id: I51e4ed17c6f31c012f9f960bd75a0518d966c7a2
Issue-ID: SDC-384
Signed-off-by: Yuli Shlosberg <ys9693@att.com>
Diffstat (limited to 'test/csit/tests/sdc')
-rw-r--r-- | test/csit/tests/sdc/uiSanity/__init__.robot | 2 | ||||
-rw-r--r-- | test/csit/tests/sdc/uiSanity/test1.robot | 16 |
2 files changed, 18 insertions, 0 deletions
diff --git a/test/csit/tests/sdc/uiSanity/__init__.robot b/test/csit/tests/sdc/uiSanity/__init__.robot new file mode 100644 index 000000000..8ee10d5f6 --- /dev/null +++ b/test/csit/tests/sdc/uiSanity/__init__.robot @@ -0,0 +1,2 @@ +*** Settings *** +Documentation Sdc - HealthCheck diff --git a/test/csit/tests/sdc/uiSanity/test1.robot b/test/csit/tests/sdc/uiSanity/test1.robot new file mode 100644 index 000000000..3783e159e --- /dev/null +++ b/test/csit/tests/sdc/uiSanity/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} 500 + @{ITEMS}= Copy List ${resp.json()['componentsInfo']} + : FOR ${ELEMENT} IN @{ITEMS} + \ Log ${ELEMENT['healthCheckComponent']} ${ELEMENT['healthCheckStatus']} |