aboutsummaryrefslogtreecommitdiffstats
path: root/csit/tests/sdnr/healthcheck/20_healthcheckSUT.robot
diff options
context:
space:
mode:
Diffstat (limited to 'csit/tests/sdnr/healthcheck/20_healthcheckSUT.robot')
-rw-r--r--csit/tests/sdnr/healthcheck/20_healthcheckSUT.robot39
1 files changed, 39 insertions, 0 deletions
diff --git a/csit/tests/sdnr/healthcheck/20_healthcheckSUT.robot b/csit/tests/sdnr/healthcheck/20_healthcheckSUT.robot
new file mode 100644
index 00000000..dd3364c7
--- /dev/null
+++ b/csit/tests/sdnr/healthcheck/20_healthcheckSUT.robot
@@ -0,0 +1,39 @@
+*** Settings ***
+Documentation healthcheck of system under test: sdnc server, sdnrdb are available
+Library ConnectLibrary
+Library SDNCBaseLibrary
+Library Collections
+Library ElasticSearchLibrary
+Library ConnectApp
+Library RequestsLibrary
+
+Suite Setup global suite setup &{GLOBAL_SUITE_SETUP_CONFIG}
+Suite Teardown global suite teardown
+
+*** Variables ***
+&{headers} Content-Type=application/json Authorization=Basic
+
+*** Test Cases ***
+Test Is SDNR Node Available
+ ${server_status}= server is ready ${SDNR_PROTOCOL}${SDNR_HOST} ${SDNR_PORT}
+ should be true ${server_status}
+
+Test Is SDNRDB Available
+ ${es_version_info}= get elastic search version info as dict
+ ${length_of_response}= get length ${es_version_info}
+ should be true ${length_of_response}>${0}
+
+Test Is SDNRDB Initialized
+ ${res}= check aliases
+ Log ${res} level=INFO html=False console=False repr=False
+ Run Keyword If not ${res} Fatal Error
+
+Test Is VES Collector available
+ # curl -k -u sample1:sample1 https://172.40.0.1:8443
+ ${auth}= Create List ${VESCOLLECTOR}[USERNAME] ${VESCOLLECTOR}[PASSWORD]
+ RequestsLibrary.Create Session alias=ves url=${VESCOLLECTOR}[SCHEME]://${VESCOLLECTOR}[IP]:${VESCOLLECTOR}[PORT] headers=${headers} auth=${auth}
+ ${resp}= RequestsLibrary.GET On Session ves /
+ Should Be Equal As Strings ${resp.text} Welcome to VESCollector
+ Should Be Equal As Strings ${resp.status_code} 200
+ RequestsLibrary.Delete All Sessions
+