diff options
author | Jack Lucas <jflos@sonoris.net> | 2023-08-23 11:11:35 -0400 |
---|---|---|
committer | Jack Lucas <jflos@sonoris.net> | 2023-08-23 11:17:14 -0400 |
commit | d44c5a5f6d3ce97913a5fb95a8bce61f1707a6a8 (patch) | |
tree | 7737a3511403c9b5b7b749b46ffa9ee21f1c585b /robot/resources | |
parent | 22300196c3c0f1a036ffedae9061c36fc164ee0f (diff) |
Eliminate DMaaP bus controller health check1.12.2
The DMaaP bus controller is no longer needed and
no longer being deployed as part of ONAP. The
corresponding health check has been removed.
Issue-ID: OOM-3238
Change-Id: Ib4790c68d4066c3666ccf60ecdaa58afbef4b3ad
Signed-off-by: Jack Lucas <jflos@sonoris.net>
Diffstat (limited to 'robot/resources')
-rw-r--r-- | robot/resources/dmaap/bc_interface.robot | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/robot/resources/dmaap/bc_interface.robot b/robot/resources/dmaap/bc_interface.robot deleted file mode 100644 index 11b2c378..00000000 --- a/robot/resources/dmaap/bc_interface.robot +++ /dev/null @@ -1,35 +0,0 @@ -*** Settings *** -Documentation The main interface for interacting with Bus Controller. -Library RequestsLibrary - -Resource ../global_properties.robot - -*** Variables *** -${BC_HEALTH_CHECK_PATH} /webapi/dmaap -${DMAAP_BC_ENDPOINT} ${GLOBAL_BC_SERVER_PROTOCOL}://${GLOBAL_INJECTED_BC_IP_ADDR}:${GLOBAL_BC_HTTPS_SERVER_PORT} - - -*** Keywords *** -Run BC Health Check With Basic Auth - [Documentation] Runs dmaap details check - ${resp}= Return dmaap details with basic auth ${BC_HEALTH_CHECK_PATH} - Should Be Equal As Strings ${resp.status_code} 200 - - -Return dmaap details with basic auth - [Documentation] Runs Bus Controller get details request with basic authentication - [Arguments] ${data_path} - ${auth}= Create List ${GLOBAL_BC_USERNAME} ${GLOBAL_BC_PASSWORD} - ${session}= Create Session bs ${DMAAP_BC_ENDPOINT} auth=${auth} - ${resp}= Get Request bs ${data_path} - Log Received response from bus controller ${resp.text} - [Return] ${resp} - -Delete MR topic - [Documentation] Runs Bus Controller to remove topic - [Arguments] ${data_path} - ${auth}= Create List ${GLOBAL_BC_USERNAME} ${GLOBAL_BC_PASSWORD} - ${session}= Create Session bs ${DMAAP_BC_ENDPOINT} auth=${auth} - ${resp}= Delete Request bs ${data_path} - Log Received response from bus controller ${resp.status_code} - [Return] ${resp}
\ No newline at end of file |