summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Debeau <eric.debeau@orange.com>2018-04-24 17:22:41 +0000
committerEric Debeau <eric.debeau@orange.com>2018-04-24 18:01:22 +0000
commit9045a1ef6640ccbf752e526d2a132307aa5f1a9c (patch)
treee2117cc5433cf6174f51ab042e9800999d280438
parent398dd4033740efa3878687c979d0998277c13391 (diff)
Create OOF Robot Health Check
Add tag Change-Id: I285f58ca2c99102bf67efe45b37214677ba9d861 Issue-ID: OPTFRA-219 Signed-off-by: Eric Debeau <eric.debeau@orange.com>
-rw-r--r--robot/resources/oof_interface.robot25
-rw-r--r--robot/testsuites/health-check.robot5
2 files changed, 30 insertions, 0 deletions
diff --git a/robot/resources/oof_interface.robot b/robot/resources/oof_interface.robot
new file mode 100644
index 00000000..7a061ecd
--- /dev/null
+++ b/robot/resources/oof_interface.robot
@@ -0,0 +1,25 @@
+*** Settings ***
+Documentation The main interface for interacting with OOF
+Library RequestsLibrary
+
+Resource global_properties.robot
+
+*** Variables ***
+${OOF_HEALTH_CHECK_PATH} /api/oof/v1/healthcheck
+${OOF_ENDPOINT} ${GLOBAL_OOF_SERVER_PROTOCOL}://${GLOBAL_INJECTED_OOF_IP_ADDR}:${GLOBAL_OOF_SERVER_PORT}
+
+
+*** Keywords ***
+Run OOF Health Check
+ [Documentation] Runs OOF Health check
+ ${resp}= Run OOF Get Request ${OOF_HEALTH_CHECK_PATH}
+ Should Be Equal As Integers ${resp.status_code} 200
+
+Run OOF Get Request
+ [Documentation] Runs OOF Get request
+ [Arguments] ${data_path}
+ ${session}= Create Session session ${OOF_ENDPOINT}
+ ${resp}= Get Request session ${data_path}
+ Should Be Equal As Integers ${resp.status_code} 200
+ Log Received response from OOF ${resp.text}
+ [Return] ${resp}
diff --git a/robot/testsuites/health-check.robot b/robot/testsuites/health-check.robot
index e2b647ca..6f9c984f 100644
--- a/robot/testsuites/health-check.robot
+++ b/robot/testsuites/health-check.robot
@@ -23,6 +23,7 @@ Resource ../resources/nbi_interface.robot
Resource ../resources/cli_interface.robot
Resource ../resources/vnfsdk_interface.robot
Resource ../resources/log_interface.robot
+Resource ../resources/oof_interface.robot
*** Test Cases ***
@@ -86,6 +87,10 @@ Basic Multicloud-vio API Health Check
[Tags] health multicloud
Run MSB Get Request /api/multicloud-vio/v0/swagger.json
+Basic OOF Health Check
+ [Tags] health core
+ Run OOF Health Check
+
Basic Policy Health Check
[Tags] health core
Run Policy Health Check