aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJack Lucas <jflos@sonoris.net>2023-08-23 11:11:35 -0400
committerJack Lucas <jflos@sonoris.net>2023-08-23 11:17:14 -0400
commitd44c5a5f6d3ce97913a5fb95a8bce61f1707a6a8 (patch)
tree7737a3511403c9b5b7b749b46ffa9ee21f1c585b
parent22300196c3c0f1a036ffedae9061c36fc164ee0f (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>
-rw-r--r--robot/resources/dmaap/bc_interface.robot35
-rw-r--r--robot/testsuites/health-check.robot5
-rw-r--r--version.properties2
3 files changed, 1 insertions, 41 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
diff --git a/robot/testsuites/health-check.robot b/robot/testsuites/health-check.robot
index 353cb6e4..16d4640c 100644
--- a/robot/testsuites/health-check.robot
+++ b/robot/testsuites/health-check.robot
@@ -11,7 +11,6 @@ Resource ../resources/policy_interface.robot
Resource ../resources/sdc_interface.robot
Resource ../resources/portal_interface.robot
Resource ../resources/dmaap/mr_interface.robot
-Resource ../resources/dmaap/bc_interface.robot
Resource ../resources/aaf_interface.robot
Resource ../resources/msb_interface.robot
Resource ../resources/clamp_interface.robot
@@ -78,10 +77,6 @@ Basic DMAAP Message Router PubSub Health Check
[Timeout] 30
Run MR PubSub Health Check
-Basic DMAAP Bus Controller Health Check With Basic Auth
- [Tags] health health-dmaap
- Run BC Health Check With Basic Auth
-
Basic External API NBI Health Check
[Tags] health externalapi api medium
Run NBI Health Check
diff --git a/version.properties b/version.properties
index c4bc5ac8..4dbe97d7 100644
--- a/version.properties
+++ b/version.properties
@@ -4,7 +4,7 @@
major=1
minor=12
-patch=1
+patch=2
base_version=${major}.${minor}.${patch}