blob: da6cb3efa64a6349e0c207820b73a4ea569a5989 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
*** Settings ***
Library Collections
Library requests
*** Test Cases ***
Messag Broker Test
[Documentation] Check if the message broker enpoint can be get from MSB
${result} = get http://${MSB_DISCOVERY_IP}:10081/api/microservices/v1/services/ActiveMQ/version/null
Should Be Equal ${result.status_code} ${200}
${json} = Set Variable ${result.json()}
${serviceName} = Get From Dictionary ${json} serviceName
${protocol} = Get From Dictionary ${json} protocol
Should Be Equal ${serviceName} ActiveMQ
Should Be Equal ${protocol} TCP
|