From 9045a1ef6640ccbf752e526d2a132307aa5f1a9c Mon Sep 17 00:00:00 2001 From: Eric Debeau Date: Tue, 24 Apr 2018 17:22:41 +0000 Subject: Create OOF Robot Health Check Add tag Change-Id: I285f58ca2c99102bf67efe45b37214677ba9d861 Issue-ID: OPTFRA-219 Signed-off-by: Eric Debeau --- robot/resources/oof_interface.robot | 25 +++++++++++++++++++++++++ robot/testsuites/health-check.robot | 5 +++++ 2 files changed, 30 insertions(+) create mode 100644 robot/resources/oof_interface.robot 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 -- cgit 1.2.3-korg