diff options
author | marekpl <marek.pondel@nokia.com> | 2019-05-14 14:15:53 +0200 |
---|---|---|
committer | marekpl <marek.pondel@nokia.com> | 2019-05-14 14:18:18 +0200 |
commit | e4549fdc1cd504fd483b4266f3f638655e0cf9a7 (patch) | |
tree | 0d9b76abf21f7138145ec11d539c6e1b4ad730cc /robot/resources/test_templates | |
parent | 064c0b9595ec7ec2208e183216759a37265e79ce (diff) |
dublin hvves testsuite fix
dublin hvves testsuite fix
Change-Id: I9460868f72e62e51469b34a1cdcdfaed5ff65a65
Issue-ID: DCAEGEN2-1448
Signed-off-by: marekpl <marek.pondel@nokia.com>
Diffstat (limited to 'robot/resources/test_templates')
-rw-r--r-- | robot/resources/test_templates/hvves_template.robot | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/robot/resources/test_templates/hvves_template.robot b/robot/resources/test_templates/hvves_template.robot index 50c71d19..622cacb0 100644 --- a/robot/resources/test_templates/hvves_template.robot +++ b/robot/resources/test_templates/hvves_template.robot @@ -2,7 +2,6 @@ Documentation Template contains stuff for HV-VES use case. Library OperatingSystem Library Rammbock -Library KafkaLibrary Library BuiltIn Library Collections Library HttpLibrary.HTTP @@ -14,13 +13,16 @@ ${security_protocol} SASL_PLAINTEXT ${sasl_mechanisms} PLAIN *** Keywords *** -Check Message Via Message Router Api +Check Message Router Api [Documentation] Checks message via message router API. - [Arguments] ${message_router} ${message_router_port} ${topic} ${state} - ${response}= GET http://${message_router}:${message_router_port}/events/${topic}/1/1 - ${body}= Get Response Body - Run Keyword If '${state}'=='before' Should Be Equal ${body} [] - Run Keyword If '${state}'=='after' Should Not Be Equal ${body} [] + [Arguments] ${message_router} ${message_router_port} ${topic} + ${status} ${response}= Run Keyword And Ignore Error GET http://${message_router}:${message_router_port}/events/${topic}/1/1 + ${response_code}= Get Response Status + ${response_body}= Get Response Body + Run Keyword If '${status}'=='FAIL' Should Start With ${response_code} 404 + Run Keyword If '${status}'=='FAIL' Log Topic ${topic} does not exist. + Run Keyword If '${status}'=='PASS' Should Start With ${response_code} 200 + Run Keyword If '${status}'=='PASS' Log Topic ${topic} exists. Check If Topic Exists [Documentation] Checks if specific topic exists on kafka. |