aboutsummaryrefslogtreecommitdiffstats
path: root/tests/so/sanity-check/macroflow.robot
diff options
context:
space:
mode:
Diffstat (limited to 'tests/so/sanity-check/macroflow.robot')
-rw-r--r--tests/so/sanity-check/macroflow.robot15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/so/sanity-check/macroflow.robot b/tests/so/sanity-check/macroflow.robot
new file mode 100644
index 00000000..149797a1
--- /dev/null
+++ b/tests/so/sanity-check/macroflow.robot
@@ -0,0 +1,15 @@
+*** Settings ***
+Library Collections
+Library RequestsLibrary
+Library OperatingSystem
+Library json
+
+*** Test Cases ***
+Healthcheck
+ [Documentation] Runs AAI SIMULATOR Health check
+ Create Session aai_simulator_session https://${REPO_IP}:9993
+ &{headers}= Create Dictionary Accept=text/plain
+ ${resp}= Get Request aai_simulator_session /aai/v19/healthcheck headers=${headers}
+ log to console Received response from AAI SIMULATOR ${resp.text}
+ Should Be Equal As Strings '${resp.status_code}' '200'
+ Should Be Equal As Strings '${resp.text}' 'healthy'