diff options
-rw-r--r-- | robot/resources/dmaap/bc_interface.robot | 35 | ||||
-rw-r--r-- | robot/testsuites/health-check.robot | 5 | ||||
-rw-r--r-- | version.properties | 2 |
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} |