aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormprzybys <marcin.przybysz@nokia.com>2020-11-02 13:17:14 +0100
committerMorgan Richomme <morgan.richomme@orange.com>2020-11-02 15:47:11 +0000
commitd503dc080b2122e17c296db5e6f50cb5db25bb91 (patch)
treecf49a9f6b77343813494a065f56d90077e076d51
parentf6fd92c05c476f617badd7120bdb48cb5c4ab014 (diff)
Adapt suite setup to wait until topic is created
Issue-ID: INT-1258 Signed-off-by: Marcin Przybysz <marcin.przybysz@nokia.com> Change-Id: If59f8fb359ad8683d9d3548816afbc11b068f850
-rw-r--r--robot/resources/dcae/ves_interface.robot24
1 files changed, 17 insertions, 7 deletions
diff --git a/robot/resources/dcae/ves_interface.robot b/robot/resources/dcae/ves_interface.robot
index f92526b8..433d9a5f 100644
--- a/robot/resources/dcae/ves_interface.robot
+++ b/robot/resources/dcae/ves_interface.robot
@@ -15,6 +15,16 @@ ${FaultSupervision_json} ${EXECDIR}/robot/assets/dcae
${Heartbeat_json} ${EXECDIR}/robot/assets/dcae/ves_stdnDefined_3GPP-Heartbeat.json
${PerformanceAssurance_json} ${EXECDIR}/robot/assets/dcae/ves_stdnDefined_3GPP-PerformanceAssurance.json
${Provisioning_json} ${EXECDIR}/robot/assets/dcae/ves_stdnDefined_3GPP-Provisioning.json
+${MR_TOPIC_CHECK_PATH} /topics
+${DR_SUB_CHECK_PATH} /internal/prov
+${MR_TOPIC_URL_PATH} /events/unauthenticated.SEC_FAULT_OUTPUT/CG1/C1
+${MR_FAULTSUPERVISION_TOPIC_URL_PATH} /events/unauthenticated.SEC_3GPP_FAULTSUPERVISION_OUTPUT/CG1/C1
+${MR_HEARTBEAT_TOPIC_URL_PATH} /events/unauthenticated.SEC_3GPP_HEARTBEAT_OUTPUT/CG1/C1
+${MR_PERFORMANCEASSURANCE_TOPIC_URL_PATH} /events/unauthenticated.SEC_3GPP_PERFORMANCEASSURANCE_OUTPUT/CG1/C1
+${MR_PROVISIONING_TOPIC_URL_PATH} /events/unauthenticated.SEC_3GPP_PROVISIONING_OUTPUT/CG1/C1
+${DMAAP_BC_MR_CLIENT_PATH} /webapi/mr_clients
+${DMAAP_BC_MR_CLUSTER_PATH} /webapi/mr_clusters
+${VES_LISTENER_PATH} /eventListener/v7
*** Keywords ***
@@ -43,13 +53,13 @@ Send Event to VES & Validate Topic
[Documentation] Keyword is a test template which alows to send event through VES Collector and check if ivent is routed to proper DMAAP topic
[Arguments] ${event} ${topic_name} ${expected_text}
Send Event to VES Collector ${event}
- Wait Until Keyword Succeeds 10x 5s Topic Validate ${topic_name} ${expected_text}
+ Wait Until Keyword Succeeds 10x 1s Topic Validate ${topic_name} ${expected_text}
Activate DMAAP Topics
[Documentation] Currently first event routed to empty DMAAP topic is gone, so there is need to "activate" topics for testing pourposes
- Send Event to VES Collector ${ves7_valid_json}
- Send Event to VES Collector ${FaultSupervision_json}
- Send Event to VES Collector ${Heartbeat_json}
- Send Event to VES Collector ${PerformanceAssurance_json}
- Send Event to VES Collector ${Provisioning_json}
- Sleep 30s
+ Wait Until Keyword Succeeds 10x 5s Send Event to VES & Validate Topic ${ves7_valid_json} ${MR_TOPIC_URL_PATH} Fault_Vscf:Acs-Ericcson_PilotNumberPoolExhaustion
+ Wait Until Keyword Succeeds 10x 5s Send Event to VES & Validate Topic ${FaultSupervision_json} ${MR_FAULTSUPERVISION_TOPIC_URL_PATH} ves_stdnDefined_3GPP-FaultSupervision
+ Wait Until Keyword Succeeds 10x 5s Send Event to VES & Validate Topic ${Heartbeat_json} ${MR_HEARTBEAT_TOPIC_URL_PATH} ves_stdnDefined_3GPP-Heartbeat
+ Wait Until Keyword Succeeds 10x 5s Send Event to VES & Validate Topic ${PerformanceAssurance_json} ${MR_PERFORMANCEASSURANCE_TOPIC_URL_PATH} ves_stdnDefined_3GPP-PerformanceAssurance
+ Wait Until Keyword Succeeds 10x 5s Send Event to VES & Validate Topic ${Provisioning_json} ${MR_PROVISIONING_TOPIC_URL_PATH} ves_stdnDefined_3GPP-Provisioning
+ Sleep 10s